service

package
v0.26.21 Latest Latest
Warning

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

Go to latest
Published: Jul 16, 2024 License: Apache-2.0 Imports: 11 Imported by: 1

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

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

Client for service API

func (*Client) DeleteService

func (a *Client) DeleteService(params *DeleteServiceParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteServiceOK, error)

DeleteService deletes a service

Delete a service by id. Requires admin access.

func (*Client) DetailService

func (a *Client) DetailService(params *DetailServiceParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DetailServiceOK, error)

DetailService retrieves a single service

Retrieves a single service by id. Requires admin access.

func (*Client) ListServiceEdgeRouters added in v0.26.1

func (a *Client) ListServiceEdgeRouters(params *ListServiceEdgeRoutersParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListServiceEdgeRoutersOK, error)

ListServiceEdgeRouters lists of edge routers permitted to handle traffic for the specified service

Retrieves the list of edge routers permitted to handle traffic for the specified service

func (*Client) ListServiceTerminators

func (a *Client) ListServiceTerminators(params *ListServiceTerminatorsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListServiceTerminatorsOK, error)

ListServiceTerminators lists of terminators assigned to a service

Retrieves a list of terminator resources that are assigned specific service; supports filtering, sorting, and pagination.

func (*Client) ListServices

func (a *Client) ListServices(params *ListServicesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListServicesOK, error)

ListServices lists services

Retrieves a list of config resources; supports filtering, sorting, and pagination. Requires admin access.

func (*Client) PatchService

func (a *Client) PatchService(params *PatchServiceParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*PatchServiceOK, error)

PatchService updates the supplied fields on a service

Update the supplied fields on a service. Requires admin access.

func (*Client) SetTransport

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

SetTransport changes the transport on the client

func (*Client) UpdateService

func (a *Client) UpdateService(params *UpdateServiceParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateServiceOK, error)

UpdateService updates all fields on a service

Update all fields on a service by id. Requires admin access.

type ClientOption

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

type ClientService

type ClientService interface {
	DeleteService(params *DeleteServiceParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteServiceOK, error)

	DetailService(params *DetailServiceParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DetailServiceOK, error)

	ListServiceEdgeRouters(params *ListServiceEdgeRoutersParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListServiceEdgeRoutersOK, error)

	ListServiceTerminators(params *ListServiceTerminatorsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListServiceTerminatorsOK, error)

	ListServices(params *ListServicesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListServicesOK, error)

	PatchService(params *PatchServiceParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*PatchServiceOK, error)

	UpdateService(params *UpdateServiceParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateServiceOK, 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 service API client.

type DeleteServiceBadRequest

type DeleteServiceBadRequest struct {
	Payload *rest_model.APIErrorEnvelope
}
DeleteServiceBadRequest describes a response with status code 400, with default header values.

The supplied request contains invalid fields or could not be parsed (json and non-json bodies). The error's code, message, and cause fields can be inspected for further information

func NewDeleteServiceBadRequest

func NewDeleteServiceBadRequest() *DeleteServiceBadRequest

NewDeleteServiceBadRequest creates a DeleteServiceBadRequest with default headers values

func (*DeleteServiceBadRequest) Error

func (o *DeleteServiceBadRequest) Error() string

func (*DeleteServiceBadRequest) GetPayload

type DeleteServiceConflict

type DeleteServiceConflict struct {
	Payload *rest_model.APIErrorEnvelope
}
DeleteServiceConflict describes a response with status code 409, with default header values.

The resource requested to be removed/altered cannot be as it is referenced by another object.

func NewDeleteServiceConflict

func NewDeleteServiceConflict() *DeleteServiceConflict

NewDeleteServiceConflict creates a DeleteServiceConflict with default headers values

func (*DeleteServiceConflict) Error

func (o *DeleteServiceConflict) Error() string

func (*DeleteServiceConflict) GetPayload

type DeleteServiceOK

type DeleteServiceOK struct {
	Payload *rest_model.Empty
}
DeleteServiceOK describes a response with status code 200, with default header values.

The delete request was successful and the resource has been removed

func NewDeleteServiceOK

func NewDeleteServiceOK() *DeleteServiceOK

NewDeleteServiceOK creates a DeleteServiceOK with default headers values

func (*DeleteServiceOK) Error

func (o *DeleteServiceOK) Error() string

func (*DeleteServiceOK) GetPayload

func (o *DeleteServiceOK) GetPayload() *rest_model.Empty

type DeleteServiceParams

type DeleteServiceParams struct {

	/* ID.

	   The id of the requested resource
	*/
	ID string

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

DeleteServiceParams contains all the parameters to send to the API endpoint

for the delete service operation.

Typically these are written to a http.Request.

func NewDeleteServiceParams

func NewDeleteServiceParams() *DeleteServiceParams

NewDeleteServiceParams creates a new DeleteServiceParams 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 NewDeleteServiceParamsWithContext

func NewDeleteServiceParamsWithContext(ctx context.Context) *DeleteServiceParams

NewDeleteServiceParamsWithContext creates a new DeleteServiceParams object with the ability to set a context for a request.

func NewDeleteServiceParamsWithHTTPClient

func NewDeleteServiceParamsWithHTTPClient(client *http.Client) *DeleteServiceParams

NewDeleteServiceParamsWithHTTPClient creates a new DeleteServiceParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteServiceParamsWithTimeout

func NewDeleteServiceParamsWithTimeout(timeout time.Duration) *DeleteServiceParams

NewDeleteServiceParamsWithTimeout creates a new DeleteServiceParams object with the ability to set a timeout on a request.

func (*DeleteServiceParams) SetContext

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

SetContext adds the context to the delete service params

func (*DeleteServiceParams) SetDefaults

func (o *DeleteServiceParams) SetDefaults()

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

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

func (*DeleteServiceParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete service params

func (*DeleteServiceParams) SetID

func (o *DeleteServiceParams) SetID(id string)

SetID adds the id to the delete service params

func (*DeleteServiceParams) SetTimeout

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

SetTimeout adds the timeout to the delete service params

func (*DeleteServiceParams) WithContext

WithContext adds the context to the delete service params

func (*DeleteServiceParams) WithDefaults

func (o *DeleteServiceParams) WithDefaults() *DeleteServiceParams

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

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

func (*DeleteServiceParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the delete service params

func (*DeleteServiceParams) WithID

WithID adds the id to the delete service params

func (*DeleteServiceParams) WithTimeout

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

WithTimeout adds the timeout to the delete service params

func (*DeleteServiceParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type DeleteServiceReader

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

DeleteServiceReader is a Reader for the DeleteService structure.

func (*DeleteServiceReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteServiceTooManyRequests added in v0.26.0

type DeleteServiceTooManyRequests struct {
	Payload *rest_model.APIErrorEnvelope
}
DeleteServiceTooManyRequests describes a response with status code 429, with default header values.

The resource requested is rate limited and the rate limit has been exceeded

func NewDeleteServiceTooManyRequests added in v0.26.0

func NewDeleteServiceTooManyRequests() *DeleteServiceTooManyRequests

NewDeleteServiceTooManyRequests creates a DeleteServiceTooManyRequests with default headers values

func (*DeleteServiceTooManyRequests) Error added in v0.26.0

func (*DeleteServiceTooManyRequests) GetPayload added in v0.26.0

type DeleteServiceUnauthorized

type DeleteServiceUnauthorized struct {
	Payload *rest_model.APIErrorEnvelope
}
DeleteServiceUnauthorized describes a response with status code 401, with default header values.

The supplied session does not have the correct access rights to request this resource

func NewDeleteServiceUnauthorized

func NewDeleteServiceUnauthorized() *DeleteServiceUnauthorized

NewDeleteServiceUnauthorized creates a DeleteServiceUnauthorized with default headers values

func (*DeleteServiceUnauthorized) Error

func (o *DeleteServiceUnauthorized) Error() string

func (*DeleteServiceUnauthorized) GetPayload

type DetailServiceNotFound

type DetailServiceNotFound struct {
	Payload *rest_model.APIErrorEnvelope
}
DetailServiceNotFound describes a response with status code 404, with default header values.

The requested resource does not exist

func NewDetailServiceNotFound

func NewDetailServiceNotFound() *DetailServiceNotFound

NewDetailServiceNotFound creates a DetailServiceNotFound with default headers values

func (*DetailServiceNotFound) Error

func (o *DetailServiceNotFound) Error() string

func (*DetailServiceNotFound) GetPayload

type DetailServiceOK

type DetailServiceOK struct {
	Payload *rest_model.DetailServiceEnvelope
}
DetailServiceOK describes a response with status code 200, with default header values.

A single service

func NewDetailServiceOK

func NewDetailServiceOK() *DetailServiceOK

NewDetailServiceOK creates a DetailServiceOK with default headers values

func (*DetailServiceOK) Error

func (o *DetailServiceOK) Error() string

func (*DetailServiceOK) GetPayload

type DetailServiceParams

type DetailServiceParams struct {

	/* ID.

	   The id of the requested resource
	*/
	ID string

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

DetailServiceParams contains all the parameters to send to the API endpoint

for the detail service operation.

Typically these are written to a http.Request.

func NewDetailServiceParams

func NewDetailServiceParams() *DetailServiceParams

NewDetailServiceParams creates a new DetailServiceParams 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 NewDetailServiceParamsWithContext

func NewDetailServiceParamsWithContext(ctx context.Context) *DetailServiceParams

NewDetailServiceParamsWithContext creates a new DetailServiceParams object with the ability to set a context for a request.

func NewDetailServiceParamsWithHTTPClient

func NewDetailServiceParamsWithHTTPClient(client *http.Client) *DetailServiceParams

NewDetailServiceParamsWithHTTPClient creates a new DetailServiceParams object with the ability to set a custom HTTPClient for a request.

func NewDetailServiceParamsWithTimeout

func NewDetailServiceParamsWithTimeout(timeout time.Duration) *DetailServiceParams

NewDetailServiceParamsWithTimeout creates a new DetailServiceParams object with the ability to set a timeout on a request.

func (*DetailServiceParams) SetContext

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

SetContext adds the context to the detail service params

func (*DetailServiceParams) SetDefaults

func (o *DetailServiceParams) SetDefaults()

SetDefaults hydrates default values in the detail service params (not the query body).

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

func (*DetailServiceParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the detail service params

func (*DetailServiceParams) SetID

func (o *DetailServiceParams) SetID(id string)

SetID adds the id to the detail service params

func (*DetailServiceParams) SetTimeout

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

SetTimeout adds the timeout to the detail service params

func (*DetailServiceParams) WithContext

WithContext adds the context to the detail service params

func (*DetailServiceParams) WithDefaults

func (o *DetailServiceParams) WithDefaults() *DetailServiceParams

WithDefaults hydrates default values in the detail service params (not the query body).

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

func (*DetailServiceParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the detail service params

func (*DetailServiceParams) WithID

WithID adds the id to the detail service params

func (*DetailServiceParams) WithTimeout

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

WithTimeout adds the timeout to the detail service params

func (*DetailServiceParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type DetailServiceReader

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

DetailServiceReader is a Reader for the DetailService structure.

func (*DetailServiceReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DetailServiceTooManyRequests added in v0.26.0

type DetailServiceTooManyRequests struct {
	Payload *rest_model.APIErrorEnvelope
}
DetailServiceTooManyRequests describes a response with status code 429, with default header values.

The resource requested is rate limited and the rate limit has been exceeded

func NewDetailServiceTooManyRequests added in v0.26.0

func NewDetailServiceTooManyRequests() *DetailServiceTooManyRequests

NewDetailServiceTooManyRequests creates a DetailServiceTooManyRequests with default headers values

func (*DetailServiceTooManyRequests) Error added in v0.26.0

func (*DetailServiceTooManyRequests) GetPayload added in v0.26.0

type DetailServiceUnauthorized

type DetailServiceUnauthorized struct {
	Payload *rest_model.APIErrorEnvelope
}
DetailServiceUnauthorized describes a response with status code 401, with default header values.

The supplied session does not have the correct access rights to request this resource

func NewDetailServiceUnauthorized

func NewDetailServiceUnauthorized() *DetailServiceUnauthorized

NewDetailServiceUnauthorized creates a DetailServiceUnauthorized with default headers values

func (*DetailServiceUnauthorized) Error

func (o *DetailServiceUnauthorized) Error() string

func (*DetailServiceUnauthorized) GetPayload

type ListServiceEdgeRoutersBadRequest added in v0.26.1

type ListServiceEdgeRoutersBadRequest struct {
	Payload *rest_model.APIErrorEnvelope
}
ListServiceEdgeRoutersBadRequest describes a response with status code 400, with default header values.

The supplied request contains invalid fields or could not be parsed (json and non-json bodies). The error's code, message, and cause fields can be inspected for further information

func NewListServiceEdgeRoutersBadRequest added in v0.26.1

func NewListServiceEdgeRoutersBadRequest() *ListServiceEdgeRoutersBadRequest

NewListServiceEdgeRoutersBadRequest creates a ListServiceEdgeRoutersBadRequest with default headers values

func (*ListServiceEdgeRoutersBadRequest) Error added in v0.26.1

func (*ListServiceEdgeRoutersBadRequest) GetPayload added in v0.26.1

type ListServiceEdgeRoutersNotFound added in v0.26.1

type ListServiceEdgeRoutersNotFound struct {
	Payload *rest_model.APIErrorEnvelope
}
ListServiceEdgeRoutersNotFound describes a response with status code 404, with default header values.

The requested resource does not exist

func NewListServiceEdgeRoutersNotFound added in v0.26.1

func NewListServiceEdgeRoutersNotFound() *ListServiceEdgeRoutersNotFound

NewListServiceEdgeRoutersNotFound creates a ListServiceEdgeRoutersNotFound with default headers values

func (*ListServiceEdgeRoutersNotFound) Error added in v0.26.1

func (*ListServiceEdgeRoutersNotFound) GetPayload added in v0.26.1

type ListServiceEdgeRoutersOK added in v0.26.1

type ListServiceEdgeRoutersOK struct {
	Payload *rest_model.ListServiceEdgeRoutersEnvelope
}
ListServiceEdgeRoutersOK describes a response with status code 200, with default header values.

A list of edge routers suitable for dialing or binding the specified service by the authenticated identity

func NewListServiceEdgeRoutersOK added in v0.26.1

func NewListServiceEdgeRoutersOK() *ListServiceEdgeRoutersOK

NewListServiceEdgeRoutersOK creates a ListServiceEdgeRoutersOK with default headers values

func (*ListServiceEdgeRoutersOK) Error added in v0.26.1

func (o *ListServiceEdgeRoutersOK) Error() string

func (*ListServiceEdgeRoutersOK) GetPayload added in v0.26.1

type ListServiceEdgeRoutersParams added in v0.26.1

type ListServiceEdgeRoutersParams struct {

	// Filter.
	Filter *string

	/* ID.

	   The id of the requested resource
	*/
	ID string

	// Limit.
	Limit *int64

	// Offset.
	Offset *int64

	/* SessionToken.

	   an optional JWT token use to authenticate the request. If provided, the token must be valid else a not authorized response is returned.
	*/
	SessionToken *string

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

ListServiceEdgeRoutersParams contains all the parameters to send to the API endpoint

for the list service edge routers operation.

Typically these are written to a http.Request.

func NewListServiceEdgeRoutersParams added in v0.26.1

func NewListServiceEdgeRoutersParams() *ListServiceEdgeRoutersParams

NewListServiceEdgeRoutersParams creates a new ListServiceEdgeRoutersParams 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 NewListServiceEdgeRoutersParamsWithContext added in v0.26.1

func NewListServiceEdgeRoutersParamsWithContext(ctx context.Context) *ListServiceEdgeRoutersParams

NewListServiceEdgeRoutersParamsWithContext creates a new ListServiceEdgeRoutersParams object with the ability to set a context for a request.

func NewListServiceEdgeRoutersParamsWithHTTPClient added in v0.26.1

func NewListServiceEdgeRoutersParamsWithHTTPClient(client *http.Client) *ListServiceEdgeRoutersParams

NewListServiceEdgeRoutersParamsWithHTTPClient creates a new ListServiceEdgeRoutersParams object with the ability to set a custom HTTPClient for a request.

func NewListServiceEdgeRoutersParamsWithTimeout added in v0.26.1

func NewListServiceEdgeRoutersParamsWithTimeout(timeout time.Duration) *ListServiceEdgeRoutersParams

NewListServiceEdgeRoutersParamsWithTimeout creates a new ListServiceEdgeRoutersParams object with the ability to set a timeout on a request.

func (*ListServiceEdgeRoutersParams) SetContext added in v0.26.1

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

SetContext adds the context to the list service edge routers params

func (*ListServiceEdgeRoutersParams) SetDefaults added in v0.26.1

func (o *ListServiceEdgeRoutersParams) SetDefaults()

SetDefaults hydrates default values in the list service edge routers params (not the query body).

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

func (*ListServiceEdgeRoutersParams) SetFilter added in v0.26.1

func (o *ListServiceEdgeRoutersParams) SetFilter(filter *string)

SetFilter adds the filter to the list service edge routers params

func (*ListServiceEdgeRoutersParams) SetHTTPClient added in v0.26.1

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

SetHTTPClient adds the HTTPClient to the list service edge routers params

func (*ListServiceEdgeRoutersParams) SetID added in v0.26.1

func (o *ListServiceEdgeRoutersParams) SetID(id string)

SetID adds the id to the list service edge routers params

func (*ListServiceEdgeRoutersParams) SetLimit added in v0.26.1

func (o *ListServiceEdgeRoutersParams) SetLimit(limit *int64)

SetLimit adds the limit to the list service edge routers params

func (*ListServiceEdgeRoutersParams) SetOffset added in v0.26.1

func (o *ListServiceEdgeRoutersParams) SetOffset(offset *int64)

SetOffset adds the offset to the list service edge routers params

func (*ListServiceEdgeRoutersParams) SetSessionToken added in v0.26.1

func (o *ListServiceEdgeRoutersParams) SetSessionToken(sessionToken *string)

SetSessionToken adds the sessionToken to the list service edge routers params

func (*ListServiceEdgeRoutersParams) SetTimeout added in v0.26.1

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

SetTimeout adds the timeout to the list service edge routers params

func (*ListServiceEdgeRoutersParams) WithContext added in v0.26.1

WithContext adds the context to the list service edge routers params

func (*ListServiceEdgeRoutersParams) WithDefaults added in v0.26.1

WithDefaults hydrates default values in the list service edge routers params (not the query body).

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

func (*ListServiceEdgeRoutersParams) WithFilter added in v0.26.1

WithFilter adds the filter to the list service edge routers params

func (*ListServiceEdgeRoutersParams) WithHTTPClient added in v0.26.1

WithHTTPClient adds the HTTPClient to the list service edge routers params

func (*ListServiceEdgeRoutersParams) WithID added in v0.26.1

WithID adds the id to the list service edge routers params

func (*ListServiceEdgeRoutersParams) WithLimit added in v0.26.1

WithLimit adds the limit to the list service edge routers params

func (*ListServiceEdgeRoutersParams) WithOffset added in v0.26.1

WithOffset adds the offset to the list service edge routers params

func (*ListServiceEdgeRoutersParams) WithSessionToken added in v0.26.1

func (o *ListServiceEdgeRoutersParams) WithSessionToken(sessionToken *string) *ListServiceEdgeRoutersParams

WithSessionToken adds the sessionToken to the list service edge routers params

func (*ListServiceEdgeRoutersParams) WithTimeout added in v0.26.1

WithTimeout adds the timeout to the list service edge routers params

func (*ListServiceEdgeRoutersParams) WriteToRequest added in v0.26.1

WriteToRequest writes these params to a swagger request

type ListServiceEdgeRoutersReader added in v0.26.1

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

ListServiceEdgeRoutersReader is a Reader for the ListServiceEdgeRouters structure.

func (*ListServiceEdgeRoutersReader) ReadResponse added in v0.26.1

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

ReadResponse reads a server response into the received o.

type ListServiceEdgeRoutersTooManyRequests added in v0.26.1

type ListServiceEdgeRoutersTooManyRequests struct {
	Payload *rest_model.APIErrorEnvelope
}
ListServiceEdgeRoutersTooManyRequests describes a response with status code 429, with default header values.

The resource requested is rate limited and the rate limit has been exceeded

func NewListServiceEdgeRoutersTooManyRequests added in v0.26.1

func NewListServiceEdgeRoutersTooManyRequests() *ListServiceEdgeRoutersTooManyRequests

NewListServiceEdgeRoutersTooManyRequests creates a ListServiceEdgeRoutersTooManyRequests with default headers values

func (*ListServiceEdgeRoutersTooManyRequests) Error added in v0.26.1

func (*ListServiceEdgeRoutersTooManyRequests) GetPayload added in v0.26.1

type ListServiceEdgeRoutersUnauthorized added in v0.26.1

type ListServiceEdgeRoutersUnauthorized struct {
	Payload *rest_model.APIErrorEnvelope
}
ListServiceEdgeRoutersUnauthorized describes a response with status code 401, with default header values.

The supplied session does not have the correct access rights to request this resource

func NewListServiceEdgeRoutersUnauthorized added in v0.26.1

func NewListServiceEdgeRoutersUnauthorized() *ListServiceEdgeRoutersUnauthorized

NewListServiceEdgeRoutersUnauthorized creates a ListServiceEdgeRoutersUnauthorized with default headers values

func (*ListServiceEdgeRoutersUnauthorized) Error added in v0.26.1

func (*ListServiceEdgeRoutersUnauthorized) GetPayload added in v0.26.1

type ListServiceTerminatorsBadRequest

type ListServiceTerminatorsBadRequest struct {
	Payload *rest_model.APIErrorEnvelope
}
ListServiceTerminatorsBadRequest describes a response with status code 400, with default header values.

The supplied request contains invalid fields or could not be parsed (json and non-json bodies). The error's code, message, and cause fields can be inspected for further information

func NewListServiceTerminatorsBadRequest

func NewListServiceTerminatorsBadRequest() *ListServiceTerminatorsBadRequest

NewListServiceTerminatorsBadRequest creates a ListServiceTerminatorsBadRequest with default headers values

func (*ListServiceTerminatorsBadRequest) Error

func (*ListServiceTerminatorsBadRequest) GetPayload

type ListServiceTerminatorsOK

type ListServiceTerminatorsOK struct {
	Payload *rest_model.ListClientTerminatorsEnvelope
}
ListServiceTerminatorsOK describes a response with status code 200, with default header values.

A list of terminators

func NewListServiceTerminatorsOK

func NewListServiceTerminatorsOK() *ListServiceTerminatorsOK

NewListServiceTerminatorsOK creates a ListServiceTerminatorsOK with default headers values

func (*ListServiceTerminatorsOK) Error

func (o *ListServiceTerminatorsOK) Error() string

func (*ListServiceTerminatorsOK) GetPayload

type ListServiceTerminatorsParams

type ListServiceTerminatorsParams struct {

	// Filter.
	Filter *string

	/* ID.

	   The id of the requested resource
	*/
	ID string

	// Limit.
	Limit *int64

	// Offset.
	Offset *int64

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

ListServiceTerminatorsParams contains all the parameters to send to the API endpoint

for the list service terminators operation.

Typically these are written to a http.Request.

func NewListServiceTerminatorsParams

func NewListServiceTerminatorsParams() *ListServiceTerminatorsParams

NewListServiceTerminatorsParams creates a new ListServiceTerminatorsParams 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 NewListServiceTerminatorsParamsWithContext

func NewListServiceTerminatorsParamsWithContext(ctx context.Context) *ListServiceTerminatorsParams

NewListServiceTerminatorsParamsWithContext creates a new ListServiceTerminatorsParams object with the ability to set a context for a request.

func NewListServiceTerminatorsParamsWithHTTPClient

func NewListServiceTerminatorsParamsWithHTTPClient(client *http.Client) *ListServiceTerminatorsParams

NewListServiceTerminatorsParamsWithHTTPClient creates a new ListServiceTerminatorsParams object with the ability to set a custom HTTPClient for a request.

func NewListServiceTerminatorsParamsWithTimeout

func NewListServiceTerminatorsParamsWithTimeout(timeout time.Duration) *ListServiceTerminatorsParams

NewListServiceTerminatorsParamsWithTimeout creates a new ListServiceTerminatorsParams object with the ability to set a timeout on a request.

func (*ListServiceTerminatorsParams) SetContext

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

SetContext adds the context to the list service terminators params

func (*ListServiceTerminatorsParams) SetDefaults

func (o *ListServiceTerminatorsParams) SetDefaults()

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

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

func (*ListServiceTerminatorsParams) SetFilter

func (o *ListServiceTerminatorsParams) SetFilter(filter *string)

SetFilter adds the filter to the list service terminators params

func (*ListServiceTerminatorsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the list service terminators params

func (*ListServiceTerminatorsParams) SetID

func (o *ListServiceTerminatorsParams) SetID(id string)

SetID adds the id to the list service terminators params

func (*ListServiceTerminatorsParams) SetLimit

func (o *ListServiceTerminatorsParams) SetLimit(limit *int64)

SetLimit adds the limit to the list service terminators params

func (*ListServiceTerminatorsParams) SetOffset

func (o *ListServiceTerminatorsParams) SetOffset(offset *int64)

SetOffset adds the offset to the list service terminators params

func (*ListServiceTerminatorsParams) SetTimeout

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

SetTimeout adds the timeout to the list service terminators params

func (*ListServiceTerminatorsParams) WithContext

WithContext adds the context to the list service terminators params

func (*ListServiceTerminatorsParams) WithDefaults

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

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

func (*ListServiceTerminatorsParams) WithFilter

WithFilter adds the filter to the list service terminators params

func (*ListServiceTerminatorsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the list service terminators params

func (*ListServiceTerminatorsParams) WithID

WithID adds the id to the list service terminators params

func (*ListServiceTerminatorsParams) WithLimit

WithLimit adds the limit to the list service terminators params

func (*ListServiceTerminatorsParams) WithOffset

WithOffset adds the offset to the list service terminators params

func (*ListServiceTerminatorsParams) WithTimeout

WithTimeout adds the timeout to the list service terminators params

func (*ListServiceTerminatorsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ListServiceTerminatorsReader

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

ListServiceTerminatorsReader is a Reader for the ListServiceTerminators structure.

func (*ListServiceTerminatorsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ListServiceTerminatorsTooManyRequests added in v0.26.0

type ListServiceTerminatorsTooManyRequests struct {
	Payload *rest_model.APIErrorEnvelope
}
ListServiceTerminatorsTooManyRequests describes a response with status code 429, with default header values.

The resource requested is rate limited and the rate limit has been exceeded

func NewListServiceTerminatorsTooManyRequests added in v0.26.0

func NewListServiceTerminatorsTooManyRequests() *ListServiceTerminatorsTooManyRequests

NewListServiceTerminatorsTooManyRequests creates a ListServiceTerminatorsTooManyRequests with default headers values

func (*ListServiceTerminatorsTooManyRequests) Error added in v0.26.0

func (*ListServiceTerminatorsTooManyRequests) GetPayload added in v0.26.0

type ListServiceTerminatorsUnauthorized

type ListServiceTerminatorsUnauthorized struct {
	Payload *rest_model.APIErrorEnvelope
}
ListServiceTerminatorsUnauthorized describes a response with status code 401, with default header values.

The supplied session does not have the correct access rights to request this resource

func NewListServiceTerminatorsUnauthorized

func NewListServiceTerminatorsUnauthorized() *ListServiceTerminatorsUnauthorized

NewListServiceTerminatorsUnauthorized creates a ListServiceTerminatorsUnauthorized with default headers values

func (*ListServiceTerminatorsUnauthorized) Error

func (*ListServiceTerminatorsUnauthorized) GetPayload

type ListServicesBadRequest

type ListServicesBadRequest struct {
	Payload *rest_model.APIErrorEnvelope
}
ListServicesBadRequest describes a response with status code 400, with default header values.

The supplied request contains invalid fields or could not be parsed (json and non-json bodies). The error's code, message, and cause fields can be inspected for further information

func NewListServicesBadRequest

func NewListServicesBadRequest() *ListServicesBadRequest

NewListServicesBadRequest creates a ListServicesBadRequest with default headers values

func (*ListServicesBadRequest) Error

func (o *ListServicesBadRequest) Error() string

func (*ListServicesBadRequest) GetPayload

type ListServicesOK

type ListServicesOK struct {
	Payload *rest_model.ListServicesEnvelope
}
ListServicesOK describes a response with status code 200, with default header values.

A list of services

func NewListServicesOK

func NewListServicesOK() *ListServicesOK

NewListServicesOK creates a ListServicesOK with default headers values

func (*ListServicesOK) Error

func (o *ListServicesOK) Error() string

func (*ListServicesOK) GetPayload

type ListServicesParams

type ListServicesParams struct {

	// ConfigTypes.
	ConfigTypes []string

	// Filter.
	Filter *string

	// Limit.
	Limit *int64

	// Offset.
	Offset *int64

	// RoleFilter.
	RoleFilter []string

	// RoleSemantic.
	RoleSemantic *string

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

ListServicesParams contains all the parameters to send to the API endpoint

for the list services operation.

Typically these are written to a http.Request.

func NewListServicesParams

func NewListServicesParams() *ListServicesParams

NewListServicesParams creates a new ListServicesParams 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 NewListServicesParamsWithContext

func NewListServicesParamsWithContext(ctx context.Context) *ListServicesParams

NewListServicesParamsWithContext creates a new ListServicesParams object with the ability to set a context for a request.

func NewListServicesParamsWithHTTPClient

func NewListServicesParamsWithHTTPClient(client *http.Client) *ListServicesParams

NewListServicesParamsWithHTTPClient creates a new ListServicesParams object with the ability to set a custom HTTPClient for a request.

func NewListServicesParamsWithTimeout

func NewListServicesParamsWithTimeout(timeout time.Duration) *ListServicesParams

NewListServicesParamsWithTimeout creates a new ListServicesParams object with the ability to set a timeout on a request.

func (*ListServicesParams) SetConfigTypes added in v0.26.17

func (o *ListServicesParams) SetConfigTypes(configTypes []string)

SetConfigTypes adds the configTypes to the list services params

func (*ListServicesParams) SetContext

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

SetContext adds the context to the list services params

func (*ListServicesParams) SetDefaults

func (o *ListServicesParams) SetDefaults()

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

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

func (*ListServicesParams) SetFilter

func (o *ListServicesParams) SetFilter(filter *string)

SetFilter adds the filter to the list services params

func (*ListServicesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the list services params

func (*ListServicesParams) SetLimit

func (o *ListServicesParams) SetLimit(limit *int64)

SetLimit adds the limit to the list services params

func (*ListServicesParams) SetOffset

func (o *ListServicesParams) SetOffset(offset *int64)

SetOffset adds the offset to the list services params

func (*ListServicesParams) SetRoleFilter

func (o *ListServicesParams) SetRoleFilter(roleFilter []string)

SetRoleFilter adds the roleFilter to the list services params

func (*ListServicesParams) SetRoleSemantic

func (o *ListServicesParams) SetRoleSemantic(roleSemantic *string)

SetRoleSemantic adds the roleSemantic to the list services params

func (*ListServicesParams) SetTimeout

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

SetTimeout adds the timeout to the list services params

func (*ListServicesParams) WithConfigTypes added in v0.26.17

func (o *ListServicesParams) WithConfigTypes(configTypes []string) *ListServicesParams

WithConfigTypes adds the configTypes to the list services params

func (*ListServicesParams) WithContext

WithContext adds the context to the list services params

func (*ListServicesParams) WithDefaults

func (o *ListServicesParams) WithDefaults() *ListServicesParams

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

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

func (*ListServicesParams) WithFilter

func (o *ListServicesParams) WithFilter(filter *string) *ListServicesParams

WithFilter adds the filter to the list services params

func (*ListServicesParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the list services params

func (*ListServicesParams) WithLimit

func (o *ListServicesParams) WithLimit(limit *int64) *ListServicesParams

WithLimit adds the limit to the list services params

func (*ListServicesParams) WithOffset

func (o *ListServicesParams) WithOffset(offset *int64) *ListServicesParams

WithOffset adds the offset to the list services params

func (*ListServicesParams) WithRoleFilter

func (o *ListServicesParams) WithRoleFilter(roleFilter []string) *ListServicesParams

WithRoleFilter adds the roleFilter to the list services params

func (*ListServicesParams) WithRoleSemantic

func (o *ListServicesParams) WithRoleSemantic(roleSemantic *string) *ListServicesParams

WithRoleSemantic adds the roleSemantic to the list services params

func (*ListServicesParams) WithTimeout

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

WithTimeout adds the timeout to the list services params

func (*ListServicesParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type ListServicesReader

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

ListServicesReader is a Reader for the ListServices structure.

func (*ListServicesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ListServicesTooManyRequests added in v0.26.0

type ListServicesTooManyRequests struct {
	Payload *rest_model.APIErrorEnvelope
}
ListServicesTooManyRequests describes a response with status code 429, with default header values.

The resource requested is rate limited and the rate limit has been exceeded

func NewListServicesTooManyRequests added in v0.26.0

func NewListServicesTooManyRequests() *ListServicesTooManyRequests

NewListServicesTooManyRequests creates a ListServicesTooManyRequests with default headers values

func (*ListServicesTooManyRequests) Error added in v0.26.0

func (*ListServicesTooManyRequests) GetPayload added in v0.26.0

type ListServicesUnauthorized

type ListServicesUnauthorized struct {
	Payload *rest_model.APIErrorEnvelope
}
ListServicesUnauthorized describes a response with status code 401, with default header values.

The supplied session does not have the correct access rights to request this resource

func NewListServicesUnauthorized

func NewListServicesUnauthorized() *ListServicesUnauthorized

NewListServicesUnauthorized creates a ListServicesUnauthorized with default headers values

func (*ListServicesUnauthorized) Error

func (o *ListServicesUnauthorized) Error() string

func (*ListServicesUnauthorized) GetPayload

type PatchServiceBadRequest

type PatchServiceBadRequest struct {
	Payload *rest_model.APIErrorEnvelope
}
PatchServiceBadRequest describes a response with status code 400, with default header values.

The supplied request contains invalid fields or could not be parsed (json and non-json bodies). The error's code, message, and cause fields can be inspected for further information

func NewPatchServiceBadRequest

func NewPatchServiceBadRequest() *PatchServiceBadRequest

NewPatchServiceBadRequest creates a PatchServiceBadRequest with default headers values

func (*PatchServiceBadRequest) Error

func (o *PatchServiceBadRequest) Error() string

func (*PatchServiceBadRequest) GetPayload

type PatchServiceNotFound

type PatchServiceNotFound struct {
	Payload *rest_model.APIErrorEnvelope
}
PatchServiceNotFound describes a response with status code 404, with default header values.

The requested resource does not exist

func NewPatchServiceNotFound

func NewPatchServiceNotFound() *PatchServiceNotFound

NewPatchServiceNotFound creates a PatchServiceNotFound with default headers values

func (*PatchServiceNotFound) Error

func (o *PatchServiceNotFound) Error() string

func (*PatchServiceNotFound) GetPayload

type PatchServiceOK

type PatchServiceOK struct {
	Payload *rest_model.Empty
}
PatchServiceOK describes a response with status code 200, with default header values.

The patch request was successful and the resource has been altered

func NewPatchServiceOK

func NewPatchServiceOK() *PatchServiceOK

NewPatchServiceOK creates a PatchServiceOK with default headers values

func (*PatchServiceOK) Error

func (o *PatchServiceOK) Error() string

func (*PatchServiceOK) GetPayload

func (o *PatchServiceOK) GetPayload() *rest_model.Empty

type PatchServiceParams

type PatchServiceParams struct {

	/* ID.

	   The id of the requested resource
	*/
	ID string

	/* Service.

	   A service patch object
	*/
	Service *rest_model.ServicePatch

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

PatchServiceParams contains all the parameters to send to the API endpoint

for the patch service operation.

Typically these are written to a http.Request.

func NewPatchServiceParams

func NewPatchServiceParams() *PatchServiceParams

NewPatchServiceParams creates a new PatchServiceParams 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 NewPatchServiceParamsWithContext

func NewPatchServiceParamsWithContext(ctx context.Context) *PatchServiceParams

NewPatchServiceParamsWithContext creates a new PatchServiceParams object with the ability to set a context for a request.

func NewPatchServiceParamsWithHTTPClient

func NewPatchServiceParamsWithHTTPClient(client *http.Client) *PatchServiceParams

NewPatchServiceParamsWithHTTPClient creates a new PatchServiceParams object with the ability to set a custom HTTPClient for a request.

func NewPatchServiceParamsWithTimeout

func NewPatchServiceParamsWithTimeout(timeout time.Duration) *PatchServiceParams

NewPatchServiceParamsWithTimeout creates a new PatchServiceParams object with the ability to set a timeout on a request.

func (*PatchServiceParams) SetContext

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

SetContext adds the context to the patch service params

func (*PatchServiceParams) SetDefaults

func (o *PatchServiceParams) SetDefaults()

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

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

func (*PatchServiceParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the patch service params

func (*PatchServiceParams) SetID

func (o *PatchServiceParams) SetID(id string)

SetID adds the id to the patch service params

func (*PatchServiceParams) SetService

func (o *PatchServiceParams) SetService(service *rest_model.ServicePatch)

SetService adds the service to the patch service params

func (*PatchServiceParams) SetTimeout

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

SetTimeout adds the timeout to the patch service params

func (*PatchServiceParams) WithContext

WithContext adds the context to the patch service params

func (*PatchServiceParams) WithDefaults

func (o *PatchServiceParams) WithDefaults() *PatchServiceParams

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

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

func (*PatchServiceParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the patch service params

func (*PatchServiceParams) WithID

WithID adds the id to the patch service params

func (*PatchServiceParams) WithService

WithService adds the service to the patch service params

func (*PatchServiceParams) WithTimeout

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

WithTimeout adds the timeout to the patch service params

func (*PatchServiceParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type PatchServiceReader

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

PatchServiceReader is a Reader for the PatchService structure.

func (*PatchServiceReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PatchServiceTooManyRequests added in v0.26.0

type PatchServiceTooManyRequests struct {
	Payload *rest_model.APIErrorEnvelope
}
PatchServiceTooManyRequests describes a response with status code 429, with default header values.

The resource requested is rate limited and the rate limit has been exceeded

func NewPatchServiceTooManyRequests added in v0.26.0

func NewPatchServiceTooManyRequests() *PatchServiceTooManyRequests

NewPatchServiceTooManyRequests creates a PatchServiceTooManyRequests with default headers values

func (*PatchServiceTooManyRequests) Error added in v0.26.0

func (*PatchServiceTooManyRequests) GetPayload added in v0.26.0

type PatchServiceUnauthorized

type PatchServiceUnauthorized struct {
	Payload *rest_model.APIErrorEnvelope
}
PatchServiceUnauthorized describes a response with status code 401, with default header values.

The supplied session does not have the correct access rights to request this resource

func NewPatchServiceUnauthorized

func NewPatchServiceUnauthorized() *PatchServiceUnauthorized

NewPatchServiceUnauthorized creates a PatchServiceUnauthorized with default headers values

func (*PatchServiceUnauthorized) Error

func (o *PatchServiceUnauthorized) Error() string

func (*PatchServiceUnauthorized) GetPayload

type UpdateServiceBadRequest

type UpdateServiceBadRequest struct {
	Payload *rest_model.APIErrorEnvelope
}
UpdateServiceBadRequest describes a response with status code 400, with default header values.

The supplied request contains invalid fields or could not be parsed (json and non-json bodies). The error's code, message, and cause fields can be inspected for further information

func NewUpdateServiceBadRequest

func NewUpdateServiceBadRequest() *UpdateServiceBadRequest

NewUpdateServiceBadRequest creates a UpdateServiceBadRequest with default headers values

func (*UpdateServiceBadRequest) Error

func (o *UpdateServiceBadRequest) Error() string

func (*UpdateServiceBadRequest) GetPayload

type UpdateServiceNotFound

type UpdateServiceNotFound struct {
	Payload *rest_model.APIErrorEnvelope
}
UpdateServiceNotFound describes a response with status code 404, with default header values.

The requested resource does not exist

func NewUpdateServiceNotFound

func NewUpdateServiceNotFound() *UpdateServiceNotFound

NewUpdateServiceNotFound creates a UpdateServiceNotFound with default headers values

func (*UpdateServiceNotFound) Error

func (o *UpdateServiceNotFound) Error() string

func (*UpdateServiceNotFound) GetPayload

type UpdateServiceOK

type UpdateServiceOK struct {
	Payload *rest_model.Empty
}
UpdateServiceOK describes a response with status code 200, with default header values.

The update request was successful and the resource has been altered

func NewUpdateServiceOK

func NewUpdateServiceOK() *UpdateServiceOK

NewUpdateServiceOK creates a UpdateServiceOK with default headers values

func (*UpdateServiceOK) Error

func (o *UpdateServiceOK) Error() string

func (*UpdateServiceOK) GetPayload

func (o *UpdateServiceOK) GetPayload() *rest_model.Empty

type UpdateServiceParams

type UpdateServiceParams struct {

	/* ID.

	   The id of the requested resource
	*/
	ID string

	/* Service.

	   A service update object
	*/
	Service *rest_model.ServiceUpdate

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

UpdateServiceParams contains all the parameters to send to the API endpoint

for the update service operation.

Typically these are written to a http.Request.

func NewUpdateServiceParams

func NewUpdateServiceParams() *UpdateServiceParams

NewUpdateServiceParams creates a new UpdateServiceParams 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 NewUpdateServiceParamsWithContext

func NewUpdateServiceParamsWithContext(ctx context.Context) *UpdateServiceParams

NewUpdateServiceParamsWithContext creates a new UpdateServiceParams object with the ability to set a context for a request.

func NewUpdateServiceParamsWithHTTPClient

func NewUpdateServiceParamsWithHTTPClient(client *http.Client) *UpdateServiceParams

NewUpdateServiceParamsWithHTTPClient creates a new UpdateServiceParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateServiceParamsWithTimeout

func NewUpdateServiceParamsWithTimeout(timeout time.Duration) *UpdateServiceParams

NewUpdateServiceParamsWithTimeout creates a new UpdateServiceParams object with the ability to set a timeout on a request.

func (*UpdateServiceParams) SetContext

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

SetContext adds the context to the update service params

func (*UpdateServiceParams) SetDefaults

func (o *UpdateServiceParams) SetDefaults()

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

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

func (*UpdateServiceParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update service params

func (*UpdateServiceParams) SetID

func (o *UpdateServiceParams) SetID(id string)

SetID adds the id to the update service params

func (*UpdateServiceParams) SetService

func (o *UpdateServiceParams) SetService(service *rest_model.ServiceUpdate)

SetService adds the service to the update service params

func (*UpdateServiceParams) SetTimeout

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

SetTimeout adds the timeout to the update service params

func (*UpdateServiceParams) WithContext

WithContext adds the context to the update service params

func (*UpdateServiceParams) WithDefaults

func (o *UpdateServiceParams) WithDefaults() *UpdateServiceParams

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

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

func (*UpdateServiceParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the update service params

func (*UpdateServiceParams) WithID

WithID adds the id to the update service params

func (*UpdateServiceParams) WithService

WithService adds the service to the update service params

func (*UpdateServiceParams) WithTimeout

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

WithTimeout adds the timeout to the update service params

func (*UpdateServiceParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type UpdateServiceReader

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

UpdateServiceReader is a Reader for the UpdateService structure.

func (*UpdateServiceReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateServiceTooManyRequests added in v0.26.0

type UpdateServiceTooManyRequests struct {
	Payload *rest_model.APIErrorEnvelope
}
UpdateServiceTooManyRequests describes a response with status code 429, with default header values.

The resource requested is rate limited and the rate limit has been exceeded

func NewUpdateServiceTooManyRequests added in v0.26.0

func NewUpdateServiceTooManyRequests() *UpdateServiceTooManyRequests

NewUpdateServiceTooManyRequests creates a UpdateServiceTooManyRequests with default headers values

func (*UpdateServiceTooManyRequests) Error added in v0.26.0

func (*UpdateServiceTooManyRequests) GetPayload added in v0.26.0

type UpdateServiceUnauthorized

type UpdateServiceUnauthorized struct {
	Payload *rest_model.APIErrorEnvelope
}
UpdateServiceUnauthorized describes a response with status code 401, with default header values.

The supplied session does not have the correct access rights to request this resource

func NewUpdateServiceUnauthorized

func NewUpdateServiceUnauthorized() *UpdateServiceUnauthorized

NewUpdateServiceUnauthorized creates a UpdateServiceUnauthorized with default headers values

func (*UpdateServiceUnauthorized) Error

func (o *UpdateServiceUnauthorized) Error() string

func (*UpdateServiceUnauthorized) GetPayload

Jump to

Keyboard shortcuts

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