objects

package
v1.24.10 Latest Latest
Warning

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

Go to latest
Published: Apr 19, 2024 License: BSD-3-Clause Imports: 11 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

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

Client for objects API

func (*Client) ObjectsClassDelete

func (a *Client) ObjectsClassDelete(params *ObjectsClassDeleteParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ObjectsClassDeleteNoContent, error)

ObjectsClassDelete deletes object based on its class and UUID

Delete a single data object.

func (*Client) ObjectsClassGet

func (a *Client) ObjectsClassGet(params *ObjectsClassGetParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ObjectsClassGetOK, error)

ObjectsClassGet gets a specific object based on its class and UUID also available as websocket bus

Get a single data object

func (*Client) ObjectsClassHead

func (a *Client) ObjectsClassHead(params *ObjectsClassHeadParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ObjectsClassHeadNoContent, error)

ObjectsClassHead checks object s existence based on its class and uuid

Checks if a data object exists without retrieving it.

func (*Client) ObjectsClassPatch

func (a *Client) ObjectsClassPatch(params *ObjectsClassPatchParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ObjectsClassPatchNoContent, error)

ObjectsClassPatch updates an object based on its UUID using patch semantics

Update an individual data object based on its class and uuid. This method supports json-merge style patch semantics (RFC 7396). Provided meta-data and schema values are validated. LastUpdateTime is set to the time this function is called.

func (*Client) ObjectsClassPut

func (a *Client) ObjectsClassPut(params *ObjectsClassPutParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ObjectsClassPutOK, error)

ObjectsClassPut updates a class object based on its uuid

Update an individual data object based on its class and uuid.

func (*Client) ObjectsClassReferencesCreate

func (a *Client) ObjectsClassReferencesCreate(params *ObjectsClassReferencesCreateParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ObjectsClassReferencesCreateOK, error)

ObjectsClassReferencesCreate adds a single reference to a class property

Add a single reference to a class-property.

func (*Client) ObjectsClassReferencesDelete

ObjectsClassReferencesDelete deletes the single reference that is given in the body from the list of references that this property has

Delete the single reference that is given in the body from the list of references that this property of a data object has

func (*Client) ObjectsClassReferencesPut

func (a *Client) ObjectsClassReferencesPut(params *ObjectsClassReferencesPutParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ObjectsClassReferencesPutOK, error)

ObjectsClassReferencesPut replaces all references to a class property

Update all references of a property of a data object.

func (*Client) ObjectsCreate

func (a *Client) ObjectsCreate(params *ObjectsCreateParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ObjectsCreateOK, error)

ObjectsCreate creates objects between two objects object and subject

Registers a new Object. Provided meta-data and schema values are validated.

func (*Client) ObjectsDelete

func (a *Client) ObjectsDelete(params *ObjectsDeleteParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ObjectsDeleteNoContent, error)

ObjectsDelete deletes an object based on its UUID

Deletes an Object from the system.

func (*Client) ObjectsGet

func (a *Client) ObjectsGet(params *ObjectsGetParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ObjectsGetOK, error)

ObjectsGet gets a specific object based on its UUID and a object UUID also available as websocket bus

Lists Objects.

func (*Client) ObjectsHead

func (a *Client) ObjectsHead(params *ObjectsHeadParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ObjectsHeadNoContent, error)

ObjectsHead checks object s existence based on its UUID

Checks if an Object exists in the system.

func (*Client) ObjectsList

func (a *Client) ObjectsList(params *ObjectsListParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ObjectsListOK, error)

ObjectsList gets a list of objects

Lists all Objects in reverse order of creation, owned by the user that belongs to the used token.

func (*Client) ObjectsPatch

func (a *Client) ObjectsPatch(params *ObjectsPatchParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ObjectsPatchNoContent, error)

ObjectsPatch updates an object based on its UUID using patch semantics

Updates an Object. This method supports json-merge style patch semantics (RFC 7396). Provided meta-data and schema values are validated. LastUpdateTime is set to the time this function is called.

func (*Client) ObjectsReferencesCreate

func (a *Client) ObjectsReferencesCreate(params *ObjectsReferencesCreateParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ObjectsReferencesCreateOK, error)

ObjectsReferencesCreate adds a single reference to a class property

Add a single reference to a class-property.

func (*Client) ObjectsReferencesDelete

func (a *Client) ObjectsReferencesDelete(params *ObjectsReferencesDeleteParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ObjectsReferencesDeleteNoContent, error)

ObjectsReferencesDelete deletes the single reference that is given in the body from the list of references that this property has

Delete the single reference that is given in the body from the list of references that this property has.

func (*Client) ObjectsReferencesUpdate

func (a *Client) ObjectsReferencesUpdate(params *ObjectsReferencesUpdateParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ObjectsReferencesUpdateOK, error)

ObjectsReferencesUpdate replaces all references to a class property

Replace all references to a class-property.

func (*Client) ObjectsUpdate

func (a *Client) ObjectsUpdate(params *ObjectsUpdateParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ObjectsUpdateOK, error)

ObjectsUpdate updates an object based on its UUID

Updates an Object's data. Given meta-data and schema values are validated. LastUpdateTime is set to the time this function is called.

func (*Client) ObjectsValidate

func (a *Client) ObjectsValidate(params *ObjectsValidateParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ObjectsValidateOK, error)

ObjectsValidate validates an object based on a schema

Validate an Object's schema and meta-data. It has to be based on a schema, which is related to the given Object to be accepted by this validation.

func (*Client) SetTransport

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

SetTransport changes the transport on the client

type ClientOption added in v1.18.0

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

type ClientService

type ClientService interface {
	ObjectsClassDelete(params *ObjectsClassDeleteParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ObjectsClassDeleteNoContent, error)

	ObjectsClassGet(params *ObjectsClassGetParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ObjectsClassGetOK, error)

	ObjectsClassHead(params *ObjectsClassHeadParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ObjectsClassHeadNoContent, error)

	ObjectsClassPatch(params *ObjectsClassPatchParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ObjectsClassPatchNoContent, error)

	ObjectsClassPut(params *ObjectsClassPutParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ObjectsClassPutOK, error)

	ObjectsClassReferencesCreate(params *ObjectsClassReferencesCreateParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ObjectsClassReferencesCreateOK, error)

	ObjectsClassReferencesDelete(params *ObjectsClassReferencesDeleteParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ObjectsClassReferencesDeleteNoContent, error)

	ObjectsClassReferencesPut(params *ObjectsClassReferencesPutParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ObjectsClassReferencesPutOK, error)

	ObjectsCreate(params *ObjectsCreateParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ObjectsCreateOK, error)

	ObjectsDelete(params *ObjectsDeleteParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ObjectsDeleteNoContent, error)

	ObjectsGet(params *ObjectsGetParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ObjectsGetOK, error)

	ObjectsHead(params *ObjectsHeadParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ObjectsHeadNoContent, error)

	ObjectsList(params *ObjectsListParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ObjectsListOK, error)

	ObjectsPatch(params *ObjectsPatchParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ObjectsPatchNoContent, error)

	ObjectsReferencesCreate(params *ObjectsReferencesCreateParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ObjectsReferencesCreateOK, error)

	ObjectsReferencesDelete(params *ObjectsReferencesDeleteParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ObjectsReferencesDeleteNoContent, error)

	ObjectsReferencesUpdate(params *ObjectsReferencesUpdateParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ObjectsReferencesUpdateOK, error)

	ObjectsUpdate(params *ObjectsUpdateParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ObjectsUpdateOK, error)

	ObjectsValidate(params *ObjectsValidateParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ObjectsValidateOK, 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 objects API client.

type ObjectsClassDeleteBadRequest added in v1.18.0

type ObjectsClassDeleteBadRequest struct {
	Payload *models.ErrorResponse
}

ObjectsClassDeleteBadRequest describes a response with status code 400, with default header values.

Malformed request.

func NewObjectsClassDeleteBadRequest added in v1.18.0

func NewObjectsClassDeleteBadRequest() *ObjectsClassDeleteBadRequest

NewObjectsClassDeleteBadRequest creates a ObjectsClassDeleteBadRequest with default headers values

func (*ObjectsClassDeleteBadRequest) Code added in v1.18.0

Code gets the status code for the objects class delete bad request response

func (*ObjectsClassDeleteBadRequest) Error added in v1.18.0

func (*ObjectsClassDeleteBadRequest) GetPayload added in v1.18.0

func (*ObjectsClassDeleteBadRequest) IsClientError added in v1.18.0

func (o *ObjectsClassDeleteBadRequest) IsClientError() bool

IsClientError returns true when this objects class delete bad request response has a 4xx status code

func (*ObjectsClassDeleteBadRequest) IsCode added in v1.18.0

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

IsCode returns true when this objects class delete bad request response a status code equal to that given

func (*ObjectsClassDeleteBadRequest) IsRedirect added in v1.18.0

func (o *ObjectsClassDeleteBadRequest) IsRedirect() bool

IsRedirect returns true when this objects class delete bad request response has a 3xx status code

func (*ObjectsClassDeleteBadRequest) IsServerError added in v1.18.0

func (o *ObjectsClassDeleteBadRequest) IsServerError() bool

IsServerError returns true when this objects class delete bad request response has a 5xx status code

func (*ObjectsClassDeleteBadRequest) IsSuccess added in v1.18.0

func (o *ObjectsClassDeleteBadRequest) IsSuccess() bool

IsSuccess returns true when this objects class delete bad request response has a 2xx status code

func (*ObjectsClassDeleteBadRequest) String added in v1.18.0

type ObjectsClassDeleteForbidden

type ObjectsClassDeleteForbidden struct {
	Payload *models.ErrorResponse
}

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

Forbidden

func NewObjectsClassDeleteForbidden

func NewObjectsClassDeleteForbidden() *ObjectsClassDeleteForbidden

NewObjectsClassDeleteForbidden creates a ObjectsClassDeleteForbidden with default headers values

func (*ObjectsClassDeleteForbidden) Code added in v1.18.0

func (o *ObjectsClassDeleteForbidden) Code() int

Code gets the status code for the objects class delete forbidden response

func (*ObjectsClassDeleteForbidden) Error

func (*ObjectsClassDeleteForbidden) GetPayload

func (*ObjectsClassDeleteForbidden) IsClientError added in v1.18.0

func (o *ObjectsClassDeleteForbidden) IsClientError() bool

IsClientError returns true when this objects class delete forbidden response has a 4xx status code

func (*ObjectsClassDeleteForbidden) IsCode added in v1.18.0

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

IsCode returns true when this objects class delete forbidden response a status code equal to that given

func (*ObjectsClassDeleteForbidden) IsRedirect added in v1.18.0

func (o *ObjectsClassDeleteForbidden) IsRedirect() bool

IsRedirect returns true when this objects class delete forbidden response has a 3xx status code

func (*ObjectsClassDeleteForbidden) IsServerError added in v1.18.0

func (o *ObjectsClassDeleteForbidden) IsServerError() bool

IsServerError returns true when this objects class delete forbidden response has a 5xx status code

func (*ObjectsClassDeleteForbidden) IsSuccess added in v1.18.0

func (o *ObjectsClassDeleteForbidden) IsSuccess() bool

IsSuccess returns true when this objects class delete forbidden response has a 2xx status code

func (*ObjectsClassDeleteForbidden) String added in v1.18.0

func (o *ObjectsClassDeleteForbidden) String() string

type ObjectsClassDeleteInternalServerError

type ObjectsClassDeleteInternalServerError struct {
	Payload *models.ErrorResponse
}

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

An error has occurred while trying to fulfill the request. Most likely the ErrorResponse will contain more information about the error.

func NewObjectsClassDeleteInternalServerError

func NewObjectsClassDeleteInternalServerError() *ObjectsClassDeleteInternalServerError

NewObjectsClassDeleteInternalServerError creates a ObjectsClassDeleteInternalServerError with default headers values

func (*ObjectsClassDeleteInternalServerError) Code added in v1.18.0

Code gets the status code for the objects class delete internal server error response

func (*ObjectsClassDeleteInternalServerError) Error

func (*ObjectsClassDeleteInternalServerError) GetPayload

func (*ObjectsClassDeleteInternalServerError) IsClientError added in v1.18.0

func (o *ObjectsClassDeleteInternalServerError) IsClientError() bool

IsClientError returns true when this objects class delete internal server error response has a 4xx status code

func (*ObjectsClassDeleteInternalServerError) IsCode added in v1.18.0

IsCode returns true when this objects class delete internal server error response a status code equal to that given

func (*ObjectsClassDeleteInternalServerError) IsRedirect added in v1.18.0

IsRedirect returns true when this objects class delete internal server error response has a 3xx status code

func (*ObjectsClassDeleteInternalServerError) IsServerError added in v1.18.0

func (o *ObjectsClassDeleteInternalServerError) IsServerError() bool

IsServerError returns true when this objects class delete internal server error response has a 5xx status code

func (*ObjectsClassDeleteInternalServerError) IsSuccess added in v1.18.0

IsSuccess returns true when this objects class delete internal server error response has a 2xx status code

func (*ObjectsClassDeleteInternalServerError) String added in v1.18.0

type ObjectsClassDeleteNoContent

type ObjectsClassDeleteNoContent struct {
}

ObjectsClassDeleteNoContent describes a response with status code 204, with default header values.

Successfully deleted.

func NewObjectsClassDeleteNoContent

func NewObjectsClassDeleteNoContent() *ObjectsClassDeleteNoContent

NewObjectsClassDeleteNoContent creates a ObjectsClassDeleteNoContent with default headers values

func (*ObjectsClassDeleteNoContent) Code added in v1.18.0

func (o *ObjectsClassDeleteNoContent) Code() int

Code gets the status code for the objects class delete no content response

func (*ObjectsClassDeleteNoContent) Error

func (*ObjectsClassDeleteNoContent) IsClientError added in v1.18.0

func (o *ObjectsClassDeleteNoContent) IsClientError() bool

IsClientError returns true when this objects class delete no content response has a 4xx status code

func (*ObjectsClassDeleteNoContent) IsCode added in v1.18.0

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

IsCode returns true when this objects class delete no content response a status code equal to that given

func (*ObjectsClassDeleteNoContent) IsRedirect added in v1.18.0

func (o *ObjectsClassDeleteNoContent) IsRedirect() bool

IsRedirect returns true when this objects class delete no content response has a 3xx status code

func (*ObjectsClassDeleteNoContent) IsServerError added in v1.18.0

func (o *ObjectsClassDeleteNoContent) IsServerError() bool

IsServerError returns true when this objects class delete no content response has a 5xx status code

func (*ObjectsClassDeleteNoContent) IsSuccess added in v1.18.0

func (o *ObjectsClassDeleteNoContent) IsSuccess() bool

IsSuccess returns true when this objects class delete no content response has a 2xx status code

func (*ObjectsClassDeleteNoContent) String added in v1.18.0

func (o *ObjectsClassDeleteNoContent) String() string

type ObjectsClassDeleteNotFound

type ObjectsClassDeleteNotFound struct {
}

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

Successful query result but no resource was found.

func NewObjectsClassDeleteNotFound

func NewObjectsClassDeleteNotFound() *ObjectsClassDeleteNotFound

NewObjectsClassDeleteNotFound creates a ObjectsClassDeleteNotFound with default headers values

func (*ObjectsClassDeleteNotFound) Code added in v1.18.0

func (o *ObjectsClassDeleteNotFound) Code() int

Code gets the status code for the objects class delete not found response

func (*ObjectsClassDeleteNotFound) Error

func (*ObjectsClassDeleteNotFound) IsClientError added in v1.18.0

func (o *ObjectsClassDeleteNotFound) IsClientError() bool

IsClientError returns true when this objects class delete not found response has a 4xx status code

func (*ObjectsClassDeleteNotFound) IsCode added in v1.18.0

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

IsCode returns true when this objects class delete not found response a status code equal to that given

func (*ObjectsClassDeleteNotFound) IsRedirect added in v1.18.0

func (o *ObjectsClassDeleteNotFound) IsRedirect() bool

IsRedirect returns true when this objects class delete not found response has a 3xx status code

func (*ObjectsClassDeleteNotFound) IsServerError added in v1.18.0

func (o *ObjectsClassDeleteNotFound) IsServerError() bool

IsServerError returns true when this objects class delete not found response has a 5xx status code

func (*ObjectsClassDeleteNotFound) IsSuccess added in v1.18.0

func (o *ObjectsClassDeleteNotFound) IsSuccess() bool

IsSuccess returns true when this objects class delete not found response has a 2xx status code

func (*ObjectsClassDeleteNotFound) String added in v1.18.0

func (o *ObjectsClassDeleteNotFound) String() string

type ObjectsClassDeleteParams

type ObjectsClassDeleteParams struct {

	// ClassName.
	ClassName string

	/* ConsistencyLevel.

	   Determines how many replicas must acknowledge a request before it is considered successful
	*/
	ConsistencyLevel *string

	/* ID.

	   Unique ID of the Object.

	   Format: uuid
	*/
	ID strfmt.UUID

	/* Tenant.

	   Specifies the tenant in a request targeting a multi-tenant class
	*/
	Tenant *string

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

ObjectsClassDeleteParams contains all the parameters to send to the API endpoint

for the objects class delete operation.

Typically these are written to a http.Request.

func NewObjectsClassDeleteParams

func NewObjectsClassDeleteParams() *ObjectsClassDeleteParams

NewObjectsClassDeleteParams creates a new ObjectsClassDeleteParams 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 NewObjectsClassDeleteParamsWithContext

func NewObjectsClassDeleteParamsWithContext(ctx context.Context) *ObjectsClassDeleteParams

NewObjectsClassDeleteParamsWithContext creates a new ObjectsClassDeleteParams object with the ability to set a context for a request.

func NewObjectsClassDeleteParamsWithHTTPClient

func NewObjectsClassDeleteParamsWithHTTPClient(client *http.Client) *ObjectsClassDeleteParams

NewObjectsClassDeleteParamsWithHTTPClient creates a new ObjectsClassDeleteParams object with the ability to set a custom HTTPClient for a request.

func NewObjectsClassDeleteParamsWithTimeout

func NewObjectsClassDeleteParamsWithTimeout(timeout time.Duration) *ObjectsClassDeleteParams

NewObjectsClassDeleteParamsWithTimeout creates a new ObjectsClassDeleteParams object with the ability to set a timeout on a request.

func (*ObjectsClassDeleteParams) SetClassName

func (o *ObjectsClassDeleteParams) SetClassName(className string)

SetClassName adds the className to the objects class delete params

func (*ObjectsClassDeleteParams) SetConsistencyLevel added in v1.18.0

func (o *ObjectsClassDeleteParams) SetConsistencyLevel(consistencyLevel *string)

SetConsistencyLevel adds the consistencyLevel to the objects class delete params

func (*ObjectsClassDeleteParams) SetContext

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

SetContext adds the context to the objects class delete params

func (*ObjectsClassDeleteParams) SetDefaults added in v1.18.0

func (o *ObjectsClassDeleteParams) SetDefaults()

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

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

func (*ObjectsClassDeleteParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the objects class delete params

func (*ObjectsClassDeleteParams) SetID

func (o *ObjectsClassDeleteParams) SetID(id strfmt.UUID)

SetID adds the id to the objects class delete params

func (*ObjectsClassDeleteParams) SetTenant added in v1.20.0

func (o *ObjectsClassDeleteParams) SetTenant(tenant *string)

SetTenant adds the tenant to the objects class delete params

func (*ObjectsClassDeleteParams) SetTimeout

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

SetTimeout adds the timeout to the objects class delete params

func (*ObjectsClassDeleteParams) WithClassName

func (o *ObjectsClassDeleteParams) WithClassName(className string) *ObjectsClassDeleteParams

WithClassName adds the className to the objects class delete params

func (*ObjectsClassDeleteParams) WithConsistencyLevel added in v1.18.0

func (o *ObjectsClassDeleteParams) WithConsistencyLevel(consistencyLevel *string) *ObjectsClassDeleteParams

WithConsistencyLevel adds the consistencyLevel to the objects class delete params

func (*ObjectsClassDeleteParams) WithContext

WithContext adds the context to the objects class delete params

func (*ObjectsClassDeleteParams) WithDefaults added in v1.18.0

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

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

func (*ObjectsClassDeleteParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the objects class delete params

func (*ObjectsClassDeleteParams) WithID

WithID adds the id to the objects class delete params

func (*ObjectsClassDeleteParams) WithTenant added in v1.20.0

WithTenant adds the tenant to the objects class delete params

func (*ObjectsClassDeleteParams) WithTimeout

WithTimeout adds the timeout to the objects class delete params

func (*ObjectsClassDeleteParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ObjectsClassDeleteReader

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

ObjectsClassDeleteReader is a Reader for the ObjectsClassDelete structure.

func (*ObjectsClassDeleteReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ObjectsClassDeleteUnauthorized

type ObjectsClassDeleteUnauthorized struct {
}

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

Unauthorized or invalid credentials.

func NewObjectsClassDeleteUnauthorized

func NewObjectsClassDeleteUnauthorized() *ObjectsClassDeleteUnauthorized

NewObjectsClassDeleteUnauthorized creates a ObjectsClassDeleteUnauthorized with default headers values

func (*ObjectsClassDeleteUnauthorized) Code added in v1.18.0

Code gets the status code for the objects class delete unauthorized response

func (*ObjectsClassDeleteUnauthorized) Error

func (*ObjectsClassDeleteUnauthorized) IsClientError added in v1.18.0

func (o *ObjectsClassDeleteUnauthorized) IsClientError() bool

IsClientError returns true when this objects class delete unauthorized response has a 4xx status code

func (*ObjectsClassDeleteUnauthorized) IsCode added in v1.18.0

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

IsCode returns true when this objects class delete unauthorized response a status code equal to that given

func (*ObjectsClassDeleteUnauthorized) IsRedirect added in v1.18.0

func (o *ObjectsClassDeleteUnauthorized) IsRedirect() bool

IsRedirect returns true when this objects class delete unauthorized response has a 3xx status code

func (*ObjectsClassDeleteUnauthorized) IsServerError added in v1.18.0

func (o *ObjectsClassDeleteUnauthorized) IsServerError() bool

IsServerError returns true when this objects class delete unauthorized response has a 5xx status code

func (*ObjectsClassDeleteUnauthorized) IsSuccess added in v1.18.0

func (o *ObjectsClassDeleteUnauthorized) IsSuccess() bool

IsSuccess returns true when this objects class delete unauthorized response has a 2xx status code

func (*ObjectsClassDeleteUnauthorized) String added in v1.18.0

type ObjectsClassDeleteUnprocessableEntity added in v1.20.1

type ObjectsClassDeleteUnprocessableEntity struct {
	Payload *models.ErrorResponse
}

ObjectsClassDeleteUnprocessableEntity describes a response with status code 422, with default header values.

Request is well-formed (i.e., syntactically correct), but erroneous.

func NewObjectsClassDeleteUnprocessableEntity added in v1.20.1

func NewObjectsClassDeleteUnprocessableEntity() *ObjectsClassDeleteUnprocessableEntity

NewObjectsClassDeleteUnprocessableEntity creates a ObjectsClassDeleteUnprocessableEntity with default headers values

func (*ObjectsClassDeleteUnprocessableEntity) Code added in v1.20.1

Code gets the status code for the objects class delete unprocessable entity response

func (*ObjectsClassDeleteUnprocessableEntity) Error added in v1.20.1

func (*ObjectsClassDeleteUnprocessableEntity) GetPayload added in v1.20.1

func (*ObjectsClassDeleteUnprocessableEntity) IsClientError added in v1.20.1

func (o *ObjectsClassDeleteUnprocessableEntity) IsClientError() bool

IsClientError returns true when this objects class delete unprocessable entity response has a 4xx status code

func (*ObjectsClassDeleteUnprocessableEntity) IsCode added in v1.20.1

IsCode returns true when this objects class delete unprocessable entity response a status code equal to that given

func (*ObjectsClassDeleteUnprocessableEntity) IsRedirect added in v1.20.1

IsRedirect returns true when this objects class delete unprocessable entity response has a 3xx status code

func (*ObjectsClassDeleteUnprocessableEntity) IsServerError added in v1.20.1

func (o *ObjectsClassDeleteUnprocessableEntity) IsServerError() bool

IsServerError returns true when this objects class delete unprocessable entity response has a 5xx status code

func (*ObjectsClassDeleteUnprocessableEntity) IsSuccess added in v1.20.1

IsSuccess returns true when this objects class delete unprocessable entity response has a 2xx status code

func (*ObjectsClassDeleteUnprocessableEntity) String added in v1.20.1

type ObjectsClassGetBadRequest

type ObjectsClassGetBadRequest struct {
	Payload *models.ErrorResponse
}

ObjectsClassGetBadRequest describes a response with status code 400, with default header values.

Malformed request.

func NewObjectsClassGetBadRequest

func NewObjectsClassGetBadRequest() *ObjectsClassGetBadRequest

NewObjectsClassGetBadRequest creates a ObjectsClassGetBadRequest with default headers values

func (*ObjectsClassGetBadRequest) Code added in v1.18.0

func (o *ObjectsClassGetBadRequest) Code() int

Code gets the status code for the objects class get bad request response

func (*ObjectsClassGetBadRequest) Error

func (o *ObjectsClassGetBadRequest) Error() string

func (*ObjectsClassGetBadRequest) GetPayload

func (*ObjectsClassGetBadRequest) IsClientError added in v1.18.0

func (o *ObjectsClassGetBadRequest) IsClientError() bool

IsClientError returns true when this objects class get bad request response has a 4xx status code

func (*ObjectsClassGetBadRequest) IsCode added in v1.18.0

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

IsCode returns true when this objects class get bad request response a status code equal to that given

func (*ObjectsClassGetBadRequest) IsRedirect added in v1.18.0

func (o *ObjectsClassGetBadRequest) IsRedirect() bool

IsRedirect returns true when this objects class get bad request response has a 3xx status code

func (*ObjectsClassGetBadRequest) IsServerError added in v1.18.0

func (o *ObjectsClassGetBadRequest) IsServerError() bool

IsServerError returns true when this objects class get bad request response has a 5xx status code

func (*ObjectsClassGetBadRequest) IsSuccess added in v1.18.0

func (o *ObjectsClassGetBadRequest) IsSuccess() bool

IsSuccess returns true when this objects class get bad request response has a 2xx status code

func (*ObjectsClassGetBadRequest) String added in v1.18.0

func (o *ObjectsClassGetBadRequest) String() string

type ObjectsClassGetForbidden

type ObjectsClassGetForbidden struct {
	Payload *models.ErrorResponse
}

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

Forbidden

func NewObjectsClassGetForbidden

func NewObjectsClassGetForbidden() *ObjectsClassGetForbidden

NewObjectsClassGetForbidden creates a ObjectsClassGetForbidden with default headers values

func (*ObjectsClassGetForbidden) Code added in v1.18.0

func (o *ObjectsClassGetForbidden) Code() int

Code gets the status code for the objects class get forbidden response

func (*ObjectsClassGetForbidden) Error

func (o *ObjectsClassGetForbidden) Error() string

func (*ObjectsClassGetForbidden) GetPayload

func (*ObjectsClassGetForbidden) IsClientError added in v1.18.0

func (o *ObjectsClassGetForbidden) IsClientError() bool

IsClientError returns true when this objects class get forbidden response has a 4xx status code

func (*ObjectsClassGetForbidden) IsCode added in v1.18.0

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

IsCode returns true when this objects class get forbidden response a status code equal to that given

func (*ObjectsClassGetForbidden) IsRedirect added in v1.18.0

func (o *ObjectsClassGetForbidden) IsRedirect() bool

IsRedirect returns true when this objects class get forbidden response has a 3xx status code

func (*ObjectsClassGetForbidden) IsServerError added in v1.18.0

func (o *ObjectsClassGetForbidden) IsServerError() bool

IsServerError returns true when this objects class get forbidden response has a 5xx status code

func (*ObjectsClassGetForbidden) IsSuccess added in v1.18.0

func (o *ObjectsClassGetForbidden) IsSuccess() bool

IsSuccess returns true when this objects class get forbidden response has a 2xx status code

func (*ObjectsClassGetForbidden) String added in v1.18.0

func (o *ObjectsClassGetForbidden) String() string

type ObjectsClassGetInternalServerError

type ObjectsClassGetInternalServerError struct {
	Payload *models.ErrorResponse
}

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

An error has occurred while trying to fulfill the request. Most likely the ErrorResponse will contain more information about the error.

func NewObjectsClassGetInternalServerError

func NewObjectsClassGetInternalServerError() *ObjectsClassGetInternalServerError

NewObjectsClassGetInternalServerError creates a ObjectsClassGetInternalServerError with default headers values

func (*ObjectsClassGetInternalServerError) Code added in v1.18.0

Code gets the status code for the objects class get internal server error response

func (*ObjectsClassGetInternalServerError) Error

func (*ObjectsClassGetInternalServerError) GetPayload

func (*ObjectsClassGetInternalServerError) IsClientError added in v1.18.0

func (o *ObjectsClassGetInternalServerError) IsClientError() bool

IsClientError returns true when this objects class get internal server error response has a 4xx status code

func (*ObjectsClassGetInternalServerError) IsCode added in v1.18.0

IsCode returns true when this objects class get internal server error response a status code equal to that given

func (*ObjectsClassGetInternalServerError) IsRedirect added in v1.18.0

func (o *ObjectsClassGetInternalServerError) IsRedirect() bool

IsRedirect returns true when this objects class get internal server error response has a 3xx status code

func (*ObjectsClassGetInternalServerError) IsServerError added in v1.18.0

func (o *ObjectsClassGetInternalServerError) IsServerError() bool

IsServerError returns true when this objects class get internal server error response has a 5xx status code

func (*ObjectsClassGetInternalServerError) IsSuccess added in v1.18.0

IsSuccess returns true when this objects class get internal server error response has a 2xx status code

func (*ObjectsClassGetInternalServerError) String added in v1.18.0

type ObjectsClassGetNotFound

type ObjectsClassGetNotFound struct {
}

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

Successful query result but no resource was found.

func NewObjectsClassGetNotFound

func NewObjectsClassGetNotFound() *ObjectsClassGetNotFound

NewObjectsClassGetNotFound creates a ObjectsClassGetNotFound with default headers values

func (*ObjectsClassGetNotFound) Code added in v1.18.0

func (o *ObjectsClassGetNotFound) Code() int

Code gets the status code for the objects class get not found response

func (*ObjectsClassGetNotFound) Error

func (o *ObjectsClassGetNotFound) Error() string

func (*ObjectsClassGetNotFound) IsClientError added in v1.18.0

func (o *ObjectsClassGetNotFound) IsClientError() bool

IsClientError returns true when this objects class get not found response has a 4xx status code

func (*ObjectsClassGetNotFound) IsCode added in v1.18.0

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

IsCode returns true when this objects class get not found response a status code equal to that given

func (*ObjectsClassGetNotFound) IsRedirect added in v1.18.0

func (o *ObjectsClassGetNotFound) IsRedirect() bool

IsRedirect returns true when this objects class get not found response has a 3xx status code

func (*ObjectsClassGetNotFound) IsServerError added in v1.18.0

func (o *ObjectsClassGetNotFound) IsServerError() bool

IsServerError returns true when this objects class get not found response has a 5xx status code

func (*ObjectsClassGetNotFound) IsSuccess added in v1.18.0

func (o *ObjectsClassGetNotFound) IsSuccess() bool

IsSuccess returns true when this objects class get not found response has a 2xx status code

func (*ObjectsClassGetNotFound) String added in v1.18.0

func (o *ObjectsClassGetNotFound) String() string

type ObjectsClassGetOK

type ObjectsClassGetOK struct {
	Payload *models.Object
}

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

Successful response.

func NewObjectsClassGetOK

func NewObjectsClassGetOK() *ObjectsClassGetOK

NewObjectsClassGetOK creates a ObjectsClassGetOK with default headers values

func (*ObjectsClassGetOK) Code added in v1.18.0

func (o *ObjectsClassGetOK) Code() int

Code gets the status code for the objects class get o k response

func (*ObjectsClassGetOK) Error

func (o *ObjectsClassGetOK) Error() string

func (*ObjectsClassGetOK) GetPayload

func (o *ObjectsClassGetOK) GetPayload() *models.Object

func (*ObjectsClassGetOK) IsClientError added in v1.18.0

func (o *ObjectsClassGetOK) IsClientError() bool

IsClientError returns true when this objects class get o k response has a 4xx status code

func (*ObjectsClassGetOK) IsCode added in v1.18.0

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

IsCode returns true when this objects class get o k response a status code equal to that given

func (*ObjectsClassGetOK) IsRedirect added in v1.18.0

func (o *ObjectsClassGetOK) IsRedirect() bool

IsRedirect returns true when this objects class get o k response has a 3xx status code

func (*ObjectsClassGetOK) IsServerError added in v1.18.0

func (o *ObjectsClassGetOK) IsServerError() bool

IsServerError returns true when this objects class get o k response has a 5xx status code

func (*ObjectsClassGetOK) IsSuccess added in v1.18.0

func (o *ObjectsClassGetOK) IsSuccess() bool

IsSuccess returns true when this objects class get o k response has a 2xx status code

func (*ObjectsClassGetOK) String added in v1.18.0

func (o *ObjectsClassGetOK) String() string

type ObjectsClassGetParams

type ObjectsClassGetParams struct {

	// ClassName.
	ClassName string

	/* ConsistencyLevel.

	   Determines how many replicas must acknowledge a request before it is considered successful
	*/
	ConsistencyLevel *string

	/* ID.

	   Unique ID of the Object.

	   Format: uuid
	*/
	ID strfmt.UUID

	/* Include.

	   Include additional information, such as classification infos. Allowed values include: classification, vector, interpretation
	*/
	Include *string

	/* NodeName.

	   The target node which should fulfill the request
	*/
	NodeName *string

	/* Tenant.

	   Specifies the tenant in a request targeting a multi-tenant class
	*/
	Tenant *string

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

ObjectsClassGetParams contains all the parameters to send to the API endpoint

for the objects class get operation.

Typically these are written to a http.Request.

func NewObjectsClassGetParams

func NewObjectsClassGetParams() *ObjectsClassGetParams

NewObjectsClassGetParams creates a new ObjectsClassGetParams 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 NewObjectsClassGetParamsWithContext

func NewObjectsClassGetParamsWithContext(ctx context.Context) *ObjectsClassGetParams

NewObjectsClassGetParamsWithContext creates a new ObjectsClassGetParams object with the ability to set a context for a request.

func NewObjectsClassGetParamsWithHTTPClient

func NewObjectsClassGetParamsWithHTTPClient(client *http.Client) *ObjectsClassGetParams

NewObjectsClassGetParamsWithHTTPClient creates a new ObjectsClassGetParams object with the ability to set a custom HTTPClient for a request.

func NewObjectsClassGetParamsWithTimeout

func NewObjectsClassGetParamsWithTimeout(timeout time.Duration) *ObjectsClassGetParams

NewObjectsClassGetParamsWithTimeout creates a new ObjectsClassGetParams object with the ability to set a timeout on a request.

func (*ObjectsClassGetParams) SetClassName

func (o *ObjectsClassGetParams) SetClassName(className string)

SetClassName adds the className to the objects class get params

func (*ObjectsClassGetParams) SetConsistencyLevel

func (o *ObjectsClassGetParams) SetConsistencyLevel(consistencyLevel *string)

SetConsistencyLevel adds the consistencyLevel to the objects class get params

func (*ObjectsClassGetParams) SetContext

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

SetContext adds the context to the objects class get params

func (*ObjectsClassGetParams) SetDefaults added in v1.18.0

func (o *ObjectsClassGetParams) SetDefaults()

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

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

func (*ObjectsClassGetParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the objects class get params

func (*ObjectsClassGetParams) SetID

func (o *ObjectsClassGetParams) SetID(id strfmt.UUID)

SetID adds the id to the objects class get params

func (*ObjectsClassGetParams) SetInclude

func (o *ObjectsClassGetParams) SetInclude(include *string)

SetInclude adds the include to the objects class get params

func (*ObjectsClassGetParams) SetNodeName

func (o *ObjectsClassGetParams) SetNodeName(nodeName *string)

SetNodeName adds the nodeName to the objects class get params

func (*ObjectsClassGetParams) SetTenant added in v1.20.0

func (o *ObjectsClassGetParams) SetTenant(tenant *string)

SetTenant adds the tenant to the objects class get params

func (*ObjectsClassGetParams) SetTimeout

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

SetTimeout adds the timeout to the objects class get params

func (*ObjectsClassGetParams) WithClassName

func (o *ObjectsClassGetParams) WithClassName(className string) *ObjectsClassGetParams

WithClassName adds the className to the objects class get params

func (*ObjectsClassGetParams) WithConsistencyLevel

func (o *ObjectsClassGetParams) WithConsistencyLevel(consistencyLevel *string) *ObjectsClassGetParams

WithConsistencyLevel adds the consistencyLevel to the objects class get params

func (*ObjectsClassGetParams) WithContext

WithContext adds the context to the objects class get params

func (*ObjectsClassGetParams) WithDefaults added in v1.18.0

func (o *ObjectsClassGetParams) WithDefaults() *ObjectsClassGetParams

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

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

func (*ObjectsClassGetParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the objects class get params

func (*ObjectsClassGetParams) WithID

WithID adds the id to the objects class get params

func (*ObjectsClassGetParams) WithInclude

func (o *ObjectsClassGetParams) WithInclude(include *string) *ObjectsClassGetParams

WithInclude adds the include to the objects class get params

func (*ObjectsClassGetParams) WithNodeName

func (o *ObjectsClassGetParams) WithNodeName(nodeName *string) *ObjectsClassGetParams

WithNodeName adds the nodeName to the objects class get params

func (*ObjectsClassGetParams) WithTenant added in v1.20.0

func (o *ObjectsClassGetParams) WithTenant(tenant *string) *ObjectsClassGetParams

WithTenant adds the tenant to the objects class get params

func (*ObjectsClassGetParams) WithTimeout

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

WithTimeout adds the timeout to the objects class get params

func (*ObjectsClassGetParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type ObjectsClassGetReader

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

ObjectsClassGetReader is a Reader for the ObjectsClassGet structure.

func (*ObjectsClassGetReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ObjectsClassGetUnauthorized

type ObjectsClassGetUnauthorized struct {
}

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

Unauthorized or invalid credentials.

func NewObjectsClassGetUnauthorized

func NewObjectsClassGetUnauthorized() *ObjectsClassGetUnauthorized

NewObjectsClassGetUnauthorized creates a ObjectsClassGetUnauthorized with default headers values

func (*ObjectsClassGetUnauthorized) Code added in v1.18.0

func (o *ObjectsClassGetUnauthorized) Code() int

Code gets the status code for the objects class get unauthorized response

func (*ObjectsClassGetUnauthorized) Error

func (*ObjectsClassGetUnauthorized) IsClientError added in v1.18.0

func (o *ObjectsClassGetUnauthorized) IsClientError() bool

IsClientError returns true when this objects class get unauthorized response has a 4xx status code

func (*ObjectsClassGetUnauthorized) IsCode added in v1.18.0

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

IsCode returns true when this objects class get unauthorized response a status code equal to that given

func (*ObjectsClassGetUnauthorized) IsRedirect added in v1.18.0

func (o *ObjectsClassGetUnauthorized) IsRedirect() bool

IsRedirect returns true when this objects class get unauthorized response has a 3xx status code

func (*ObjectsClassGetUnauthorized) IsServerError added in v1.18.0

func (o *ObjectsClassGetUnauthorized) IsServerError() bool

IsServerError returns true when this objects class get unauthorized response has a 5xx status code

func (*ObjectsClassGetUnauthorized) IsSuccess added in v1.18.0

func (o *ObjectsClassGetUnauthorized) IsSuccess() bool

IsSuccess returns true when this objects class get unauthorized response has a 2xx status code

func (*ObjectsClassGetUnauthorized) String added in v1.18.0

func (o *ObjectsClassGetUnauthorized) String() string

type ObjectsClassGetUnprocessableEntity added in v1.20.1

type ObjectsClassGetUnprocessableEntity struct {
	Payload *models.ErrorResponse
}

ObjectsClassGetUnprocessableEntity describes a response with status code 422, with default header values.

Request is well-formed (i.e., syntactically correct), but erroneous.

func NewObjectsClassGetUnprocessableEntity added in v1.20.1

func NewObjectsClassGetUnprocessableEntity() *ObjectsClassGetUnprocessableEntity

NewObjectsClassGetUnprocessableEntity creates a ObjectsClassGetUnprocessableEntity with default headers values

func (*ObjectsClassGetUnprocessableEntity) Code added in v1.20.1

Code gets the status code for the objects class get unprocessable entity response

func (*ObjectsClassGetUnprocessableEntity) Error added in v1.20.1

func (*ObjectsClassGetUnprocessableEntity) GetPayload added in v1.20.1

func (*ObjectsClassGetUnprocessableEntity) IsClientError added in v1.20.1

func (o *ObjectsClassGetUnprocessableEntity) IsClientError() bool

IsClientError returns true when this objects class get unprocessable entity response has a 4xx status code

func (*ObjectsClassGetUnprocessableEntity) IsCode added in v1.20.1

IsCode returns true when this objects class get unprocessable entity response a status code equal to that given

func (*ObjectsClassGetUnprocessableEntity) IsRedirect added in v1.20.1

func (o *ObjectsClassGetUnprocessableEntity) IsRedirect() bool

IsRedirect returns true when this objects class get unprocessable entity response has a 3xx status code

func (*ObjectsClassGetUnprocessableEntity) IsServerError added in v1.20.1

func (o *ObjectsClassGetUnprocessableEntity) IsServerError() bool

IsServerError returns true when this objects class get unprocessable entity response has a 5xx status code

func (*ObjectsClassGetUnprocessableEntity) IsSuccess added in v1.20.1

IsSuccess returns true when this objects class get unprocessable entity response has a 2xx status code

func (*ObjectsClassGetUnprocessableEntity) String added in v1.20.1

type ObjectsClassHeadForbidden

type ObjectsClassHeadForbidden struct {
	Payload *models.ErrorResponse
}

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

Forbidden

func NewObjectsClassHeadForbidden

func NewObjectsClassHeadForbidden() *ObjectsClassHeadForbidden

NewObjectsClassHeadForbidden creates a ObjectsClassHeadForbidden with default headers values

func (*ObjectsClassHeadForbidden) Code added in v1.18.0

func (o *ObjectsClassHeadForbidden) Code() int

Code gets the status code for the objects class head forbidden response

func (*ObjectsClassHeadForbidden) Error

func (o *ObjectsClassHeadForbidden) Error() string

func (*ObjectsClassHeadForbidden) GetPayload

func (*ObjectsClassHeadForbidden) IsClientError added in v1.18.0

func (o *ObjectsClassHeadForbidden) IsClientError() bool

IsClientError returns true when this objects class head forbidden response has a 4xx status code

func (*ObjectsClassHeadForbidden) IsCode added in v1.18.0

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

IsCode returns true when this objects class head forbidden response a status code equal to that given

func (*ObjectsClassHeadForbidden) IsRedirect added in v1.18.0

func (o *ObjectsClassHeadForbidden) IsRedirect() bool

IsRedirect returns true when this objects class head forbidden response has a 3xx status code

func (*ObjectsClassHeadForbidden) IsServerError added in v1.18.0

func (o *ObjectsClassHeadForbidden) IsServerError() bool

IsServerError returns true when this objects class head forbidden response has a 5xx status code

func (*ObjectsClassHeadForbidden) IsSuccess added in v1.18.0

func (o *ObjectsClassHeadForbidden) IsSuccess() bool

IsSuccess returns true when this objects class head forbidden response has a 2xx status code

func (*ObjectsClassHeadForbidden) String added in v1.18.0

func (o *ObjectsClassHeadForbidden) String() string

type ObjectsClassHeadInternalServerError

type ObjectsClassHeadInternalServerError struct {
	Payload *models.ErrorResponse
}

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

An error has occurred while trying to fulfill the request. Most likely the ErrorResponse will contain more information about the error.

func NewObjectsClassHeadInternalServerError

func NewObjectsClassHeadInternalServerError() *ObjectsClassHeadInternalServerError

NewObjectsClassHeadInternalServerError creates a ObjectsClassHeadInternalServerError with default headers values

func (*ObjectsClassHeadInternalServerError) Code added in v1.18.0

Code gets the status code for the objects class head internal server error response

func (*ObjectsClassHeadInternalServerError) Error

func (*ObjectsClassHeadInternalServerError) GetPayload

func (*ObjectsClassHeadInternalServerError) IsClientError added in v1.18.0

func (o *ObjectsClassHeadInternalServerError) IsClientError() bool

IsClientError returns true when this objects class head internal server error response has a 4xx status code

func (*ObjectsClassHeadInternalServerError) IsCode added in v1.18.0

IsCode returns true when this objects class head internal server error response a status code equal to that given

func (*ObjectsClassHeadInternalServerError) IsRedirect added in v1.18.0

func (o *ObjectsClassHeadInternalServerError) IsRedirect() bool

IsRedirect returns true when this objects class head internal server error response has a 3xx status code

func (*ObjectsClassHeadInternalServerError) IsServerError added in v1.18.0

func (o *ObjectsClassHeadInternalServerError) IsServerError() bool

IsServerError returns true when this objects class head internal server error response has a 5xx status code

func (*ObjectsClassHeadInternalServerError) IsSuccess added in v1.18.0

IsSuccess returns true when this objects class head internal server error response has a 2xx status code

func (*ObjectsClassHeadInternalServerError) String added in v1.18.0

type ObjectsClassHeadNoContent

type ObjectsClassHeadNoContent struct {
}

ObjectsClassHeadNoContent describes a response with status code 204, with default header values.

Object exists.

func NewObjectsClassHeadNoContent

func NewObjectsClassHeadNoContent() *ObjectsClassHeadNoContent

NewObjectsClassHeadNoContent creates a ObjectsClassHeadNoContent with default headers values

func (*ObjectsClassHeadNoContent) Code added in v1.18.0

func (o *ObjectsClassHeadNoContent) Code() int

Code gets the status code for the objects class head no content response

func (*ObjectsClassHeadNoContent) Error

func (o *ObjectsClassHeadNoContent) Error() string

func (*ObjectsClassHeadNoContent) IsClientError added in v1.18.0

func (o *ObjectsClassHeadNoContent) IsClientError() bool

IsClientError returns true when this objects class head no content response has a 4xx status code

func (*ObjectsClassHeadNoContent) IsCode added in v1.18.0

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

IsCode returns true when this objects class head no content response a status code equal to that given

func (*ObjectsClassHeadNoContent) IsRedirect added in v1.18.0

func (o *ObjectsClassHeadNoContent) IsRedirect() bool

IsRedirect returns true when this objects class head no content response has a 3xx status code

func (*ObjectsClassHeadNoContent) IsServerError added in v1.18.0

func (o *ObjectsClassHeadNoContent) IsServerError() bool

IsServerError returns true when this objects class head no content response has a 5xx status code

func (*ObjectsClassHeadNoContent) IsSuccess added in v1.18.0

func (o *ObjectsClassHeadNoContent) IsSuccess() bool

IsSuccess returns true when this objects class head no content response has a 2xx status code

func (*ObjectsClassHeadNoContent) String added in v1.18.0

func (o *ObjectsClassHeadNoContent) String() string

type ObjectsClassHeadNotFound

type ObjectsClassHeadNotFound struct {
}

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

Object doesn't exist.

func NewObjectsClassHeadNotFound

func NewObjectsClassHeadNotFound() *ObjectsClassHeadNotFound

NewObjectsClassHeadNotFound creates a ObjectsClassHeadNotFound with default headers values

func (*ObjectsClassHeadNotFound) Code added in v1.18.0

func (o *ObjectsClassHeadNotFound) Code() int

Code gets the status code for the objects class head not found response

func (*ObjectsClassHeadNotFound) Error

func (o *ObjectsClassHeadNotFound) Error() string

func (*ObjectsClassHeadNotFound) IsClientError added in v1.18.0

func (o *ObjectsClassHeadNotFound) IsClientError() bool

IsClientError returns true when this objects class head not found response has a 4xx status code

func (*ObjectsClassHeadNotFound) IsCode added in v1.18.0

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

IsCode returns true when this objects class head not found response a status code equal to that given

func (*ObjectsClassHeadNotFound) IsRedirect added in v1.18.0

func (o *ObjectsClassHeadNotFound) IsRedirect() bool

IsRedirect returns true when this objects class head not found response has a 3xx status code

func (*ObjectsClassHeadNotFound) IsServerError added in v1.18.0

func (o *ObjectsClassHeadNotFound) IsServerError() bool

IsServerError returns true when this objects class head not found response has a 5xx status code

func (*ObjectsClassHeadNotFound) IsSuccess added in v1.18.0

func (o *ObjectsClassHeadNotFound) IsSuccess() bool

IsSuccess returns true when this objects class head not found response has a 2xx status code

func (*ObjectsClassHeadNotFound) String added in v1.18.0

func (o *ObjectsClassHeadNotFound) String() string

type ObjectsClassHeadParams

type ObjectsClassHeadParams struct {

	/* ClassName.

	   The class name as defined in the schema
	*/
	ClassName string

	/* ConsistencyLevel.

	   Determines how many replicas must acknowledge a request before it is considered successful
	*/
	ConsistencyLevel *string

	/* ID.

	   The uuid of the data object

	   Format: uuid
	*/
	ID strfmt.UUID

	/* Tenant.

	   Specifies the tenant in a request targeting a multi-tenant class
	*/
	Tenant *string

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

ObjectsClassHeadParams contains all the parameters to send to the API endpoint

for the objects class head operation.

Typically these are written to a http.Request.

func NewObjectsClassHeadParams

func NewObjectsClassHeadParams() *ObjectsClassHeadParams

NewObjectsClassHeadParams creates a new ObjectsClassHeadParams 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 NewObjectsClassHeadParamsWithContext

func NewObjectsClassHeadParamsWithContext(ctx context.Context) *ObjectsClassHeadParams

NewObjectsClassHeadParamsWithContext creates a new ObjectsClassHeadParams object with the ability to set a context for a request.

func NewObjectsClassHeadParamsWithHTTPClient

func NewObjectsClassHeadParamsWithHTTPClient(client *http.Client) *ObjectsClassHeadParams

NewObjectsClassHeadParamsWithHTTPClient creates a new ObjectsClassHeadParams object with the ability to set a custom HTTPClient for a request.

func NewObjectsClassHeadParamsWithTimeout

func NewObjectsClassHeadParamsWithTimeout(timeout time.Duration) *ObjectsClassHeadParams

NewObjectsClassHeadParamsWithTimeout creates a new ObjectsClassHeadParams object with the ability to set a timeout on a request.

func (*ObjectsClassHeadParams) SetClassName

func (o *ObjectsClassHeadParams) SetClassName(className string)

SetClassName adds the className to the objects class head params

func (*ObjectsClassHeadParams) SetConsistencyLevel added in v1.18.0

func (o *ObjectsClassHeadParams) SetConsistencyLevel(consistencyLevel *string)

SetConsistencyLevel adds the consistencyLevel to the objects class head params

func (*ObjectsClassHeadParams) SetContext

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

SetContext adds the context to the objects class head params

func (*ObjectsClassHeadParams) SetDefaults added in v1.18.0

func (o *ObjectsClassHeadParams) SetDefaults()

SetDefaults hydrates default values in the objects class head params (not the query body).

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

func (*ObjectsClassHeadParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the objects class head params

func (*ObjectsClassHeadParams) SetID

func (o *ObjectsClassHeadParams) SetID(id strfmt.UUID)

SetID adds the id to the objects class head params

func (*ObjectsClassHeadParams) SetTenant added in v1.20.0

func (o *ObjectsClassHeadParams) SetTenant(tenant *string)

SetTenant adds the tenant to the objects class head params

func (*ObjectsClassHeadParams) SetTimeout

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

SetTimeout adds the timeout to the objects class head params

func (*ObjectsClassHeadParams) WithClassName

func (o *ObjectsClassHeadParams) WithClassName(className string) *ObjectsClassHeadParams

WithClassName adds the className to the objects class head params

func (*ObjectsClassHeadParams) WithConsistencyLevel added in v1.18.0

func (o *ObjectsClassHeadParams) WithConsistencyLevel(consistencyLevel *string) *ObjectsClassHeadParams

WithConsistencyLevel adds the consistencyLevel to the objects class head params

func (*ObjectsClassHeadParams) WithContext

WithContext adds the context to the objects class head params

func (*ObjectsClassHeadParams) WithDefaults added in v1.18.0

WithDefaults hydrates default values in the objects class head params (not the query body).

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

func (*ObjectsClassHeadParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the objects class head params

func (*ObjectsClassHeadParams) WithID

WithID adds the id to the objects class head params

func (*ObjectsClassHeadParams) WithTenant added in v1.20.0

func (o *ObjectsClassHeadParams) WithTenant(tenant *string) *ObjectsClassHeadParams

WithTenant adds the tenant to the objects class head params

func (*ObjectsClassHeadParams) WithTimeout

WithTimeout adds the timeout to the objects class head params

func (*ObjectsClassHeadParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ObjectsClassHeadReader

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

ObjectsClassHeadReader is a Reader for the ObjectsClassHead structure.

func (*ObjectsClassHeadReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ObjectsClassHeadUnauthorized

type ObjectsClassHeadUnauthorized struct {
}

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

Unauthorized or invalid credentials.

func NewObjectsClassHeadUnauthorized

func NewObjectsClassHeadUnauthorized() *ObjectsClassHeadUnauthorized

NewObjectsClassHeadUnauthorized creates a ObjectsClassHeadUnauthorized with default headers values

func (*ObjectsClassHeadUnauthorized) Code added in v1.18.0

Code gets the status code for the objects class head unauthorized response

func (*ObjectsClassHeadUnauthorized) Error

func (*ObjectsClassHeadUnauthorized) IsClientError added in v1.18.0

func (o *ObjectsClassHeadUnauthorized) IsClientError() bool

IsClientError returns true when this objects class head unauthorized response has a 4xx status code

func (*ObjectsClassHeadUnauthorized) IsCode added in v1.18.0

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

IsCode returns true when this objects class head unauthorized response a status code equal to that given

func (*ObjectsClassHeadUnauthorized) IsRedirect added in v1.18.0

func (o *ObjectsClassHeadUnauthorized) IsRedirect() bool

IsRedirect returns true when this objects class head unauthorized response has a 3xx status code

func (*ObjectsClassHeadUnauthorized) IsServerError added in v1.18.0

func (o *ObjectsClassHeadUnauthorized) IsServerError() bool

IsServerError returns true when this objects class head unauthorized response has a 5xx status code

func (*ObjectsClassHeadUnauthorized) IsSuccess added in v1.18.0

func (o *ObjectsClassHeadUnauthorized) IsSuccess() bool

IsSuccess returns true when this objects class head unauthorized response has a 2xx status code

func (*ObjectsClassHeadUnauthorized) String added in v1.18.0

type ObjectsClassHeadUnprocessableEntity added in v1.20.1

type ObjectsClassHeadUnprocessableEntity struct {
	Payload *models.ErrorResponse
}

ObjectsClassHeadUnprocessableEntity describes a response with status code 422, with default header values.

Request is well-formed (i.e., syntactically correct), but erroneous.

func NewObjectsClassHeadUnprocessableEntity added in v1.20.1

func NewObjectsClassHeadUnprocessableEntity() *ObjectsClassHeadUnprocessableEntity

NewObjectsClassHeadUnprocessableEntity creates a ObjectsClassHeadUnprocessableEntity with default headers values

func (*ObjectsClassHeadUnprocessableEntity) Code added in v1.20.1

Code gets the status code for the objects class head unprocessable entity response

func (*ObjectsClassHeadUnprocessableEntity) Error added in v1.20.1

func (*ObjectsClassHeadUnprocessableEntity) GetPayload added in v1.20.1

func (*ObjectsClassHeadUnprocessableEntity) IsClientError added in v1.20.1

func (o *ObjectsClassHeadUnprocessableEntity) IsClientError() bool

IsClientError returns true when this objects class head unprocessable entity response has a 4xx status code

func (*ObjectsClassHeadUnprocessableEntity) IsCode added in v1.20.1

IsCode returns true when this objects class head unprocessable entity response a status code equal to that given

func (*ObjectsClassHeadUnprocessableEntity) IsRedirect added in v1.20.1

func (o *ObjectsClassHeadUnprocessableEntity) IsRedirect() bool

IsRedirect returns true when this objects class head unprocessable entity response has a 3xx status code

func (*ObjectsClassHeadUnprocessableEntity) IsServerError added in v1.20.1

func (o *ObjectsClassHeadUnprocessableEntity) IsServerError() bool

IsServerError returns true when this objects class head unprocessable entity response has a 5xx status code

func (*ObjectsClassHeadUnprocessableEntity) IsSuccess added in v1.20.1

IsSuccess returns true when this objects class head unprocessable entity response has a 2xx status code

func (*ObjectsClassHeadUnprocessableEntity) String added in v1.20.1

type ObjectsClassPatchBadRequest

type ObjectsClassPatchBadRequest struct {
	Payload *models.ErrorResponse
}

ObjectsClassPatchBadRequest describes a response with status code 400, with default header values.

The patch-JSON is malformed.

func NewObjectsClassPatchBadRequest

func NewObjectsClassPatchBadRequest() *ObjectsClassPatchBadRequest

NewObjectsClassPatchBadRequest creates a ObjectsClassPatchBadRequest with default headers values

func (*ObjectsClassPatchBadRequest) Code added in v1.18.0

func (o *ObjectsClassPatchBadRequest) Code() int

Code gets the status code for the objects class patch bad request response

func (*ObjectsClassPatchBadRequest) Error

func (*ObjectsClassPatchBadRequest) GetPayload added in v1.20.1

func (*ObjectsClassPatchBadRequest) IsClientError added in v1.18.0

func (o *ObjectsClassPatchBadRequest) IsClientError() bool

IsClientError returns true when this objects class patch bad request response has a 4xx status code

func (*ObjectsClassPatchBadRequest) IsCode added in v1.18.0

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

IsCode returns true when this objects class patch bad request response a status code equal to that given

func (*ObjectsClassPatchBadRequest) IsRedirect added in v1.18.0

func (o *ObjectsClassPatchBadRequest) IsRedirect() bool

IsRedirect returns true when this objects class patch bad request response has a 3xx status code

func (*ObjectsClassPatchBadRequest) IsServerError added in v1.18.0

func (o *ObjectsClassPatchBadRequest) IsServerError() bool

IsServerError returns true when this objects class patch bad request response has a 5xx status code

func (*ObjectsClassPatchBadRequest) IsSuccess added in v1.18.0

func (o *ObjectsClassPatchBadRequest) IsSuccess() bool

IsSuccess returns true when this objects class patch bad request response has a 2xx status code

func (*ObjectsClassPatchBadRequest) String added in v1.18.0

func (o *ObjectsClassPatchBadRequest) String() string

type ObjectsClassPatchForbidden

type ObjectsClassPatchForbidden struct {
	Payload *models.ErrorResponse
}

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

Forbidden

func NewObjectsClassPatchForbidden

func NewObjectsClassPatchForbidden() *ObjectsClassPatchForbidden

NewObjectsClassPatchForbidden creates a ObjectsClassPatchForbidden with default headers values

func (*ObjectsClassPatchForbidden) Code added in v1.18.0

func (o *ObjectsClassPatchForbidden) Code() int

Code gets the status code for the objects class patch forbidden response

func (*ObjectsClassPatchForbidden) Error

func (*ObjectsClassPatchForbidden) GetPayload

func (*ObjectsClassPatchForbidden) IsClientError added in v1.18.0

func (o *ObjectsClassPatchForbidden) IsClientError() bool

IsClientError returns true when this objects class patch forbidden response has a 4xx status code

func (*ObjectsClassPatchForbidden) IsCode added in v1.18.0

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

IsCode returns true when this objects class patch forbidden response a status code equal to that given

func (*ObjectsClassPatchForbidden) IsRedirect added in v1.18.0

func (o *ObjectsClassPatchForbidden) IsRedirect() bool

IsRedirect returns true when this objects class patch forbidden response has a 3xx status code

func (*ObjectsClassPatchForbidden) IsServerError added in v1.18.0

func (o *ObjectsClassPatchForbidden) IsServerError() bool

IsServerError returns true when this objects class patch forbidden response has a 5xx status code

func (*ObjectsClassPatchForbidden) IsSuccess added in v1.18.0

func (o *ObjectsClassPatchForbidden) IsSuccess() bool

IsSuccess returns true when this objects class patch forbidden response has a 2xx status code

func (*ObjectsClassPatchForbidden) String added in v1.18.0

func (o *ObjectsClassPatchForbidden) String() string

type ObjectsClassPatchInternalServerError

type ObjectsClassPatchInternalServerError struct {
	Payload *models.ErrorResponse
}

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

An error has occurred while trying to fulfill the request. Most likely the ErrorResponse will contain more information about the error.

func NewObjectsClassPatchInternalServerError

func NewObjectsClassPatchInternalServerError() *ObjectsClassPatchInternalServerError

NewObjectsClassPatchInternalServerError creates a ObjectsClassPatchInternalServerError with default headers values

func (*ObjectsClassPatchInternalServerError) Code added in v1.18.0

Code gets the status code for the objects class patch internal server error response

func (*ObjectsClassPatchInternalServerError) Error

func (*ObjectsClassPatchInternalServerError) GetPayload

func (*ObjectsClassPatchInternalServerError) IsClientError added in v1.18.0

func (o *ObjectsClassPatchInternalServerError) IsClientError() bool

IsClientError returns true when this objects class patch internal server error response has a 4xx status code

func (*ObjectsClassPatchInternalServerError) IsCode added in v1.18.0

IsCode returns true when this objects class patch internal server error response a status code equal to that given

func (*ObjectsClassPatchInternalServerError) IsRedirect added in v1.18.0

IsRedirect returns true when this objects class patch internal server error response has a 3xx status code

func (*ObjectsClassPatchInternalServerError) IsServerError added in v1.18.0

func (o *ObjectsClassPatchInternalServerError) IsServerError() bool

IsServerError returns true when this objects class patch internal server error response has a 5xx status code

func (*ObjectsClassPatchInternalServerError) IsSuccess added in v1.18.0

IsSuccess returns true when this objects class patch internal server error response has a 2xx status code

func (*ObjectsClassPatchInternalServerError) String added in v1.18.0

type ObjectsClassPatchNoContent

type ObjectsClassPatchNoContent struct {
}

ObjectsClassPatchNoContent describes a response with status code 204, with default header values.

Successfully applied. No content provided.

func NewObjectsClassPatchNoContent

func NewObjectsClassPatchNoContent() *ObjectsClassPatchNoContent

NewObjectsClassPatchNoContent creates a ObjectsClassPatchNoContent with default headers values

func (*ObjectsClassPatchNoContent) Code added in v1.18.0

func (o *ObjectsClassPatchNoContent) Code() int

Code gets the status code for the objects class patch no content response

func (*ObjectsClassPatchNoContent) Error

func (*ObjectsClassPatchNoContent) IsClientError added in v1.18.0

func (o *ObjectsClassPatchNoContent) IsClientError() bool

IsClientError returns true when this objects class patch no content response has a 4xx status code

func (*ObjectsClassPatchNoContent) IsCode added in v1.18.0

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

IsCode returns true when this objects class patch no content response a status code equal to that given

func (*ObjectsClassPatchNoContent) IsRedirect added in v1.18.0

func (o *ObjectsClassPatchNoContent) IsRedirect() bool

IsRedirect returns true when this objects class patch no content response has a 3xx status code

func (*ObjectsClassPatchNoContent) IsServerError added in v1.18.0

func (o *ObjectsClassPatchNoContent) IsServerError() bool

IsServerError returns true when this objects class patch no content response has a 5xx status code

func (*ObjectsClassPatchNoContent) IsSuccess added in v1.18.0

func (o *ObjectsClassPatchNoContent) IsSuccess() bool

IsSuccess returns true when this objects class patch no content response has a 2xx status code

func (*ObjectsClassPatchNoContent) String added in v1.18.0

func (o *ObjectsClassPatchNoContent) String() string

type ObjectsClassPatchNotFound

type ObjectsClassPatchNotFound struct {
}

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

Successful query result but no resource was found.

func NewObjectsClassPatchNotFound

func NewObjectsClassPatchNotFound() *ObjectsClassPatchNotFound

NewObjectsClassPatchNotFound creates a ObjectsClassPatchNotFound with default headers values

func (*ObjectsClassPatchNotFound) Code added in v1.18.0

func (o *ObjectsClassPatchNotFound) Code() int

Code gets the status code for the objects class patch not found response

func (*ObjectsClassPatchNotFound) Error

func (o *ObjectsClassPatchNotFound) Error() string

func (*ObjectsClassPatchNotFound) IsClientError added in v1.18.0

func (o *ObjectsClassPatchNotFound) IsClientError() bool

IsClientError returns true when this objects class patch not found response has a 4xx status code

func (*ObjectsClassPatchNotFound) IsCode added in v1.18.0

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

IsCode returns true when this objects class patch not found response a status code equal to that given

func (*ObjectsClassPatchNotFound) IsRedirect added in v1.18.0

func (o *ObjectsClassPatchNotFound) IsRedirect() bool

IsRedirect returns true when this objects class patch not found response has a 3xx status code

func (*ObjectsClassPatchNotFound) IsServerError added in v1.18.0

func (o *ObjectsClassPatchNotFound) IsServerError() bool

IsServerError returns true when this objects class patch not found response has a 5xx status code

func (*ObjectsClassPatchNotFound) IsSuccess added in v1.18.0

func (o *ObjectsClassPatchNotFound) IsSuccess() bool

IsSuccess returns true when this objects class patch not found response has a 2xx status code

func (*ObjectsClassPatchNotFound) String added in v1.18.0

func (o *ObjectsClassPatchNotFound) String() string

type ObjectsClassPatchParams

type ObjectsClassPatchParams struct {

	/* Body.

	   RFC 7396-style patch, the body contains the object to merge into the existing object.
	*/
	Body *models.Object

	/* ClassName.

	   The class name as defined in the schema
	*/
	ClassName string

	/* ConsistencyLevel.

	   Determines how many replicas must acknowledge a request before it is considered successful
	*/
	ConsistencyLevel *string

	/* ID.

	   The uuid of the data object to update.

	   Format: uuid
	*/
	ID strfmt.UUID

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

ObjectsClassPatchParams contains all the parameters to send to the API endpoint

for the objects class patch operation.

Typically these are written to a http.Request.

func NewObjectsClassPatchParams

func NewObjectsClassPatchParams() *ObjectsClassPatchParams

NewObjectsClassPatchParams creates a new ObjectsClassPatchParams 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 NewObjectsClassPatchParamsWithContext

func NewObjectsClassPatchParamsWithContext(ctx context.Context) *ObjectsClassPatchParams

NewObjectsClassPatchParamsWithContext creates a new ObjectsClassPatchParams object with the ability to set a context for a request.

func NewObjectsClassPatchParamsWithHTTPClient

func NewObjectsClassPatchParamsWithHTTPClient(client *http.Client) *ObjectsClassPatchParams

NewObjectsClassPatchParamsWithHTTPClient creates a new ObjectsClassPatchParams object with the ability to set a custom HTTPClient for a request.

func NewObjectsClassPatchParamsWithTimeout

func NewObjectsClassPatchParamsWithTimeout(timeout time.Duration) *ObjectsClassPatchParams

NewObjectsClassPatchParamsWithTimeout creates a new ObjectsClassPatchParams object with the ability to set a timeout on a request.

func (*ObjectsClassPatchParams) SetBody

func (o *ObjectsClassPatchParams) SetBody(body *models.Object)

SetBody adds the body to the objects class patch params

func (*ObjectsClassPatchParams) SetClassName

func (o *ObjectsClassPatchParams) SetClassName(className string)

SetClassName adds the className to the objects class patch params

func (*ObjectsClassPatchParams) SetConsistencyLevel added in v1.18.0

func (o *ObjectsClassPatchParams) SetConsistencyLevel(consistencyLevel *string)

SetConsistencyLevel adds the consistencyLevel to the objects class patch params

func (*ObjectsClassPatchParams) SetContext

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

SetContext adds the context to the objects class patch params

func (*ObjectsClassPatchParams) SetDefaults added in v1.18.0

func (o *ObjectsClassPatchParams) SetDefaults()

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

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

func (*ObjectsClassPatchParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the objects class patch params

func (*ObjectsClassPatchParams) SetID

func (o *ObjectsClassPatchParams) SetID(id strfmt.UUID)

SetID adds the id to the objects class patch params

func (*ObjectsClassPatchParams) SetTimeout

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

SetTimeout adds the timeout to the objects class patch params

func (*ObjectsClassPatchParams) WithBody

WithBody adds the body to the objects class patch params

func (*ObjectsClassPatchParams) WithClassName

func (o *ObjectsClassPatchParams) WithClassName(className string) *ObjectsClassPatchParams

WithClassName adds the className to the objects class patch params

func (*ObjectsClassPatchParams) WithConsistencyLevel added in v1.18.0

func (o *ObjectsClassPatchParams) WithConsistencyLevel(consistencyLevel *string) *ObjectsClassPatchParams

WithConsistencyLevel adds the consistencyLevel to the objects class patch params

func (*ObjectsClassPatchParams) WithContext

WithContext adds the context to the objects class patch params

func (*ObjectsClassPatchParams) WithDefaults added in v1.18.0

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

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

func (*ObjectsClassPatchParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the objects class patch params

func (*ObjectsClassPatchParams) WithID

WithID adds the id to the objects class patch params

func (*ObjectsClassPatchParams) WithTimeout

WithTimeout adds the timeout to the objects class patch params

func (*ObjectsClassPatchParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ObjectsClassPatchReader

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

ObjectsClassPatchReader is a Reader for the ObjectsClassPatch structure.

func (*ObjectsClassPatchReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ObjectsClassPatchUnauthorized

type ObjectsClassPatchUnauthorized struct {
}

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

Unauthorized or invalid credentials.

func NewObjectsClassPatchUnauthorized

func NewObjectsClassPatchUnauthorized() *ObjectsClassPatchUnauthorized

NewObjectsClassPatchUnauthorized creates a ObjectsClassPatchUnauthorized with default headers values

func (*ObjectsClassPatchUnauthorized) Code added in v1.18.0

Code gets the status code for the objects class patch unauthorized response

func (*ObjectsClassPatchUnauthorized) Error

func (*ObjectsClassPatchUnauthorized) IsClientError added in v1.18.0

func (o *ObjectsClassPatchUnauthorized) IsClientError() bool

IsClientError returns true when this objects class patch unauthorized response has a 4xx status code

func (*ObjectsClassPatchUnauthorized) IsCode added in v1.18.0

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

IsCode returns true when this objects class patch unauthorized response a status code equal to that given

func (*ObjectsClassPatchUnauthorized) IsRedirect added in v1.18.0

func (o *ObjectsClassPatchUnauthorized) IsRedirect() bool

IsRedirect returns true when this objects class patch unauthorized response has a 3xx status code

func (*ObjectsClassPatchUnauthorized) IsServerError added in v1.18.0

func (o *ObjectsClassPatchUnauthorized) IsServerError() bool

IsServerError returns true when this objects class patch unauthorized response has a 5xx status code

func (*ObjectsClassPatchUnauthorized) IsSuccess added in v1.18.0

func (o *ObjectsClassPatchUnauthorized) IsSuccess() bool

IsSuccess returns true when this objects class patch unauthorized response has a 2xx status code

func (*ObjectsClassPatchUnauthorized) String added in v1.18.0

type ObjectsClassPatchUnprocessableEntity

type ObjectsClassPatchUnprocessableEntity struct {
	Payload *models.ErrorResponse
}

ObjectsClassPatchUnprocessableEntity describes a response with status code 422, with default header values.

The patch-JSON is valid but unprocessable.

func NewObjectsClassPatchUnprocessableEntity

func NewObjectsClassPatchUnprocessableEntity() *ObjectsClassPatchUnprocessableEntity

NewObjectsClassPatchUnprocessableEntity creates a ObjectsClassPatchUnprocessableEntity with default headers values

func (*ObjectsClassPatchUnprocessableEntity) Code added in v1.18.0

Code gets the status code for the objects class patch unprocessable entity response

func (*ObjectsClassPatchUnprocessableEntity) Error

func (*ObjectsClassPatchUnprocessableEntity) GetPayload

func (*ObjectsClassPatchUnprocessableEntity) IsClientError added in v1.18.0

func (o *ObjectsClassPatchUnprocessableEntity) IsClientError() bool

IsClientError returns true when this objects class patch unprocessable entity response has a 4xx status code

func (*ObjectsClassPatchUnprocessableEntity) IsCode added in v1.18.0

IsCode returns true when this objects class patch unprocessable entity response a status code equal to that given

func (*ObjectsClassPatchUnprocessableEntity) IsRedirect added in v1.18.0

IsRedirect returns true when this objects class patch unprocessable entity response has a 3xx status code

func (*ObjectsClassPatchUnprocessableEntity) IsServerError added in v1.18.0

func (o *ObjectsClassPatchUnprocessableEntity) IsServerError() bool

IsServerError returns true when this objects class patch unprocessable entity response has a 5xx status code

func (*ObjectsClassPatchUnprocessableEntity) IsSuccess added in v1.18.0

IsSuccess returns true when this objects class patch unprocessable entity response has a 2xx status code

func (*ObjectsClassPatchUnprocessableEntity) String added in v1.18.0

type ObjectsClassPutForbidden

type ObjectsClassPutForbidden struct {
	Payload *models.ErrorResponse
}

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

Forbidden

func NewObjectsClassPutForbidden

func NewObjectsClassPutForbidden() *ObjectsClassPutForbidden

NewObjectsClassPutForbidden creates a ObjectsClassPutForbidden with default headers values

func (*ObjectsClassPutForbidden) Code added in v1.18.0

func (o *ObjectsClassPutForbidden) Code() int

Code gets the status code for the objects class put forbidden response

func (*ObjectsClassPutForbidden) Error

func (o *ObjectsClassPutForbidden) Error() string

func (*ObjectsClassPutForbidden) GetPayload

func (*ObjectsClassPutForbidden) IsClientError added in v1.18.0

func (o *ObjectsClassPutForbidden) IsClientError() bool

IsClientError returns true when this objects class put forbidden response has a 4xx status code

func (*ObjectsClassPutForbidden) IsCode added in v1.18.0

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

IsCode returns true when this objects class put forbidden response a status code equal to that given

func (*ObjectsClassPutForbidden) IsRedirect added in v1.18.0

func (o *ObjectsClassPutForbidden) IsRedirect() bool

IsRedirect returns true when this objects class put forbidden response has a 3xx status code

func (*ObjectsClassPutForbidden) IsServerError added in v1.18.0

func (o *ObjectsClassPutForbidden) IsServerError() bool

IsServerError returns true when this objects class put forbidden response has a 5xx status code

func (*ObjectsClassPutForbidden) IsSuccess added in v1.18.0

func (o *ObjectsClassPutForbidden) IsSuccess() bool

IsSuccess returns true when this objects class put forbidden response has a 2xx status code

func (*ObjectsClassPutForbidden) String added in v1.18.0

func (o *ObjectsClassPutForbidden) String() string

type ObjectsClassPutInternalServerError

type ObjectsClassPutInternalServerError struct {
	Payload *models.ErrorResponse
}

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

An error has occurred while trying to fulfill the request. Most likely the ErrorResponse will contain more information about the error.

func NewObjectsClassPutInternalServerError

func NewObjectsClassPutInternalServerError() *ObjectsClassPutInternalServerError

NewObjectsClassPutInternalServerError creates a ObjectsClassPutInternalServerError with default headers values

func (*ObjectsClassPutInternalServerError) Code added in v1.18.0

Code gets the status code for the objects class put internal server error response

func (*ObjectsClassPutInternalServerError) Error

func (*ObjectsClassPutInternalServerError) GetPayload

func (*ObjectsClassPutInternalServerError) IsClientError added in v1.18.0

func (o *ObjectsClassPutInternalServerError) IsClientError() bool

IsClientError returns true when this objects class put internal server error response has a 4xx status code

func (*ObjectsClassPutInternalServerError) IsCode added in v1.18.0

IsCode returns true when this objects class put internal server error response a status code equal to that given

func (*ObjectsClassPutInternalServerError) IsRedirect added in v1.18.0

func (o *ObjectsClassPutInternalServerError) IsRedirect() bool

IsRedirect returns true when this objects class put internal server error response has a 3xx status code

func (*ObjectsClassPutInternalServerError) IsServerError added in v1.18.0

func (o *ObjectsClassPutInternalServerError) IsServerError() bool

IsServerError returns true when this objects class put internal server error response has a 5xx status code

func (*ObjectsClassPutInternalServerError) IsSuccess added in v1.18.0

IsSuccess returns true when this objects class put internal server error response has a 2xx status code

func (*ObjectsClassPutInternalServerError) String added in v1.18.0

type ObjectsClassPutNotFound

type ObjectsClassPutNotFound struct {
}

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

Successful query result but no resource was found.

func NewObjectsClassPutNotFound

func NewObjectsClassPutNotFound() *ObjectsClassPutNotFound

NewObjectsClassPutNotFound creates a ObjectsClassPutNotFound with default headers values

func (*ObjectsClassPutNotFound) Code added in v1.18.0

func (o *ObjectsClassPutNotFound) Code() int

Code gets the status code for the objects class put not found response

func (*ObjectsClassPutNotFound) Error

func (o *ObjectsClassPutNotFound) Error() string

func (*ObjectsClassPutNotFound) IsClientError added in v1.18.0

func (o *ObjectsClassPutNotFound) IsClientError() bool

IsClientError returns true when this objects class put not found response has a 4xx status code

func (*ObjectsClassPutNotFound) IsCode added in v1.18.0

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

IsCode returns true when this objects class put not found response a status code equal to that given

func (*ObjectsClassPutNotFound) IsRedirect added in v1.18.0

func (o *ObjectsClassPutNotFound) IsRedirect() bool

IsRedirect returns true when this objects class put not found response has a 3xx status code

func (*ObjectsClassPutNotFound) IsServerError added in v1.18.0

func (o *ObjectsClassPutNotFound) IsServerError() bool

IsServerError returns true when this objects class put not found response has a 5xx status code

func (*ObjectsClassPutNotFound) IsSuccess added in v1.18.0

func (o *ObjectsClassPutNotFound) IsSuccess() bool

IsSuccess returns true when this objects class put not found response has a 2xx status code

func (*ObjectsClassPutNotFound) String added in v1.18.0

func (o *ObjectsClassPutNotFound) String() string

type ObjectsClassPutOK

type ObjectsClassPutOK struct {
	Payload *models.Object
}

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

Successfully received.

func NewObjectsClassPutOK

func NewObjectsClassPutOK() *ObjectsClassPutOK

NewObjectsClassPutOK creates a ObjectsClassPutOK with default headers values

func (*ObjectsClassPutOK) Code added in v1.18.0

func (o *ObjectsClassPutOK) Code() int

Code gets the status code for the objects class put o k response

func (*ObjectsClassPutOK) Error

func (o *ObjectsClassPutOK) Error() string

func (*ObjectsClassPutOK) GetPayload

func (o *ObjectsClassPutOK) GetPayload() *models.Object

func (*ObjectsClassPutOK) IsClientError added in v1.18.0

func (o *ObjectsClassPutOK) IsClientError() bool

IsClientError returns true when this objects class put o k response has a 4xx status code

func (*ObjectsClassPutOK) IsCode added in v1.18.0

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

IsCode returns true when this objects class put o k response a status code equal to that given

func (*ObjectsClassPutOK) IsRedirect added in v1.18.0

func (o *ObjectsClassPutOK) IsRedirect() bool

IsRedirect returns true when this objects class put o k response has a 3xx status code

func (*ObjectsClassPutOK) IsServerError added in v1.18.0

func (o *ObjectsClassPutOK) IsServerError() bool

IsServerError returns true when this objects class put o k response has a 5xx status code

func (*ObjectsClassPutOK) IsSuccess added in v1.18.0

func (o *ObjectsClassPutOK) IsSuccess() bool

IsSuccess returns true when this objects class put o k response has a 2xx status code

func (*ObjectsClassPutOK) String added in v1.18.0

func (o *ObjectsClassPutOK) String() string

type ObjectsClassPutParams

type ObjectsClassPutParams struct {

	// Body.
	Body *models.Object

	// ClassName.
	ClassName string

	/* ConsistencyLevel.

	   Determines how many replicas must acknowledge a request before it is considered successful
	*/
	ConsistencyLevel *string

	/* ID.

	   The uuid of the data object to update.

	   Format: uuid
	*/
	ID strfmt.UUID

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

ObjectsClassPutParams contains all the parameters to send to the API endpoint

for the objects class put operation.

Typically these are written to a http.Request.

func NewObjectsClassPutParams

func NewObjectsClassPutParams() *ObjectsClassPutParams

NewObjectsClassPutParams creates a new ObjectsClassPutParams 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 NewObjectsClassPutParamsWithContext

func NewObjectsClassPutParamsWithContext(ctx context.Context) *ObjectsClassPutParams

NewObjectsClassPutParamsWithContext creates a new ObjectsClassPutParams object with the ability to set a context for a request.

func NewObjectsClassPutParamsWithHTTPClient

func NewObjectsClassPutParamsWithHTTPClient(client *http.Client) *ObjectsClassPutParams

NewObjectsClassPutParamsWithHTTPClient creates a new ObjectsClassPutParams object with the ability to set a custom HTTPClient for a request.

func NewObjectsClassPutParamsWithTimeout

func NewObjectsClassPutParamsWithTimeout(timeout time.Duration) *ObjectsClassPutParams

NewObjectsClassPutParamsWithTimeout creates a new ObjectsClassPutParams object with the ability to set a timeout on a request.

func (*ObjectsClassPutParams) SetBody

func (o *ObjectsClassPutParams) SetBody(body *models.Object)

SetBody adds the body to the objects class put params

func (*ObjectsClassPutParams) SetClassName

func (o *ObjectsClassPutParams) SetClassName(className string)

SetClassName adds the className to the objects class put params

func (*ObjectsClassPutParams) SetConsistencyLevel added in v1.18.0

func (o *ObjectsClassPutParams) SetConsistencyLevel(consistencyLevel *string)

SetConsistencyLevel adds the consistencyLevel to the objects class put params

func (*ObjectsClassPutParams) SetContext

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

SetContext adds the context to the objects class put params

func (*ObjectsClassPutParams) SetDefaults added in v1.18.0

func (o *ObjectsClassPutParams) SetDefaults()

SetDefaults hydrates default values in the objects class put params (not the query body).

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

func (*ObjectsClassPutParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the objects class put params

func (*ObjectsClassPutParams) SetID

func (o *ObjectsClassPutParams) SetID(id strfmt.UUID)

SetID adds the id to the objects class put params

func (*ObjectsClassPutParams) SetTimeout

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

SetTimeout adds the timeout to the objects class put params

func (*ObjectsClassPutParams) WithBody

WithBody adds the body to the objects class put params

func (*ObjectsClassPutParams) WithClassName

func (o *ObjectsClassPutParams) WithClassName(className string) *ObjectsClassPutParams

WithClassName adds the className to the objects class put params

func (*ObjectsClassPutParams) WithConsistencyLevel added in v1.18.0

func (o *ObjectsClassPutParams) WithConsistencyLevel(consistencyLevel *string) *ObjectsClassPutParams

WithConsistencyLevel adds the consistencyLevel to the objects class put params

func (*ObjectsClassPutParams) WithContext

WithContext adds the context to the objects class put params

func (*ObjectsClassPutParams) WithDefaults added in v1.18.0

func (o *ObjectsClassPutParams) WithDefaults() *ObjectsClassPutParams

WithDefaults hydrates default values in the objects class put params (not the query body).

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

func (*ObjectsClassPutParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the objects class put params

func (*ObjectsClassPutParams) WithID

WithID adds the id to the objects class put params

func (*ObjectsClassPutParams) WithTimeout

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

WithTimeout adds the timeout to the objects class put params

func (*ObjectsClassPutParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type ObjectsClassPutReader

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

ObjectsClassPutReader is a Reader for the ObjectsClassPut structure.

func (*ObjectsClassPutReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ObjectsClassPutUnauthorized

type ObjectsClassPutUnauthorized struct {
}

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

Unauthorized or invalid credentials.

func NewObjectsClassPutUnauthorized

func NewObjectsClassPutUnauthorized() *ObjectsClassPutUnauthorized

NewObjectsClassPutUnauthorized creates a ObjectsClassPutUnauthorized with default headers values

func (*ObjectsClassPutUnauthorized) Code added in v1.18.0

func (o *ObjectsClassPutUnauthorized) Code() int

Code gets the status code for the objects class put unauthorized response

func (*ObjectsClassPutUnauthorized) Error

func (*ObjectsClassPutUnauthorized) IsClientError added in v1.18.0

func (o *ObjectsClassPutUnauthorized) IsClientError() bool

IsClientError returns true when this objects class put unauthorized response has a 4xx status code

func (*ObjectsClassPutUnauthorized) IsCode added in v1.18.0

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

IsCode returns true when this objects class put unauthorized response a status code equal to that given

func (*ObjectsClassPutUnauthorized) IsRedirect added in v1.18.0

func (o *ObjectsClassPutUnauthorized) IsRedirect() bool

IsRedirect returns true when this objects class put unauthorized response has a 3xx status code

func (*ObjectsClassPutUnauthorized) IsServerError added in v1.18.0

func (o *ObjectsClassPutUnauthorized) IsServerError() bool

IsServerError returns true when this objects class put unauthorized response has a 5xx status code

func (*ObjectsClassPutUnauthorized) IsSuccess added in v1.18.0

func (o *ObjectsClassPutUnauthorized) IsSuccess() bool

IsSuccess returns true when this objects class put unauthorized response has a 2xx status code

func (*ObjectsClassPutUnauthorized) String added in v1.18.0

func (o *ObjectsClassPutUnauthorized) String() string

type ObjectsClassPutUnprocessableEntity

type ObjectsClassPutUnprocessableEntity struct {
	Payload *models.ErrorResponse
}

ObjectsClassPutUnprocessableEntity describes a response with status code 422, with default header values.

Request body is well-formed (i.e., syntactically correct), but semantically erroneous. Are you sure the class is defined in the configuration file?

func NewObjectsClassPutUnprocessableEntity

func NewObjectsClassPutUnprocessableEntity() *ObjectsClassPutUnprocessableEntity

NewObjectsClassPutUnprocessableEntity creates a ObjectsClassPutUnprocessableEntity with default headers values

func (*ObjectsClassPutUnprocessableEntity) Code added in v1.18.0

Code gets the status code for the objects class put unprocessable entity response

func (*ObjectsClassPutUnprocessableEntity) Error

func (*ObjectsClassPutUnprocessableEntity) GetPayload

func (*ObjectsClassPutUnprocessableEntity) IsClientError added in v1.18.0

func (o *ObjectsClassPutUnprocessableEntity) IsClientError() bool

IsClientError returns true when this objects class put unprocessable entity response has a 4xx status code

func (*ObjectsClassPutUnprocessableEntity) IsCode added in v1.18.0

IsCode returns true when this objects class put unprocessable entity response a status code equal to that given

func (*ObjectsClassPutUnprocessableEntity) IsRedirect added in v1.18.0

func (o *ObjectsClassPutUnprocessableEntity) IsRedirect() bool

IsRedirect returns true when this objects class put unprocessable entity response has a 3xx status code

func (*ObjectsClassPutUnprocessableEntity) IsServerError added in v1.18.0

func (o *ObjectsClassPutUnprocessableEntity) IsServerError() bool

IsServerError returns true when this objects class put unprocessable entity response has a 5xx status code

func (*ObjectsClassPutUnprocessableEntity) IsSuccess added in v1.18.0

IsSuccess returns true when this objects class put unprocessable entity response has a 2xx status code

func (*ObjectsClassPutUnprocessableEntity) String added in v1.18.0

type ObjectsClassReferencesCreateBadRequest added in v1.18.0

type ObjectsClassReferencesCreateBadRequest struct {
	Payload *models.ErrorResponse
}

ObjectsClassReferencesCreateBadRequest describes a response with status code 400, with default header values.

Malformed request.

func NewObjectsClassReferencesCreateBadRequest added in v1.18.0

func NewObjectsClassReferencesCreateBadRequest() *ObjectsClassReferencesCreateBadRequest

NewObjectsClassReferencesCreateBadRequest creates a ObjectsClassReferencesCreateBadRequest with default headers values

func (*ObjectsClassReferencesCreateBadRequest) Code added in v1.18.0

Code gets the status code for the objects class references create bad request response

func (*ObjectsClassReferencesCreateBadRequest) Error added in v1.18.0

func (*ObjectsClassReferencesCreateBadRequest) GetPayload added in v1.18.0

func (*ObjectsClassReferencesCreateBadRequest) IsClientError added in v1.18.0

func (o *ObjectsClassReferencesCreateBadRequest) IsClientError() bool

IsClientError returns true when this objects class references create bad request response has a 4xx status code

func (*ObjectsClassReferencesCreateBadRequest) IsCode added in v1.18.0

IsCode returns true when this objects class references create bad request response a status code equal to that given

func (*ObjectsClassReferencesCreateBadRequest) IsRedirect added in v1.18.0

IsRedirect returns true when this objects class references create bad request response has a 3xx status code

func (*ObjectsClassReferencesCreateBadRequest) IsServerError added in v1.18.0

func (o *ObjectsClassReferencesCreateBadRequest) IsServerError() bool

IsServerError returns true when this objects class references create bad request response has a 5xx status code

func (*ObjectsClassReferencesCreateBadRequest) IsSuccess added in v1.18.0

IsSuccess returns true when this objects class references create bad request response has a 2xx status code

func (*ObjectsClassReferencesCreateBadRequest) String added in v1.18.0

type ObjectsClassReferencesCreateForbidden

type ObjectsClassReferencesCreateForbidden struct {
	Payload *models.ErrorResponse
}

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

Forbidden

func NewObjectsClassReferencesCreateForbidden

func NewObjectsClassReferencesCreateForbidden() *ObjectsClassReferencesCreateForbidden

NewObjectsClassReferencesCreateForbidden creates a ObjectsClassReferencesCreateForbidden with default headers values

func (*ObjectsClassReferencesCreateForbidden) Code added in v1.18.0

Code gets the status code for the objects class references create forbidden response

func (*ObjectsClassReferencesCreateForbidden) Error

func (*ObjectsClassReferencesCreateForbidden) GetPayload

func (*ObjectsClassReferencesCreateForbidden) IsClientError added in v1.18.0

func (o *ObjectsClassReferencesCreateForbidden) IsClientError() bool

IsClientError returns true when this objects class references create forbidden response has a 4xx status code

func (*ObjectsClassReferencesCreateForbidden) IsCode added in v1.18.0

IsCode returns true when this objects class references create forbidden response a status code equal to that given

func (*ObjectsClassReferencesCreateForbidden) IsRedirect added in v1.18.0

IsRedirect returns true when this objects class references create forbidden response has a 3xx status code

func (*ObjectsClassReferencesCreateForbidden) IsServerError added in v1.18.0

func (o *ObjectsClassReferencesCreateForbidden) IsServerError() bool

IsServerError returns true when this objects class references create forbidden response has a 5xx status code

func (*ObjectsClassReferencesCreateForbidden) IsSuccess added in v1.18.0

IsSuccess returns true when this objects class references create forbidden response has a 2xx status code

func (*ObjectsClassReferencesCreateForbidden) String added in v1.18.0

type ObjectsClassReferencesCreateInternalServerError

type ObjectsClassReferencesCreateInternalServerError struct {
	Payload *models.ErrorResponse
}

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

An error has occurred while trying to fulfill the request. Most likely the ErrorResponse will contain more information about the error.

func NewObjectsClassReferencesCreateInternalServerError

func NewObjectsClassReferencesCreateInternalServerError() *ObjectsClassReferencesCreateInternalServerError

NewObjectsClassReferencesCreateInternalServerError creates a ObjectsClassReferencesCreateInternalServerError with default headers values

func (*ObjectsClassReferencesCreateInternalServerError) Code added in v1.18.0

Code gets the status code for the objects class references create internal server error response

func (*ObjectsClassReferencesCreateInternalServerError) Error

func (*ObjectsClassReferencesCreateInternalServerError) GetPayload

func (*ObjectsClassReferencesCreateInternalServerError) IsClientError added in v1.18.0

IsClientError returns true when this objects class references create internal server error response has a 4xx status code

func (*ObjectsClassReferencesCreateInternalServerError) IsCode added in v1.18.0

IsCode returns true when this objects class references create internal server error response a status code equal to that given

func (*ObjectsClassReferencesCreateInternalServerError) IsRedirect added in v1.18.0

IsRedirect returns true when this objects class references create internal server error response has a 3xx status code

func (*ObjectsClassReferencesCreateInternalServerError) IsServerError added in v1.18.0

IsServerError returns true when this objects class references create internal server error response has a 5xx status code

func (*ObjectsClassReferencesCreateInternalServerError) IsSuccess added in v1.18.0

IsSuccess returns true when this objects class references create internal server error response has a 2xx status code

func (*ObjectsClassReferencesCreateInternalServerError) String added in v1.18.0

type ObjectsClassReferencesCreateNotFound

type ObjectsClassReferencesCreateNotFound struct {
}

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

Source object doesn't exist.

func NewObjectsClassReferencesCreateNotFound

func NewObjectsClassReferencesCreateNotFound() *ObjectsClassReferencesCreateNotFound

NewObjectsClassReferencesCreateNotFound creates a ObjectsClassReferencesCreateNotFound with default headers values

func (*ObjectsClassReferencesCreateNotFound) Code added in v1.18.0

Code gets the status code for the objects class references create not found response

func (*ObjectsClassReferencesCreateNotFound) Error

func (*ObjectsClassReferencesCreateNotFound) IsClientError added in v1.18.0

func (o *ObjectsClassReferencesCreateNotFound) IsClientError() bool

IsClientError returns true when this objects class references create not found response has a 4xx status code

func (*ObjectsClassReferencesCreateNotFound) IsCode added in v1.18.0

IsCode returns true when this objects class references create not found response a status code equal to that given

func (*ObjectsClassReferencesCreateNotFound) IsRedirect added in v1.18.0

IsRedirect returns true when this objects class references create not found response has a 3xx status code

func (*ObjectsClassReferencesCreateNotFound) IsServerError added in v1.18.0

func (o *ObjectsClassReferencesCreateNotFound) IsServerError() bool

IsServerError returns true when this objects class references create not found response has a 5xx status code

func (*ObjectsClassReferencesCreateNotFound) IsSuccess added in v1.18.0

IsSuccess returns true when this objects class references create not found response has a 2xx status code

func (*ObjectsClassReferencesCreateNotFound) String added in v1.18.0

type ObjectsClassReferencesCreateOK

type ObjectsClassReferencesCreateOK struct {
}

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

Successfully added the reference.

func NewObjectsClassReferencesCreateOK

func NewObjectsClassReferencesCreateOK() *ObjectsClassReferencesCreateOK

NewObjectsClassReferencesCreateOK creates a ObjectsClassReferencesCreateOK with default headers values

func (*ObjectsClassReferencesCreateOK) Code added in v1.18.0

Code gets the status code for the objects class references create o k response

func (*ObjectsClassReferencesCreateOK) Error

func (*ObjectsClassReferencesCreateOK) IsClientError added in v1.18.0

func (o *ObjectsClassReferencesCreateOK) IsClientError() bool

IsClientError returns true when this objects class references create o k response has a 4xx status code

func (*ObjectsClassReferencesCreateOK) IsCode added in v1.18.0

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

IsCode returns true when this objects class references create o k response a status code equal to that given

func (*ObjectsClassReferencesCreateOK) IsRedirect added in v1.18.0

func (o *ObjectsClassReferencesCreateOK) IsRedirect() bool

IsRedirect returns true when this objects class references create o k response has a 3xx status code

func (*ObjectsClassReferencesCreateOK) IsServerError added in v1.18.0

func (o *ObjectsClassReferencesCreateOK) IsServerError() bool

IsServerError returns true when this objects class references create o k response has a 5xx status code

func (*ObjectsClassReferencesCreateOK) IsSuccess added in v1.18.0

func (o *ObjectsClassReferencesCreateOK) IsSuccess() bool

IsSuccess returns true when this objects class references create o k response has a 2xx status code

func (*ObjectsClassReferencesCreateOK) String added in v1.18.0

type ObjectsClassReferencesCreateParams

type ObjectsClassReferencesCreateParams struct {

	// Body.
	Body *models.SingleRef

	/* ClassName.

	   The class name as defined in the schema
	*/
	ClassName string

	/* ConsistencyLevel.

	   Determines how many replicas must acknowledge a request before it is considered successful
	*/
	ConsistencyLevel *string

	/* ID.

	   Unique ID of the Object.

	   Format: uuid
	*/
	ID strfmt.UUID

	/* PropertyName.

	   Unique name of the property related to the Object.
	*/
	PropertyName string

	/* Tenant.

	   Specifies the tenant in a request targeting a multi-tenant class
	*/
	Tenant *string

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

ObjectsClassReferencesCreateParams contains all the parameters to send to the API endpoint

for the objects class references create operation.

Typically these are written to a http.Request.

func NewObjectsClassReferencesCreateParams

func NewObjectsClassReferencesCreateParams() *ObjectsClassReferencesCreateParams

NewObjectsClassReferencesCreateParams creates a new ObjectsClassReferencesCreateParams 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 NewObjectsClassReferencesCreateParamsWithContext

func NewObjectsClassReferencesCreateParamsWithContext(ctx context.Context) *ObjectsClassReferencesCreateParams

NewObjectsClassReferencesCreateParamsWithContext creates a new ObjectsClassReferencesCreateParams object with the ability to set a context for a request.

func NewObjectsClassReferencesCreateParamsWithHTTPClient

func NewObjectsClassReferencesCreateParamsWithHTTPClient(client *http.Client) *ObjectsClassReferencesCreateParams

NewObjectsClassReferencesCreateParamsWithHTTPClient creates a new ObjectsClassReferencesCreateParams object with the ability to set a custom HTTPClient for a request.

func NewObjectsClassReferencesCreateParamsWithTimeout

func NewObjectsClassReferencesCreateParamsWithTimeout(timeout time.Duration) *ObjectsClassReferencesCreateParams

NewObjectsClassReferencesCreateParamsWithTimeout creates a new ObjectsClassReferencesCreateParams object with the ability to set a timeout on a request.

func (*ObjectsClassReferencesCreateParams) SetBody

SetBody adds the body to the objects class references create params

func (*ObjectsClassReferencesCreateParams) SetClassName

func (o *ObjectsClassReferencesCreateParams) SetClassName(className string)

SetClassName adds the className to the objects class references create params

func (*ObjectsClassReferencesCreateParams) SetConsistencyLevel added in v1.18.0

func (o *ObjectsClassReferencesCreateParams) SetConsistencyLevel(consistencyLevel *string)

SetConsistencyLevel adds the consistencyLevel to the objects class references create params

func (*ObjectsClassReferencesCreateParams) SetContext

SetContext adds the context to the objects class references create params

func (*ObjectsClassReferencesCreateParams) SetDefaults added in v1.18.0

func (o *ObjectsClassReferencesCreateParams) SetDefaults()

SetDefaults hydrates default values in the objects class references create params (not the query body).

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

func (*ObjectsClassReferencesCreateParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the objects class references create params

func (*ObjectsClassReferencesCreateParams) SetID

SetID adds the id to the objects class references create params

func (*ObjectsClassReferencesCreateParams) SetPropertyName

func (o *ObjectsClassReferencesCreateParams) SetPropertyName(propertyName string)

SetPropertyName adds the propertyName to the objects class references create params

func (*ObjectsClassReferencesCreateParams) SetTenant added in v1.20.0

func (o *ObjectsClassReferencesCreateParams) SetTenant(tenant *string)

SetTenant adds the tenant to the objects class references create params

func (*ObjectsClassReferencesCreateParams) SetTimeout

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

SetTimeout adds the timeout to the objects class references create params

func (*ObjectsClassReferencesCreateParams) WithBody

WithBody adds the body to the objects class references create params

func (*ObjectsClassReferencesCreateParams) WithClassName

WithClassName adds the className to the objects class references create params

func (*ObjectsClassReferencesCreateParams) WithConsistencyLevel added in v1.18.0

func (o *ObjectsClassReferencesCreateParams) WithConsistencyLevel(consistencyLevel *string) *ObjectsClassReferencesCreateParams

WithConsistencyLevel adds the consistencyLevel to the objects class references create params

func (*ObjectsClassReferencesCreateParams) WithContext

WithContext adds the context to the objects class references create params

func (*ObjectsClassReferencesCreateParams) WithDefaults added in v1.18.0

WithDefaults hydrates default values in the objects class references create params (not the query body).

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

func (*ObjectsClassReferencesCreateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the objects class references create params

func (*ObjectsClassReferencesCreateParams) WithID

WithID adds the id to the objects class references create params

func (*ObjectsClassReferencesCreateParams) WithPropertyName

WithPropertyName adds the propertyName to the objects class references create params

func (*ObjectsClassReferencesCreateParams) WithTenant added in v1.20.0

WithTenant adds the tenant to the objects class references create params

func (*ObjectsClassReferencesCreateParams) WithTimeout

WithTimeout adds the timeout to the objects class references create params

func (*ObjectsClassReferencesCreateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ObjectsClassReferencesCreateReader

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

ObjectsClassReferencesCreateReader is a Reader for the ObjectsClassReferencesCreate structure.

func (*ObjectsClassReferencesCreateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ObjectsClassReferencesCreateUnauthorized

type ObjectsClassReferencesCreateUnauthorized struct {
}

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

Unauthorized or invalid credentials.

func NewObjectsClassReferencesCreateUnauthorized

func NewObjectsClassReferencesCreateUnauthorized() *ObjectsClassReferencesCreateUnauthorized

NewObjectsClassReferencesCreateUnauthorized creates a ObjectsClassReferencesCreateUnauthorized with default headers values

func (*ObjectsClassReferencesCreateUnauthorized) Code added in v1.18.0

Code gets the status code for the objects class references create unauthorized response

func (*ObjectsClassReferencesCreateUnauthorized) Error

func (*ObjectsClassReferencesCreateUnauthorized) IsClientError added in v1.18.0

IsClientError returns true when this objects class references create unauthorized response has a 4xx status code

func (*ObjectsClassReferencesCreateUnauthorized) IsCode added in v1.18.0

IsCode returns true when this objects class references create unauthorized response a status code equal to that given

func (*ObjectsClassReferencesCreateUnauthorized) IsRedirect added in v1.18.0

IsRedirect returns true when this objects class references create unauthorized response has a 3xx status code

func (*ObjectsClassReferencesCreateUnauthorized) IsServerError added in v1.18.0

IsServerError returns true when this objects class references create unauthorized response has a 5xx status code

func (*ObjectsClassReferencesCreateUnauthorized) IsSuccess added in v1.18.0

IsSuccess returns true when this objects class references create unauthorized response has a 2xx status code

func (*ObjectsClassReferencesCreateUnauthorized) String added in v1.18.0

type ObjectsClassReferencesCreateUnprocessableEntity

type ObjectsClassReferencesCreateUnprocessableEntity struct {
	Payload *models.ErrorResponse
}

ObjectsClassReferencesCreateUnprocessableEntity describes a response with status code 422, with default header values.

Request body is well-formed (i.e., syntactically correct), but semantically erroneous. Are you sure the property exists or that it is a class?

func NewObjectsClassReferencesCreateUnprocessableEntity

func NewObjectsClassReferencesCreateUnprocessableEntity() *ObjectsClassReferencesCreateUnprocessableEntity

NewObjectsClassReferencesCreateUnprocessableEntity creates a ObjectsClassReferencesCreateUnprocessableEntity with default headers values

func (*ObjectsClassReferencesCreateUnprocessableEntity) Code added in v1.18.0

Code gets the status code for the objects class references create unprocessable entity response

func (*ObjectsClassReferencesCreateUnprocessableEntity) Error

func (*ObjectsClassReferencesCreateUnprocessableEntity) GetPayload

func (*ObjectsClassReferencesCreateUnprocessableEntity) IsClientError added in v1.18.0

IsClientError returns true when this objects class references create unprocessable entity response has a 4xx status code

func (*ObjectsClassReferencesCreateUnprocessableEntity) IsCode added in v1.18.0

IsCode returns true when this objects class references create unprocessable entity response a status code equal to that given

func (*ObjectsClassReferencesCreateUnprocessableEntity) IsRedirect added in v1.18.0

IsRedirect returns true when this objects class references create unprocessable entity response has a 3xx status code

func (*ObjectsClassReferencesCreateUnprocessableEntity) IsServerError added in v1.18.0

IsServerError returns true when this objects class references create unprocessable entity response has a 5xx status code

func (*ObjectsClassReferencesCreateUnprocessableEntity) IsSuccess added in v1.18.0

IsSuccess returns true when this objects class references create unprocessable entity response has a 2xx status code

func (*ObjectsClassReferencesCreateUnprocessableEntity) String added in v1.18.0

type ObjectsClassReferencesDeleteBadRequest added in v1.18.0

type ObjectsClassReferencesDeleteBadRequest struct {
	Payload *models.ErrorResponse
}

ObjectsClassReferencesDeleteBadRequest describes a response with status code 400, with default header values.

Malformed request.

func NewObjectsClassReferencesDeleteBadRequest added in v1.18.0

func NewObjectsClassReferencesDeleteBadRequest() *ObjectsClassReferencesDeleteBadRequest

NewObjectsClassReferencesDeleteBadRequest creates a ObjectsClassReferencesDeleteBadRequest with default headers values

func (*ObjectsClassReferencesDeleteBadRequest) Code added in v1.18.0

Code gets the status code for the objects class references delete bad request response

func (*ObjectsClassReferencesDeleteBadRequest) Error added in v1.18.0

func (*ObjectsClassReferencesDeleteBadRequest) GetPayload added in v1.18.0

func (*ObjectsClassReferencesDeleteBadRequest) IsClientError added in v1.18.0

func (o *ObjectsClassReferencesDeleteBadRequest) IsClientError() bool

IsClientError returns true when this objects class references delete bad request response has a 4xx status code

func (*ObjectsClassReferencesDeleteBadRequest) IsCode added in v1.18.0

IsCode returns true when this objects class references delete bad request response a status code equal to that given

func (*ObjectsClassReferencesDeleteBadRequest) IsRedirect added in v1.18.0

IsRedirect returns true when this objects class references delete bad request response has a 3xx status code

func (*ObjectsClassReferencesDeleteBadRequest) IsServerError added in v1.18.0

func (o *ObjectsClassReferencesDeleteBadRequest) IsServerError() bool

IsServerError returns true when this objects class references delete bad request response has a 5xx status code

func (*ObjectsClassReferencesDeleteBadRequest) IsSuccess added in v1.18.0

IsSuccess returns true when this objects class references delete bad request response has a 2xx status code

func (*ObjectsClassReferencesDeleteBadRequest) String added in v1.18.0

type ObjectsClassReferencesDeleteForbidden

type ObjectsClassReferencesDeleteForbidden struct {
	Payload *models.ErrorResponse
}

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

Forbidden

func NewObjectsClassReferencesDeleteForbidden

func NewObjectsClassReferencesDeleteForbidden() *ObjectsClassReferencesDeleteForbidden

NewObjectsClassReferencesDeleteForbidden creates a ObjectsClassReferencesDeleteForbidden with default headers values

func (*ObjectsClassReferencesDeleteForbidden) Code added in v1.18.0

Code gets the status code for the objects class references delete forbidden response

func (*ObjectsClassReferencesDeleteForbidden) Error

func (*ObjectsClassReferencesDeleteForbidden) GetPayload

func (*ObjectsClassReferencesDeleteForbidden) IsClientError added in v1.18.0

func (o *ObjectsClassReferencesDeleteForbidden) IsClientError() bool

IsClientError returns true when this objects class references delete forbidden response has a 4xx status code

func (*ObjectsClassReferencesDeleteForbidden) IsCode added in v1.18.0

IsCode returns true when this objects class references delete forbidden response a status code equal to that given

func (*ObjectsClassReferencesDeleteForbidden) IsRedirect added in v1.18.0

IsRedirect returns true when this objects class references delete forbidden response has a 3xx status code

func (*ObjectsClassReferencesDeleteForbidden) IsServerError added in v1.18.0

func (o *ObjectsClassReferencesDeleteForbidden) IsServerError() bool

IsServerError returns true when this objects class references delete forbidden response has a 5xx status code

func (*ObjectsClassReferencesDeleteForbidden) IsSuccess added in v1.18.0

IsSuccess returns true when this objects class references delete forbidden response has a 2xx status code

func (*ObjectsClassReferencesDeleteForbidden) String added in v1.18.0

type ObjectsClassReferencesDeleteInternalServerError

type ObjectsClassReferencesDeleteInternalServerError struct {
	Payload *models.ErrorResponse
}

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

An error has occurred while trying to fulfill the request. Most likely the ErrorResponse will contain more information about the error.

func NewObjectsClassReferencesDeleteInternalServerError

func NewObjectsClassReferencesDeleteInternalServerError() *ObjectsClassReferencesDeleteInternalServerError

NewObjectsClassReferencesDeleteInternalServerError creates a ObjectsClassReferencesDeleteInternalServerError with default headers values

func (*ObjectsClassReferencesDeleteInternalServerError) Code added in v1.18.0

Code gets the status code for the objects class references delete internal server error response

func (*ObjectsClassReferencesDeleteInternalServerError) Error

func (*ObjectsClassReferencesDeleteInternalServerError) GetPayload

func (*ObjectsClassReferencesDeleteInternalServerError) IsClientError added in v1.18.0

IsClientError returns true when this objects class references delete internal server error response has a 4xx status code

func (*ObjectsClassReferencesDeleteInternalServerError) IsCode added in v1.18.0

IsCode returns true when this objects class references delete internal server error response a status code equal to that given

func (*ObjectsClassReferencesDeleteInternalServerError) IsRedirect added in v1.18.0

IsRedirect returns true when this objects class references delete internal server error response has a 3xx status code

func (*ObjectsClassReferencesDeleteInternalServerError) IsServerError added in v1.18.0

IsServerError returns true when this objects class references delete internal server error response has a 5xx status code

func (*ObjectsClassReferencesDeleteInternalServerError) IsSuccess added in v1.18.0

IsSuccess returns true when this objects class references delete internal server error response has a 2xx status code

func (*ObjectsClassReferencesDeleteInternalServerError) String added in v1.18.0

type ObjectsClassReferencesDeleteNoContent

type ObjectsClassReferencesDeleteNoContent struct {
}

ObjectsClassReferencesDeleteNoContent describes a response with status code 204, with default header values.

Successfully deleted.

func NewObjectsClassReferencesDeleteNoContent

func NewObjectsClassReferencesDeleteNoContent() *ObjectsClassReferencesDeleteNoContent

NewObjectsClassReferencesDeleteNoContent creates a ObjectsClassReferencesDeleteNoContent with default headers values

func (*ObjectsClassReferencesDeleteNoContent) Code added in v1.18.0

Code gets the status code for the objects class references delete no content response

func (*ObjectsClassReferencesDeleteNoContent) Error

func (*ObjectsClassReferencesDeleteNoContent) IsClientError added in v1.18.0

func (o *ObjectsClassReferencesDeleteNoContent) IsClientError() bool

IsClientError returns true when this objects class references delete no content response has a 4xx status code

func (*ObjectsClassReferencesDeleteNoContent) IsCode added in v1.18.0

IsCode returns true when this objects class references delete no content response a status code equal to that given

func (*ObjectsClassReferencesDeleteNoContent) IsRedirect added in v1.18.0

IsRedirect returns true when this objects class references delete no content response has a 3xx status code

func (*ObjectsClassReferencesDeleteNoContent) IsServerError added in v1.18.0

func (o *ObjectsClassReferencesDeleteNoContent) IsServerError() bool

IsServerError returns true when this objects class references delete no content response has a 5xx status code

func (*ObjectsClassReferencesDeleteNoContent) IsSuccess added in v1.18.0

IsSuccess returns true when this objects class references delete no content response has a 2xx status code

func (*ObjectsClassReferencesDeleteNoContent) String added in v1.18.0

type ObjectsClassReferencesDeleteNotFound

type ObjectsClassReferencesDeleteNotFound struct {
	Payload *models.ErrorResponse
}

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

Successful query result but no resource was found.

func NewObjectsClassReferencesDeleteNotFound

func NewObjectsClassReferencesDeleteNotFound() *ObjectsClassReferencesDeleteNotFound

NewObjectsClassReferencesDeleteNotFound creates a ObjectsClassReferencesDeleteNotFound with default headers values

func (*ObjectsClassReferencesDeleteNotFound) Code added in v1.18.0

Code gets the status code for the objects class references delete not found response

func (*ObjectsClassReferencesDeleteNotFound) Error

func (*ObjectsClassReferencesDeleteNotFound) GetPayload

func (*ObjectsClassReferencesDeleteNotFound) IsClientError added in v1.18.0

func (o *ObjectsClassReferencesDeleteNotFound) IsClientError() bool

IsClientError returns true when this objects class references delete not found response has a 4xx status code

func (*ObjectsClassReferencesDeleteNotFound) IsCode added in v1.18.0

IsCode returns true when this objects class references delete not found response a status code equal to that given

func (*ObjectsClassReferencesDeleteNotFound) IsRedirect added in v1.18.0

IsRedirect returns true when this objects class references delete not found response has a 3xx status code

func (*ObjectsClassReferencesDeleteNotFound) IsServerError added in v1.18.0

func (o *ObjectsClassReferencesDeleteNotFound) IsServerError() bool

IsServerError returns true when this objects class references delete not found response has a 5xx status code

func (*ObjectsClassReferencesDeleteNotFound) IsSuccess added in v1.18.0

IsSuccess returns true when this objects class references delete not found response has a 2xx status code

func (*ObjectsClassReferencesDeleteNotFound) String added in v1.18.0

type ObjectsClassReferencesDeleteParams

type ObjectsClassReferencesDeleteParams struct {

	// Body.
	Body *models.SingleRef

	/* ClassName.

	   The class name as defined in the schema
	*/
	ClassName string

	/* ConsistencyLevel.

	   Determines how many replicas must acknowledge a request before it is considered successful
	*/
	ConsistencyLevel *string

	/* ID.

	   Unique ID of the Object.

	   Format: uuid
	*/
	ID strfmt.UUID

	/* PropertyName.

	   Unique name of the property related to the Object.
	*/
	PropertyName string

	/* Tenant.

	   Specifies the tenant in a request targeting a multi-tenant class
	*/
	Tenant *string

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

ObjectsClassReferencesDeleteParams contains all the parameters to send to the API endpoint

for the objects class references delete operation.

Typically these are written to a http.Request.

func NewObjectsClassReferencesDeleteParams

func NewObjectsClassReferencesDeleteParams() *ObjectsClassReferencesDeleteParams

NewObjectsClassReferencesDeleteParams creates a new ObjectsClassReferencesDeleteParams 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 NewObjectsClassReferencesDeleteParamsWithContext

func NewObjectsClassReferencesDeleteParamsWithContext(ctx context.Context) *ObjectsClassReferencesDeleteParams

NewObjectsClassReferencesDeleteParamsWithContext creates a new ObjectsClassReferencesDeleteParams object with the ability to set a context for a request.

func NewObjectsClassReferencesDeleteParamsWithHTTPClient

func NewObjectsClassReferencesDeleteParamsWithHTTPClient(client *http.Client) *ObjectsClassReferencesDeleteParams

NewObjectsClassReferencesDeleteParamsWithHTTPClient creates a new ObjectsClassReferencesDeleteParams object with the ability to set a custom HTTPClient for a request.

func NewObjectsClassReferencesDeleteParamsWithTimeout

func NewObjectsClassReferencesDeleteParamsWithTimeout(timeout time.Duration) *ObjectsClassReferencesDeleteParams

NewObjectsClassReferencesDeleteParamsWithTimeout creates a new ObjectsClassReferencesDeleteParams object with the ability to set a timeout on a request.

func (*ObjectsClassReferencesDeleteParams) SetBody

SetBody adds the body to the objects class references delete params

func (*ObjectsClassReferencesDeleteParams) SetClassName

func (o *ObjectsClassReferencesDeleteParams) SetClassName(className string)

SetClassName adds the className to the objects class references delete params

func (*ObjectsClassReferencesDeleteParams) SetConsistencyLevel added in v1.18.0

func (o *ObjectsClassReferencesDeleteParams) SetConsistencyLevel(consistencyLevel *string)

SetConsistencyLevel adds the consistencyLevel to the objects class references delete params

func (*ObjectsClassReferencesDeleteParams) SetContext

SetContext adds the context to the objects class references delete params

func (*ObjectsClassReferencesDeleteParams) SetDefaults added in v1.18.0

func (o *ObjectsClassReferencesDeleteParams) SetDefaults()

SetDefaults hydrates default values in the objects class references delete params (not the query body).

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

func (*ObjectsClassReferencesDeleteParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the objects class references delete params

func (*ObjectsClassReferencesDeleteParams) SetID

SetID adds the id to the objects class references delete params

func (*ObjectsClassReferencesDeleteParams) SetPropertyName

func (o *ObjectsClassReferencesDeleteParams) SetPropertyName(propertyName string)

SetPropertyName adds the propertyName to the objects class references delete params

func (*ObjectsClassReferencesDeleteParams) SetTenant added in v1.20.0

func (o *ObjectsClassReferencesDeleteParams) SetTenant(tenant *string)

SetTenant adds the tenant to the objects class references delete params

func (*ObjectsClassReferencesDeleteParams) SetTimeout

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

SetTimeout adds the timeout to the objects class references delete params

func (*ObjectsClassReferencesDeleteParams) WithBody

WithBody adds the body to the objects class references delete params

func (*ObjectsClassReferencesDeleteParams) WithClassName

WithClassName adds the className to the objects class references delete params

func (*ObjectsClassReferencesDeleteParams) WithConsistencyLevel added in v1.18.0

func (o *ObjectsClassReferencesDeleteParams) WithConsistencyLevel(consistencyLevel *string) *ObjectsClassReferencesDeleteParams

WithConsistencyLevel adds the consistencyLevel to the objects class references delete params

func (*ObjectsClassReferencesDeleteParams) WithContext

WithContext adds the context to the objects class references delete params

func (*ObjectsClassReferencesDeleteParams) WithDefaults added in v1.18.0

WithDefaults hydrates default values in the objects class references delete params (not the query body).

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

func (*ObjectsClassReferencesDeleteParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the objects class references delete params

func (*ObjectsClassReferencesDeleteParams) WithID

WithID adds the id to the objects class references delete params

func (*ObjectsClassReferencesDeleteParams) WithPropertyName

WithPropertyName adds the propertyName to the objects class references delete params

func (*ObjectsClassReferencesDeleteParams) WithTenant added in v1.20.0

WithTenant adds the tenant to the objects class references delete params

func (*ObjectsClassReferencesDeleteParams) WithTimeout

WithTimeout adds the timeout to the objects class references delete params

func (*ObjectsClassReferencesDeleteParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ObjectsClassReferencesDeleteReader

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

ObjectsClassReferencesDeleteReader is a Reader for the ObjectsClassReferencesDelete structure.

func (*ObjectsClassReferencesDeleteReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ObjectsClassReferencesDeleteUnauthorized

type ObjectsClassReferencesDeleteUnauthorized struct {
}

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

Unauthorized or invalid credentials.

func NewObjectsClassReferencesDeleteUnauthorized

func NewObjectsClassReferencesDeleteUnauthorized() *ObjectsClassReferencesDeleteUnauthorized

NewObjectsClassReferencesDeleteUnauthorized creates a ObjectsClassReferencesDeleteUnauthorized with default headers values

func (*ObjectsClassReferencesDeleteUnauthorized) Code added in v1.18.0

Code gets the status code for the objects class references delete unauthorized response

func (*ObjectsClassReferencesDeleteUnauthorized) Error

func (*ObjectsClassReferencesDeleteUnauthorized) IsClientError added in v1.18.0

IsClientError returns true when this objects class references delete unauthorized response has a 4xx status code

func (*ObjectsClassReferencesDeleteUnauthorized) IsCode added in v1.18.0

IsCode returns true when this objects class references delete unauthorized response a status code equal to that given

func (*ObjectsClassReferencesDeleteUnauthorized) IsRedirect added in v1.18.0

IsRedirect returns true when this objects class references delete unauthorized response has a 3xx status code

func (*ObjectsClassReferencesDeleteUnauthorized) IsServerError added in v1.18.0

IsServerError returns true when this objects class references delete unauthorized response has a 5xx status code

func (*ObjectsClassReferencesDeleteUnauthorized) IsSuccess added in v1.18.0

IsSuccess returns true when this objects class references delete unauthorized response has a 2xx status code

func (*ObjectsClassReferencesDeleteUnauthorized) String added in v1.18.0

type ObjectsClassReferencesDeleteUnprocessableEntity

type ObjectsClassReferencesDeleteUnprocessableEntity struct {
	Payload *models.ErrorResponse
}

ObjectsClassReferencesDeleteUnprocessableEntity describes a response with status code 422, with default header values.

Request body is well-formed (i.e., syntactically correct), but semantically erroneous. Are you sure the property exists or that it is a class?

func NewObjectsClassReferencesDeleteUnprocessableEntity

func NewObjectsClassReferencesDeleteUnprocessableEntity() *ObjectsClassReferencesDeleteUnprocessableEntity

NewObjectsClassReferencesDeleteUnprocessableEntity creates a ObjectsClassReferencesDeleteUnprocessableEntity with default headers values

func (*ObjectsClassReferencesDeleteUnprocessableEntity) Code added in v1.18.0

Code gets the status code for the objects class references delete unprocessable entity response

func (*ObjectsClassReferencesDeleteUnprocessableEntity) Error

func (*ObjectsClassReferencesDeleteUnprocessableEntity) GetPayload

func (*ObjectsClassReferencesDeleteUnprocessableEntity) IsClientError added in v1.18.0

IsClientError returns true when this objects class references delete unprocessable entity response has a 4xx status code

func (*ObjectsClassReferencesDeleteUnprocessableEntity) IsCode added in v1.18.0

IsCode returns true when this objects class references delete unprocessable entity response a status code equal to that given

func (*ObjectsClassReferencesDeleteUnprocessableEntity) IsRedirect added in v1.18.0

IsRedirect returns true when this objects class references delete unprocessable entity response has a 3xx status code

func (*ObjectsClassReferencesDeleteUnprocessableEntity) IsServerError added in v1.18.0

IsServerError returns true when this objects class references delete unprocessable entity response has a 5xx status code

func (*ObjectsClassReferencesDeleteUnprocessableEntity) IsSuccess added in v1.18.0

IsSuccess returns true when this objects class references delete unprocessable entity response has a 2xx status code

func (*ObjectsClassReferencesDeleteUnprocessableEntity) String added in v1.18.0

type ObjectsClassReferencesPutBadRequest added in v1.18.0

type ObjectsClassReferencesPutBadRequest struct {
	Payload *models.ErrorResponse
}

ObjectsClassReferencesPutBadRequest describes a response with status code 400, with default header values.

Malformed request.

func NewObjectsClassReferencesPutBadRequest added in v1.18.0

func NewObjectsClassReferencesPutBadRequest() *ObjectsClassReferencesPutBadRequest

NewObjectsClassReferencesPutBadRequest creates a ObjectsClassReferencesPutBadRequest with default headers values

func (*ObjectsClassReferencesPutBadRequest) Code added in v1.18.0

Code gets the status code for the objects class references put bad request response

func (*ObjectsClassReferencesPutBadRequest) Error added in v1.18.0

func (*ObjectsClassReferencesPutBadRequest) GetPayload added in v1.18.0

func (*ObjectsClassReferencesPutBadRequest) IsClientError added in v1.18.0

func (o *ObjectsClassReferencesPutBadRequest) IsClientError() bool

IsClientError returns true when this objects class references put bad request response has a 4xx status code

func (*ObjectsClassReferencesPutBadRequest) IsCode added in v1.18.0

IsCode returns true when this objects class references put bad request response a status code equal to that given

func (*ObjectsClassReferencesPutBadRequest) IsRedirect added in v1.18.0

func (o *ObjectsClassReferencesPutBadRequest) IsRedirect() bool

IsRedirect returns true when this objects class references put bad request response has a 3xx status code

func (*ObjectsClassReferencesPutBadRequest) IsServerError added in v1.18.0

func (o *ObjectsClassReferencesPutBadRequest) IsServerError() bool

IsServerError returns true when this objects class references put bad request response has a 5xx status code

func (*ObjectsClassReferencesPutBadRequest) IsSuccess added in v1.18.0

IsSuccess returns true when this objects class references put bad request response has a 2xx status code

func (*ObjectsClassReferencesPutBadRequest) String added in v1.18.0

type ObjectsClassReferencesPutForbidden

type ObjectsClassReferencesPutForbidden struct {
	Payload *models.ErrorResponse
}

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

Forbidden

func NewObjectsClassReferencesPutForbidden

func NewObjectsClassReferencesPutForbidden() *ObjectsClassReferencesPutForbidden

NewObjectsClassReferencesPutForbidden creates a ObjectsClassReferencesPutForbidden with default headers values

func (*ObjectsClassReferencesPutForbidden) Code added in v1.18.0

Code gets the status code for the objects class references put forbidden response

func (*ObjectsClassReferencesPutForbidden) Error

func (*ObjectsClassReferencesPutForbidden) GetPayload

func (*ObjectsClassReferencesPutForbidden) IsClientError added in v1.18.0

func (o *ObjectsClassReferencesPutForbidden) IsClientError() bool

IsClientError returns true when this objects class references put forbidden response has a 4xx status code

func (*ObjectsClassReferencesPutForbidden) IsCode added in v1.18.0

IsCode returns true when this objects class references put forbidden response a status code equal to that given

func (*ObjectsClassReferencesPutForbidden) IsRedirect added in v1.18.0

func (o *ObjectsClassReferencesPutForbidden) IsRedirect() bool

IsRedirect returns true when this objects class references put forbidden response has a 3xx status code

func (*ObjectsClassReferencesPutForbidden) IsServerError added in v1.18.0

func (o *ObjectsClassReferencesPutForbidden) IsServerError() bool

IsServerError returns true when this objects class references put forbidden response has a 5xx status code

func (*ObjectsClassReferencesPutForbidden) IsSuccess added in v1.18.0

IsSuccess returns true when this objects class references put forbidden response has a 2xx status code

func (*ObjectsClassReferencesPutForbidden) String added in v1.18.0

type ObjectsClassReferencesPutInternalServerError

type ObjectsClassReferencesPutInternalServerError struct {
	Payload *models.ErrorResponse
}

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

An error has occurred while trying to fulfill the request. Most likely the ErrorResponse will contain more information about the error.

func NewObjectsClassReferencesPutInternalServerError

func NewObjectsClassReferencesPutInternalServerError() *ObjectsClassReferencesPutInternalServerError

NewObjectsClassReferencesPutInternalServerError creates a ObjectsClassReferencesPutInternalServerError with default headers values

func (*ObjectsClassReferencesPutInternalServerError) Code added in v1.18.0

Code gets the status code for the objects class references put internal server error response

func (*ObjectsClassReferencesPutInternalServerError) Error

func (*ObjectsClassReferencesPutInternalServerError) GetPayload

func (*ObjectsClassReferencesPutInternalServerError) IsClientError added in v1.18.0

IsClientError returns true when this objects class references put internal server error response has a 4xx status code

func (*ObjectsClassReferencesPutInternalServerError) IsCode added in v1.18.0

IsCode returns true when this objects class references put internal server error response a status code equal to that given

func (*ObjectsClassReferencesPutInternalServerError) IsRedirect added in v1.18.0

IsRedirect returns true when this objects class references put internal server error response has a 3xx status code

func (*ObjectsClassReferencesPutInternalServerError) IsServerError added in v1.18.0

IsServerError returns true when this objects class references put internal server error response has a 5xx status code

func (*ObjectsClassReferencesPutInternalServerError) IsSuccess added in v1.18.0

IsSuccess returns true when this objects class references put internal server error response has a 2xx status code

func (*ObjectsClassReferencesPutInternalServerError) String added in v1.18.0

type ObjectsClassReferencesPutNotFound

type ObjectsClassReferencesPutNotFound struct {
}

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

Source object doesn't exist.

func NewObjectsClassReferencesPutNotFound

func NewObjectsClassReferencesPutNotFound() *ObjectsClassReferencesPutNotFound

NewObjectsClassReferencesPutNotFound creates a ObjectsClassReferencesPutNotFound with default headers values

func (*ObjectsClassReferencesPutNotFound) Code added in v1.18.0

Code gets the status code for the objects class references put not found response

func (*ObjectsClassReferencesPutNotFound) Error

func (*ObjectsClassReferencesPutNotFound) IsClientError added in v1.18.0

func (o *ObjectsClassReferencesPutNotFound) IsClientError() bool

IsClientError returns true when this objects class references put not found response has a 4xx status code

func (*ObjectsClassReferencesPutNotFound) IsCode added in v1.18.0

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

IsCode returns true when this objects class references put not found response a status code equal to that given

func (*ObjectsClassReferencesPutNotFound) IsRedirect added in v1.18.0

func (o *ObjectsClassReferencesPutNotFound) IsRedirect() bool

IsRedirect returns true when this objects class references put not found response has a 3xx status code

func (*ObjectsClassReferencesPutNotFound) IsServerError added in v1.18.0

func (o *ObjectsClassReferencesPutNotFound) IsServerError() bool

IsServerError returns true when this objects class references put not found response has a 5xx status code

func (*ObjectsClassReferencesPutNotFound) IsSuccess added in v1.18.0

func (o *ObjectsClassReferencesPutNotFound) IsSuccess() bool

IsSuccess returns true when this objects class references put not found response has a 2xx status code

func (*ObjectsClassReferencesPutNotFound) String added in v1.18.0

type ObjectsClassReferencesPutOK

type ObjectsClassReferencesPutOK struct {
}

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

Successfully replaced all the references.

func NewObjectsClassReferencesPutOK

func NewObjectsClassReferencesPutOK() *ObjectsClassReferencesPutOK

NewObjectsClassReferencesPutOK creates a ObjectsClassReferencesPutOK with default headers values

func (*ObjectsClassReferencesPutOK) Code added in v1.18.0

func (o *ObjectsClassReferencesPutOK) Code() int

Code gets the status code for the objects class references put o k response

func (*ObjectsClassReferencesPutOK) Error

func (*ObjectsClassReferencesPutOK) IsClientError added in v1.18.0

func (o *ObjectsClassReferencesPutOK) IsClientError() bool

IsClientError returns true when this objects class references put o k response has a 4xx status code

func (*ObjectsClassReferencesPutOK) IsCode added in v1.18.0

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

IsCode returns true when this objects class references put o k response a status code equal to that given

func (*ObjectsClassReferencesPutOK) IsRedirect added in v1.18.0

func (o *ObjectsClassReferencesPutOK) IsRedirect() bool

IsRedirect returns true when this objects class references put o k response has a 3xx status code

func (*ObjectsClassReferencesPutOK) IsServerError added in v1.18.0

func (o *ObjectsClassReferencesPutOK) IsServerError() bool

IsServerError returns true when this objects class references put o k response has a 5xx status code

func (*ObjectsClassReferencesPutOK) IsSuccess added in v1.18.0

func (o *ObjectsClassReferencesPutOK) IsSuccess() bool

IsSuccess returns true when this objects class references put o k response has a 2xx status code

func (*ObjectsClassReferencesPutOK) String added in v1.18.0

func (o *ObjectsClassReferencesPutOK) String() string

type ObjectsClassReferencesPutParams

type ObjectsClassReferencesPutParams struct {

	// Body.
	Body models.MultipleRef

	/* ClassName.

	   The class name as defined in the schema
	*/
	ClassName string

	/* ConsistencyLevel.

	   Determines how many replicas must acknowledge a request before it is considered successful
	*/
	ConsistencyLevel *string

	/* ID.

	   Unique ID of the Object.

	   Format: uuid
	*/
	ID strfmt.UUID

	/* PropertyName.

	   Unique name of the property related to the Object.
	*/
	PropertyName string

	/* Tenant.

	   Specifies the tenant in a request targeting a multi-tenant class
	*/
	Tenant *string

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

ObjectsClassReferencesPutParams contains all the parameters to send to the API endpoint

for the objects class references put operation.

Typically these are written to a http.Request.

func NewObjectsClassReferencesPutParams

func NewObjectsClassReferencesPutParams() *ObjectsClassReferencesPutParams

NewObjectsClassReferencesPutParams creates a new ObjectsClassReferencesPutParams 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 NewObjectsClassReferencesPutParamsWithContext

func NewObjectsClassReferencesPutParamsWithContext(ctx context.Context) *ObjectsClassReferencesPutParams

NewObjectsClassReferencesPutParamsWithContext creates a new ObjectsClassReferencesPutParams object with the ability to set a context for a request.

func NewObjectsClassReferencesPutParamsWithHTTPClient

func NewObjectsClassReferencesPutParamsWithHTTPClient(client *http.Client) *ObjectsClassReferencesPutParams

NewObjectsClassReferencesPutParamsWithHTTPClient creates a new ObjectsClassReferencesPutParams object with the ability to set a custom HTTPClient for a request.

func NewObjectsClassReferencesPutParamsWithTimeout

func NewObjectsClassReferencesPutParamsWithTimeout(timeout time.Duration) *ObjectsClassReferencesPutParams

NewObjectsClassReferencesPutParamsWithTimeout creates a new ObjectsClassReferencesPutParams object with the ability to set a timeout on a request.

func (*ObjectsClassReferencesPutParams) SetBody

SetBody adds the body to the objects class references put params

func (*ObjectsClassReferencesPutParams) SetClassName

func (o *ObjectsClassReferencesPutParams) SetClassName(className string)

SetClassName adds the className to the objects class references put params

func (*ObjectsClassReferencesPutParams) SetConsistencyLevel added in v1.18.0

func (o *ObjectsClassReferencesPutParams) SetConsistencyLevel(consistencyLevel *string)

SetConsistencyLevel adds the consistencyLevel to the objects class references put params

func (*ObjectsClassReferencesPutParams) SetContext

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

SetContext adds the context to the objects class references put params

func (*ObjectsClassReferencesPutParams) SetDefaults added in v1.18.0

func (o *ObjectsClassReferencesPutParams) SetDefaults()

SetDefaults hydrates default values in the objects class references put params (not the query body).

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

func (*ObjectsClassReferencesPutParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the objects class references put params

func (*ObjectsClassReferencesPutParams) SetID

SetID adds the id to the objects class references put params

func (*ObjectsClassReferencesPutParams) SetPropertyName

func (o *ObjectsClassReferencesPutParams) SetPropertyName(propertyName string)

SetPropertyName adds the propertyName to the objects class references put params

func (*ObjectsClassReferencesPutParams) SetTenant added in v1.20.0

func (o *ObjectsClassReferencesPutParams) SetTenant(tenant *string)

SetTenant adds the tenant to the objects class references put params

func (*ObjectsClassReferencesPutParams) SetTimeout

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

SetTimeout adds the timeout to the objects class references put params

func (*ObjectsClassReferencesPutParams) WithBody

WithBody adds the body to the objects class references put params

func (*ObjectsClassReferencesPutParams) WithClassName

WithClassName adds the className to the objects class references put params

func (*ObjectsClassReferencesPutParams) WithConsistencyLevel added in v1.18.0

func (o *ObjectsClassReferencesPutParams) WithConsistencyLevel(consistencyLevel *string) *ObjectsClassReferencesPutParams

WithConsistencyLevel adds the consistencyLevel to the objects class references put params

func (*ObjectsClassReferencesPutParams) WithContext

WithContext adds the context to the objects class references put params

func (*ObjectsClassReferencesPutParams) WithDefaults added in v1.18.0

WithDefaults hydrates default values in the objects class references put params (not the query body).

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

func (*ObjectsClassReferencesPutParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the objects class references put params

func (*ObjectsClassReferencesPutParams) WithID

WithID adds the id to the objects class references put params

func (*ObjectsClassReferencesPutParams) WithPropertyName

func (o *ObjectsClassReferencesPutParams) WithPropertyName(propertyName string) *ObjectsClassReferencesPutParams

WithPropertyName adds the propertyName to the objects class references put params

func (*ObjectsClassReferencesPutParams) WithTenant added in v1.20.0

WithTenant adds the tenant to the objects class references put params

func (*ObjectsClassReferencesPutParams) WithTimeout

WithTimeout adds the timeout to the objects class references put params

func (*ObjectsClassReferencesPutParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ObjectsClassReferencesPutReader

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

ObjectsClassReferencesPutReader is a Reader for the ObjectsClassReferencesPut structure.

func (*ObjectsClassReferencesPutReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ObjectsClassReferencesPutUnauthorized

type ObjectsClassReferencesPutUnauthorized struct {
}

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

Unauthorized or invalid credentials.

func NewObjectsClassReferencesPutUnauthorized

func NewObjectsClassReferencesPutUnauthorized() *ObjectsClassReferencesPutUnauthorized

NewObjectsClassReferencesPutUnauthorized creates a ObjectsClassReferencesPutUnauthorized with default headers values

func (*ObjectsClassReferencesPutUnauthorized) Code added in v1.18.0

Code gets the status code for the objects class references put unauthorized response

func (*ObjectsClassReferencesPutUnauthorized) Error

func (*ObjectsClassReferencesPutUnauthorized) IsClientError added in v1.18.0

func (o *ObjectsClassReferencesPutUnauthorized) IsClientError() bool

IsClientError returns true when this objects class references put unauthorized response has a 4xx status code

func (*ObjectsClassReferencesPutUnauthorized) IsCode added in v1.18.0

IsCode returns true when this objects class references put unauthorized response a status code equal to that given

func (*ObjectsClassReferencesPutUnauthorized) IsRedirect added in v1.18.0

IsRedirect returns true when this objects class references put unauthorized response has a 3xx status code

func (*ObjectsClassReferencesPutUnauthorized) IsServerError added in v1.18.0

func (o *ObjectsClassReferencesPutUnauthorized) IsServerError() bool

IsServerError returns true when this objects class references put unauthorized response has a 5xx status code

func (*ObjectsClassReferencesPutUnauthorized) IsSuccess added in v1.18.0

IsSuccess returns true when this objects class references put unauthorized response has a 2xx status code

func (*ObjectsClassReferencesPutUnauthorized) String added in v1.18.0

type ObjectsClassReferencesPutUnprocessableEntity

type ObjectsClassReferencesPutUnprocessableEntity struct {
	Payload *models.ErrorResponse
}

ObjectsClassReferencesPutUnprocessableEntity describes a response with status code 422, with default header values.

Request body is well-formed (i.e., syntactically correct), but semantically erroneous. Are you sure the property exists or that it is a class?

func NewObjectsClassReferencesPutUnprocessableEntity

func NewObjectsClassReferencesPutUnprocessableEntity() *ObjectsClassReferencesPutUnprocessableEntity

NewObjectsClassReferencesPutUnprocessableEntity creates a ObjectsClassReferencesPutUnprocessableEntity with default headers values

func (*ObjectsClassReferencesPutUnprocessableEntity) Code added in v1.18.0

Code gets the status code for the objects class references put unprocessable entity response

func (*ObjectsClassReferencesPutUnprocessableEntity) Error

func (*ObjectsClassReferencesPutUnprocessableEntity) GetPayload

func (*ObjectsClassReferencesPutUnprocessableEntity) IsClientError added in v1.18.0

IsClientError returns true when this objects class references put unprocessable entity response has a 4xx status code

func (*ObjectsClassReferencesPutUnprocessableEntity) IsCode added in v1.18.0

IsCode returns true when this objects class references put unprocessable entity response a status code equal to that given

func (*ObjectsClassReferencesPutUnprocessableEntity) IsRedirect added in v1.18.0

IsRedirect returns true when this objects class references put unprocessable entity response has a 3xx status code

func (*ObjectsClassReferencesPutUnprocessableEntity) IsServerError added in v1.18.0

IsServerError returns true when this objects class references put unprocessable entity response has a 5xx status code

func (*ObjectsClassReferencesPutUnprocessableEntity) IsSuccess added in v1.18.0

IsSuccess returns true when this objects class references put unprocessable entity response has a 2xx status code

func (*ObjectsClassReferencesPutUnprocessableEntity) String added in v1.18.0

type ObjectsCreateBadRequest added in v1.18.0

type ObjectsCreateBadRequest struct {
	Payload *models.ErrorResponse
}

ObjectsCreateBadRequest describes a response with status code 400, with default header values.

Malformed request.

func NewObjectsCreateBadRequest added in v1.18.0

func NewObjectsCreateBadRequest() *ObjectsCreateBadRequest

NewObjectsCreateBadRequest creates a ObjectsCreateBadRequest with default headers values

func (*ObjectsCreateBadRequest) Code added in v1.18.0

func (o *ObjectsCreateBadRequest) Code() int

Code gets the status code for the objects create bad request response

func (*ObjectsCreateBadRequest) Error added in v1.18.0

func (o *ObjectsCreateBadRequest) Error() string

func (*ObjectsCreateBadRequest) GetPayload added in v1.18.0

func (o *ObjectsCreateBadRequest) GetPayload() *models.ErrorResponse

func (*ObjectsCreateBadRequest) IsClientError added in v1.18.0

func (o *ObjectsCreateBadRequest) IsClientError() bool

IsClientError returns true when this objects create bad request response has a 4xx status code

func (*ObjectsCreateBadRequest) IsCode added in v1.18.0

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

IsCode returns true when this objects create bad request response a status code equal to that given

func (*ObjectsCreateBadRequest) IsRedirect added in v1.18.0

func (o *ObjectsCreateBadRequest) IsRedirect() bool

IsRedirect returns true when this objects create bad request response has a 3xx status code

func (*ObjectsCreateBadRequest) IsServerError added in v1.18.0

func (o *ObjectsCreateBadRequest) IsServerError() bool

IsServerError returns true when this objects create bad request response has a 5xx status code

func (*ObjectsCreateBadRequest) IsSuccess added in v1.18.0

func (o *ObjectsCreateBadRequest) IsSuccess() bool

IsSuccess returns true when this objects create bad request response has a 2xx status code

func (*ObjectsCreateBadRequest) String added in v1.18.0

func (o *ObjectsCreateBadRequest) String() string

type ObjectsCreateForbidden

type ObjectsCreateForbidden struct {
	Payload *models.ErrorResponse
}

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

Forbidden

func NewObjectsCreateForbidden

func NewObjectsCreateForbidden() *ObjectsCreateForbidden

NewObjectsCreateForbidden creates a ObjectsCreateForbidden with default headers values

func (*ObjectsCreateForbidden) Code added in v1.18.0

func (o *ObjectsCreateForbidden) Code() int

Code gets the status code for the objects create forbidden response

func (*ObjectsCreateForbidden) Error

func (o *ObjectsCreateForbidden) Error() string

func (*ObjectsCreateForbidden) GetPayload

func (o *ObjectsCreateForbidden) GetPayload() *models.ErrorResponse

func (*ObjectsCreateForbidden) IsClientError added in v1.18.0

func (o *ObjectsCreateForbidden) IsClientError() bool

IsClientError returns true when this objects create forbidden response has a 4xx status code

func (*ObjectsCreateForbidden) IsCode added in v1.18.0

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

IsCode returns true when this objects create forbidden response a status code equal to that given

func (*ObjectsCreateForbidden) IsRedirect added in v1.18.0

func (o *ObjectsCreateForbidden) IsRedirect() bool

IsRedirect returns true when this objects create forbidden response has a 3xx status code

func (*ObjectsCreateForbidden) IsServerError added in v1.18.0

func (o *ObjectsCreateForbidden) IsServerError() bool

IsServerError returns true when this objects create forbidden response has a 5xx status code

func (*ObjectsCreateForbidden) IsSuccess added in v1.18.0

func (o *ObjectsCreateForbidden) IsSuccess() bool

IsSuccess returns true when this objects create forbidden response has a 2xx status code

func (*ObjectsCreateForbidden) String added in v1.18.0

func (o *ObjectsCreateForbidden) String() string

type ObjectsCreateInternalServerError

type ObjectsCreateInternalServerError struct {
	Payload *models.ErrorResponse
}

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

An error has occurred while trying to fulfill the request. Most likely the ErrorResponse will contain more information about the error.

func NewObjectsCreateInternalServerError

func NewObjectsCreateInternalServerError() *ObjectsCreateInternalServerError

NewObjectsCreateInternalServerError creates a ObjectsCreateInternalServerError with default headers values

func (*ObjectsCreateInternalServerError) Code added in v1.18.0

Code gets the status code for the objects create internal server error response

func (*ObjectsCreateInternalServerError) Error

func (*ObjectsCreateInternalServerError) GetPayload

func (*ObjectsCreateInternalServerError) IsClientError added in v1.18.0

func (o *ObjectsCreateInternalServerError) IsClientError() bool

IsClientError returns true when this objects create internal server error response has a 4xx status code

func (*ObjectsCreateInternalServerError) IsCode added in v1.18.0

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

IsCode returns true when this objects create internal server error response a status code equal to that given

func (*ObjectsCreateInternalServerError) IsRedirect added in v1.18.0

func (o *ObjectsCreateInternalServerError) IsRedirect() bool

IsRedirect returns true when this objects create internal server error response has a 3xx status code

func (*ObjectsCreateInternalServerError) IsServerError added in v1.18.0

func (o *ObjectsCreateInternalServerError) IsServerError() bool

IsServerError returns true when this objects create internal server error response has a 5xx status code

func (*ObjectsCreateInternalServerError) IsSuccess added in v1.18.0

func (o *ObjectsCreateInternalServerError) IsSuccess() bool

IsSuccess returns true when this objects create internal server error response has a 2xx status code

func (*ObjectsCreateInternalServerError) String added in v1.18.0

type ObjectsCreateOK

type ObjectsCreateOK struct {
	Payload *models.Object
}

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

Object created.

func NewObjectsCreateOK

func NewObjectsCreateOK() *ObjectsCreateOK

NewObjectsCreateOK creates a ObjectsCreateOK with default headers values

func (*ObjectsCreateOK) Code added in v1.18.0

func (o *ObjectsCreateOK) Code() int

Code gets the status code for the objects create o k response

func (*ObjectsCreateOK) Error

func (o *ObjectsCreateOK) Error() string

func (*ObjectsCreateOK) GetPayload

func (o *ObjectsCreateOK) GetPayload() *models.Object

func (*ObjectsCreateOK) IsClientError added in v1.18.0

func (o *ObjectsCreateOK) IsClientError() bool

IsClientError returns true when this objects create o k response has a 4xx status code

func (*ObjectsCreateOK) IsCode added in v1.18.0

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

IsCode returns true when this objects create o k response a status code equal to that given

func (*ObjectsCreateOK) IsRedirect added in v1.18.0

func (o *ObjectsCreateOK) IsRedirect() bool

IsRedirect returns true when this objects create o k response has a 3xx status code

func (*ObjectsCreateOK) IsServerError added in v1.18.0

func (o *ObjectsCreateOK) IsServerError() bool

IsServerError returns true when this objects create o k response has a 5xx status code

func (*ObjectsCreateOK) IsSuccess added in v1.18.0

func (o *ObjectsCreateOK) IsSuccess() bool

IsSuccess returns true when this objects create o k response has a 2xx status code

func (*ObjectsCreateOK) String added in v1.18.0

func (o *ObjectsCreateOK) String() string

type ObjectsCreateParams

type ObjectsCreateParams struct {

	// Body.
	Body *models.Object

	/* ConsistencyLevel.

	   Determines how many replicas must acknowledge a request before it is considered successful
	*/
	ConsistencyLevel *string

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

ObjectsCreateParams contains all the parameters to send to the API endpoint

for the objects create operation.

Typically these are written to a http.Request.

func NewObjectsCreateParams

func NewObjectsCreateParams() *ObjectsCreateParams

NewObjectsCreateParams creates a new ObjectsCreateParams 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 NewObjectsCreateParamsWithContext

func NewObjectsCreateParamsWithContext(ctx context.Context) *ObjectsCreateParams

NewObjectsCreateParamsWithContext creates a new ObjectsCreateParams object with the ability to set a context for a request.

func NewObjectsCreateParamsWithHTTPClient

func NewObjectsCreateParamsWithHTTPClient(client *http.Client) *ObjectsCreateParams

NewObjectsCreateParamsWithHTTPClient creates a new ObjectsCreateParams object with the ability to set a custom HTTPClient for a request.

func NewObjectsCreateParamsWithTimeout

func NewObjectsCreateParamsWithTimeout(timeout time.Duration) *ObjectsCreateParams

NewObjectsCreateParamsWithTimeout creates a new ObjectsCreateParams object with the ability to set a timeout on a request.

func (*ObjectsCreateParams) SetBody

func (o *ObjectsCreateParams) SetBody(body *models.Object)

SetBody adds the body to the objects create params

func (*ObjectsCreateParams) SetConsistencyLevel added in v1.18.0

func (o *ObjectsCreateParams) SetConsistencyLevel(consistencyLevel *string)

SetConsistencyLevel adds the consistencyLevel to the objects create params

func (*ObjectsCreateParams) SetContext

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

SetContext adds the context to the objects create params

func (*ObjectsCreateParams) SetDefaults added in v1.18.0

func (o *ObjectsCreateParams) SetDefaults()

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

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

func (*ObjectsCreateParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the objects create params

func (*ObjectsCreateParams) SetTimeout

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

SetTimeout adds the timeout to the objects create params

func (*ObjectsCreateParams) WithBody

WithBody adds the body to the objects create params

func (*ObjectsCreateParams) WithConsistencyLevel added in v1.18.0

func (o *ObjectsCreateParams) WithConsistencyLevel(consistencyLevel *string) *ObjectsCreateParams

WithConsistencyLevel adds the consistencyLevel to the objects create params

func (*ObjectsCreateParams) WithContext

WithContext adds the context to the objects create params

func (*ObjectsCreateParams) WithDefaults added in v1.18.0

func (o *ObjectsCreateParams) WithDefaults() *ObjectsCreateParams

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

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

func (*ObjectsCreateParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the objects create params

func (*ObjectsCreateParams) WithTimeout

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

WithTimeout adds the timeout to the objects create params

func (*ObjectsCreateParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type ObjectsCreateReader

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

ObjectsCreateReader is a Reader for the ObjectsCreate structure.

func (*ObjectsCreateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ObjectsCreateUnauthorized

type ObjectsCreateUnauthorized struct {
}

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

Unauthorized or invalid credentials.

func NewObjectsCreateUnauthorized

func NewObjectsCreateUnauthorized() *ObjectsCreateUnauthorized

NewObjectsCreateUnauthorized creates a ObjectsCreateUnauthorized with default headers values

func (*ObjectsCreateUnauthorized) Code added in v1.18.0

func (o *ObjectsCreateUnauthorized) Code() int

Code gets the status code for the objects create unauthorized response

func (*ObjectsCreateUnauthorized) Error

func (o *ObjectsCreateUnauthorized) Error() string

func (*ObjectsCreateUnauthorized) IsClientError added in v1.18.0

func (o *ObjectsCreateUnauthorized) IsClientError() bool

IsClientError returns true when this objects create unauthorized response has a 4xx status code

func (*ObjectsCreateUnauthorized) IsCode added in v1.18.0

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

IsCode returns true when this objects create unauthorized response a status code equal to that given

func (*ObjectsCreateUnauthorized) IsRedirect added in v1.18.0

func (o *ObjectsCreateUnauthorized) IsRedirect() bool

IsRedirect returns true when this objects create unauthorized response has a 3xx status code

func (*ObjectsCreateUnauthorized) IsServerError added in v1.18.0

func (o *ObjectsCreateUnauthorized) IsServerError() bool

IsServerError returns true when this objects create unauthorized response has a 5xx status code

func (*ObjectsCreateUnauthorized) IsSuccess added in v1.18.0

func (o *ObjectsCreateUnauthorized) IsSuccess() bool

IsSuccess returns true when this objects create unauthorized response has a 2xx status code

func (*ObjectsCreateUnauthorized) String added in v1.18.0

func (o *ObjectsCreateUnauthorized) String() string

type ObjectsCreateUnprocessableEntity

type ObjectsCreateUnprocessableEntity struct {
	Payload *models.ErrorResponse
}

ObjectsCreateUnprocessableEntity describes a response with status code 422, with default header values.

Request body is well-formed (i.e., syntactically correct), but semantically erroneous. Are you sure the class is defined in the configuration file?

func NewObjectsCreateUnprocessableEntity

func NewObjectsCreateUnprocessableEntity() *ObjectsCreateUnprocessableEntity

NewObjectsCreateUnprocessableEntity creates a ObjectsCreateUnprocessableEntity with default headers values

func (*ObjectsCreateUnprocessableEntity) Code added in v1.18.0

Code gets the status code for the objects create unprocessable entity response

func (*ObjectsCreateUnprocessableEntity) Error

func (*ObjectsCreateUnprocessableEntity) GetPayload

func (*ObjectsCreateUnprocessableEntity) IsClientError added in v1.18.0

func (o *ObjectsCreateUnprocessableEntity) IsClientError() bool

IsClientError returns true when this objects create unprocessable entity response has a 4xx status code

func (*ObjectsCreateUnprocessableEntity) IsCode added in v1.18.0

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

IsCode returns true when this objects create unprocessable entity response a status code equal to that given

func (*ObjectsCreateUnprocessableEntity) IsRedirect added in v1.18.0

func (o *ObjectsCreateUnprocessableEntity) IsRedirect() bool

IsRedirect returns true when this objects create unprocessable entity response has a 3xx status code

func (*ObjectsCreateUnprocessableEntity) IsServerError added in v1.18.0

func (o *ObjectsCreateUnprocessableEntity) IsServerError() bool

IsServerError returns true when this objects create unprocessable entity response has a 5xx status code

func (*ObjectsCreateUnprocessableEntity) IsSuccess added in v1.18.0

func (o *ObjectsCreateUnprocessableEntity) IsSuccess() bool

IsSuccess returns true when this objects create unprocessable entity response has a 2xx status code

func (*ObjectsCreateUnprocessableEntity) String added in v1.18.0

type ObjectsDeleteForbidden

type ObjectsDeleteForbidden struct {
	Payload *models.ErrorResponse
}

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

Forbidden

func NewObjectsDeleteForbidden

func NewObjectsDeleteForbidden() *ObjectsDeleteForbidden

NewObjectsDeleteForbidden creates a ObjectsDeleteForbidden with default headers values

func (*ObjectsDeleteForbidden) Code added in v1.18.0

func (o *ObjectsDeleteForbidden) Code() int

Code gets the status code for the objects delete forbidden response

func (*ObjectsDeleteForbidden) Error

func (o *ObjectsDeleteForbidden) Error() string

func (*ObjectsDeleteForbidden) GetPayload

func (o *ObjectsDeleteForbidden) GetPayload() *models.ErrorResponse

func (*ObjectsDeleteForbidden) IsClientError added in v1.18.0

func (o *ObjectsDeleteForbidden) IsClientError() bool

IsClientError returns true when this objects delete forbidden response has a 4xx status code

func (*ObjectsDeleteForbidden) IsCode added in v1.18.0

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

IsCode returns true when this objects delete forbidden response a status code equal to that given

func (*ObjectsDeleteForbidden) IsRedirect added in v1.18.0

func (o *ObjectsDeleteForbidden) IsRedirect() bool

IsRedirect returns true when this objects delete forbidden response has a 3xx status code

func (*ObjectsDeleteForbidden) IsServerError added in v1.18.0

func (o *ObjectsDeleteForbidden) IsServerError() bool

IsServerError returns true when this objects delete forbidden response has a 5xx status code

func (*ObjectsDeleteForbidden) IsSuccess added in v1.18.0

func (o *ObjectsDeleteForbidden) IsSuccess() bool

IsSuccess returns true when this objects delete forbidden response has a 2xx status code

func (*ObjectsDeleteForbidden) String added in v1.18.0

func (o *ObjectsDeleteForbidden) String() string

type ObjectsDeleteInternalServerError

type ObjectsDeleteInternalServerError struct {
	Payload *models.ErrorResponse
}

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

An error has occurred while trying to fulfill the request. Most likely the ErrorResponse will contain more information about the error.

func NewObjectsDeleteInternalServerError

func NewObjectsDeleteInternalServerError() *ObjectsDeleteInternalServerError

NewObjectsDeleteInternalServerError creates a ObjectsDeleteInternalServerError with default headers values

func (*ObjectsDeleteInternalServerError) Code added in v1.18.0

Code gets the status code for the objects delete internal server error response

func (*ObjectsDeleteInternalServerError) Error

func (*ObjectsDeleteInternalServerError) GetPayload

func (*ObjectsDeleteInternalServerError) IsClientError added in v1.18.0

func (o *ObjectsDeleteInternalServerError) IsClientError() bool

IsClientError returns true when this objects delete internal server error response has a 4xx status code

func (*ObjectsDeleteInternalServerError) IsCode added in v1.18.0

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

IsCode returns true when this objects delete internal server error response a status code equal to that given

func (*ObjectsDeleteInternalServerError) IsRedirect added in v1.18.0

func (o *ObjectsDeleteInternalServerError) IsRedirect() bool

IsRedirect returns true when this objects delete internal server error response has a 3xx status code

func (*ObjectsDeleteInternalServerError) IsServerError added in v1.18.0

func (o *ObjectsDeleteInternalServerError) IsServerError() bool

IsServerError returns true when this objects delete internal server error response has a 5xx status code

func (*ObjectsDeleteInternalServerError) IsSuccess added in v1.18.0

func (o *ObjectsDeleteInternalServerError) IsSuccess() bool

IsSuccess returns true when this objects delete internal server error response has a 2xx status code

func (*ObjectsDeleteInternalServerError) String added in v1.18.0

type ObjectsDeleteNoContent

type ObjectsDeleteNoContent struct {
}

ObjectsDeleteNoContent describes a response with status code 204, with default header values.

Successfully deleted.

func NewObjectsDeleteNoContent

func NewObjectsDeleteNoContent() *ObjectsDeleteNoContent

NewObjectsDeleteNoContent creates a ObjectsDeleteNoContent with default headers values

func (*ObjectsDeleteNoContent) Code added in v1.18.0

func (o *ObjectsDeleteNoContent) Code() int

Code gets the status code for the objects delete no content response

func (*ObjectsDeleteNoContent) Error

func (o *ObjectsDeleteNoContent) Error() string

func (*ObjectsDeleteNoContent) IsClientError added in v1.18.0

func (o *ObjectsDeleteNoContent) IsClientError() bool

IsClientError returns true when this objects delete no content response has a 4xx status code

func (*ObjectsDeleteNoContent) IsCode added in v1.18.0

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

IsCode returns true when this objects delete no content response a status code equal to that given

func (*ObjectsDeleteNoContent) IsRedirect added in v1.18.0

func (o *ObjectsDeleteNoContent) IsRedirect() bool

IsRedirect returns true when this objects delete no content response has a 3xx status code

func (*ObjectsDeleteNoContent) IsServerError added in v1.18.0

func (o *ObjectsDeleteNoContent) IsServerError() bool

IsServerError returns true when this objects delete no content response has a 5xx status code

func (*ObjectsDeleteNoContent) IsSuccess added in v1.18.0

func (o *ObjectsDeleteNoContent) IsSuccess() bool

IsSuccess returns true when this objects delete no content response has a 2xx status code

func (*ObjectsDeleteNoContent) String added in v1.18.0

func (o *ObjectsDeleteNoContent) String() string

type ObjectsDeleteNotFound

type ObjectsDeleteNotFound struct {
}

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

Successful query result but no resource was found.

func NewObjectsDeleteNotFound

func NewObjectsDeleteNotFound() *ObjectsDeleteNotFound

NewObjectsDeleteNotFound creates a ObjectsDeleteNotFound with default headers values

func (*ObjectsDeleteNotFound) Code added in v1.18.0

func (o *ObjectsDeleteNotFound) Code() int

Code gets the status code for the objects delete not found response

func (*ObjectsDeleteNotFound) Error

func (o *ObjectsDeleteNotFound) Error() string

func (*ObjectsDeleteNotFound) IsClientError added in v1.18.0

func (o *ObjectsDeleteNotFound) IsClientError() bool

IsClientError returns true when this objects delete not found response has a 4xx status code

func (*ObjectsDeleteNotFound) IsCode added in v1.18.0

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

IsCode returns true when this objects delete not found response a status code equal to that given

func (*ObjectsDeleteNotFound) IsRedirect added in v1.18.0

func (o *ObjectsDeleteNotFound) IsRedirect() bool

IsRedirect returns true when this objects delete not found response has a 3xx status code

func (*ObjectsDeleteNotFound) IsServerError added in v1.18.0

func (o *ObjectsDeleteNotFound) IsServerError() bool

IsServerError returns true when this objects delete not found response has a 5xx status code

func (*ObjectsDeleteNotFound) IsSuccess added in v1.18.0

func (o *ObjectsDeleteNotFound) IsSuccess() bool

IsSuccess returns true when this objects delete not found response has a 2xx status code

func (*ObjectsDeleteNotFound) String added in v1.18.0

func (o *ObjectsDeleteNotFound) String() string

type ObjectsDeleteParams

type ObjectsDeleteParams struct {

	/* ConsistencyLevel.

	   Determines how many replicas must acknowledge a request before it is considered successful
	*/
	ConsistencyLevel *string

	/* ID.

	   Unique ID of the Object.

	   Format: uuid
	*/
	ID strfmt.UUID

	/* Tenant.

	   Specifies the tenant in a request targeting a multi-tenant class
	*/
	Tenant *string

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

ObjectsDeleteParams contains all the parameters to send to the API endpoint

for the objects delete operation.

Typically these are written to a http.Request.

func NewObjectsDeleteParams

func NewObjectsDeleteParams() *ObjectsDeleteParams

NewObjectsDeleteParams creates a new ObjectsDeleteParams 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 NewObjectsDeleteParamsWithContext

func NewObjectsDeleteParamsWithContext(ctx context.Context) *ObjectsDeleteParams

NewObjectsDeleteParamsWithContext creates a new ObjectsDeleteParams object with the ability to set a context for a request.

func NewObjectsDeleteParamsWithHTTPClient

func NewObjectsDeleteParamsWithHTTPClient(client *http.Client) *ObjectsDeleteParams

NewObjectsDeleteParamsWithHTTPClient creates a new ObjectsDeleteParams object with the ability to set a custom HTTPClient for a request.

func NewObjectsDeleteParamsWithTimeout

func NewObjectsDeleteParamsWithTimeout(timeout time.Duration) *ObjectsDeleteParams

NewObjectsDeleteParamsWithTimeout creates a new ObjectsDeleteParams object with the ability to set a timeout on a request.

func (*ObjectsDeleteParams) SetConsistencyLevel added in v1.18.0

func (o *ObjectsDeleteParams) SetConsistencyLevel(consistencyLevel *string)

SetConsistencyLevel adds the consistencyLevel to the objects delete params

func (*ObjectsDeleteParams) SetContext

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

SetContext adds the context to the objects delete params

func (*ObjectsDeleteParams) SetDefaults added in v1.18.0

func (o *ObjectsDeleteParams) SetDefaults()

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

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

func (*ObjectsDeleteParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the objects delete params

func (*ObjectsDeleteParams) SetID

func (o *ObjectsDeleteParams) SetID(id strfmt.UUID)

SetID adds the id to the objects delete params

func (*ObjectsDeleteParams) SetTenant added in v1.20.0

func (o *ObjectsDeleteParams) SetTenant(tenant *string)

SetTenant adds the tenant to the objects delete params

func (*ObjectsDeleteParams) SetTimeout

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

SetTimeout adds the timeout to the objects delete params

func (*ObjectsDeleteParams) WithConsistencyLevel added in v1.18.0

func (o *ObjectsDeleteParams) WithConsistencyLevel(consistencyLevel *string) *ObjectsDeleteParams

WithConsistencyLevel adds the consistencyLevel to the objects delete params

func (*ObjectsDeleteParams) WithContext

WithContext adds the context to the objects delete params

func (*ObjectsDeleteParams) WithDefaults added in v1.18.0

func (o *ObjectsDeleteParams) WithDefaults() *ObjectsDeleteParams

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

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

func (*ObjectsDeleteParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the objects delete params

func (*ObjectsDeleteParams) WithID

WithID adds the id to the objects delete params

func (*ObjectsDeleteParams) WithTenant added in v1.20.0

func (o *ObjectsDeleteParams) WithTenant(tenant *string) *ObjectsDeleteParams

WithTenant adds the tenant to the objects delete params

func (*ObjectsDeleteParams) WithTimeout

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

WithTimeout adds the timeout to the objects delete params

func (*ObjectsDeleteParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type ObjectsDeleteReader

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

ObjectsDeleteReader is a Reader for the ObjectsDelete structure.

func (*ObjectsDeleteReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ObjectsDeleteUnauthorized

type ObjectsDeleteUnauthorized struct {
}

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

Unauthorized or invalid credentials.

func NewObjectsDeleteUnauthorized

func NewObjectsDeleteUnauthorized() *ObjectsDeleteUnauthorized

NewObjectsDeleteUnauthorized creates a ObjectsDeleteUnauthorized with default headers values

func (*ObjectsDeleteUnauthorized) Code added in v1.18.0

func (o *ObjectsDeleteUnauthorized) Code() int

Code gets the status code for the objects delete unauthorized response

func (*ObjectsDeleteUnauthorized) Error

func (o *ObjectsDeleteUnauthorized) Error() string

func (*ObjectsDeleteUnauthorized) IsClientError added in v1.18.0

func (o *ObjectsDeleteUnauthorized) IsClientError() bool

IsClientError returns true when this objects delete unauthorized response has a 4xx status code

func (*ObjectsDeleteUnauthorized) IsCode added in v1.18.0

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

IsCode returns true when this objects delete unauthorized response a status code equal to that given

func (*ObjectsDeleteUnauthorized) IsRedirect added in v1.18.0

func (o *ObjectsDeleteUnauthorized) IsRedirect() bool

IsRedirect returns true when this objects delete unauthorized response has a 3xx status code

func (*ObjectsDeleteUnauthorized) IsServerError added in v1.18.0

func (o *ObjectsDeleteUnauthorized) IsServerError() bool

IsServerError returns true when this objects delete unauthorized response has a 5xx status code

func (*ObjectsDeleteUnauthorized) IsSuccess added in v1.18.0

func (o *ObjectsDeleteUnauthorized) IsSuccess() bool

IsSuccess returns true when this objects delete unauthorized response has a 2xx status code

func (*ObjectsDeleteUnauthorized) String added in v1.18.0

func (o *ObjectsDeleteUnauthorized) String() string

type ObjectsGetBadRequest

type ObjectsGetBadRequest struct {
	Payload *models.ErrorResponse
}

ObjectsGetBadRequest describes a response with status code 400, with default header values.

Malformed request.

func NewObjectsGetBadRequest

func NewObjectsGetBadRequest() *ObjectsGetBadRequest

NewObjectsGetBadRequest creates a ObjectsGetBadRequest with default headers values

func (*ObjectsGetBadRequest) Code added in v1.18.0

func (o *ObjectsGetBadRequest) Code() int

Code gets the status code for the objects get bad request response

func (*ObjectsGetBadRequest) Error

func (o *ObjectsGetBadRequest) Error() string

func (*ObjectsGetBadRequest) GetPayload

func (o *ObjectsGetBadRequest) GetPayload() *models.ErrorResponse

func (*ObjectsGetBadRequest) IsClientError added in v1.18.0

func (o *ObjectsGetBadRequest) IsClientError() bool

IsClientError returns true when this objects get bad request response has a 4xx status code

func (*ObjectsGetBadRequest) IsCode added in v1.18.0

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

IsCode returns true when this objects get bad request response a status code equal to that given

func (*ObjectsGetBadRequest) IsRedirect added in v1.18.0

func (o *ObjectsGetBadRequest) IsRedirect() bool

IsRedirect returns true when this objects get bad request response has a 3xx status code

func (*ObjectsGetBadRequest) IsServerError added in v1.18.0

func (o *ObjectsGetBadRequest) IsServerError() bool

IsServerError returns true when this objects get bad request response has a 5xx status code

func (*ObjectsGetBadRequest) IsSuccess added in v1.18.0

func (o *ObjectsGetBadRequest) IsSuccess() bool

IsSuccess returns true when this objects get bad request response has a 2xx status code

func (*ObjectsGetBadRequest) String added in v1.18.0

func (o *ObjectsGetBadRequest) String() string

type ObjectsGetForbidden

type ObjectsGetForbidden struct {
	Payload *models.ErrorResponse
}

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

Forbidden

func NewObjectsGetForbidden

func NewObjectsGetForbidden() *ObjectsGetForbidden

NewObjectsGetForbidden creates a ObjectsGetForbidden with default headers values

func (*ObjectsGetForbidden) Code added in v1.18.0

func (o *ObjectsGetForbidden) Code() int

Code gets the status code for the objects get forbidden response

func (*ObjectsGetForbidden) Error

func (o *ObjectsGetForbidden) Error() string

func (*ObjectsGetForbidden) GetPayload

func (o *ObjectsGetForbidden) GetPayload() *models.ErrorResponse

func (*ObjectsGetForbidden) IsClientError added in v1.18.0

func (o *ObjectsGetForbidden) IsClientError() bool

IsClientError returns true when this objects get forbidden response has a 4xx status code

func (*ObjectsGetForbidden) IsCode added in v1.18.0

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

IsCode returns true when this objects get forbidden response a status code equal to that given

func (*ObjectsGetForbidden) IsRedirect added in v1.18.0

func (o *ObjectsGetForbidden) IsRedirect() bool

IsRedirect returns true when this objects get forbidden response has a 3xx status code

func (*ObjectsGetForbidden) IsServerError added in v1.18.0

func (o *ObjectsGetForbidden) IsServerError() bool

IsServerError returns true when this objects get forbidden response has a 5xx status code

func (*ObjectsGetForbidden) IsSuccess added in v1.18.0

func (o *ObjectsGetForbidden) IsSuccess() bool

IsSuccess returns true when this objects get forbidden response has a 2xx status code

func (*ObjectsGetForbidden) String added in v1.18.0

func (o *ObjectsGetForbidden) String() string

type ObjectsGetInternalServerError

type ObjectsGetInternalServerError struct {
	Payload *models.ErrorResponse
}

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

An error has occurred while trying to fulfill the request. Most likely the ErrorResponse will contain more information about the error.

func NewObjectsGetInternalServerError

func NewObjectsGetInternalServerError() *ObjectsGetInternalServerError

NewObjectsGetInternalServerError creates a ObjectsGetInternalServerError with default headers values

func (*ObjectsGetInternalServerError) Code added in v1.18.0

Code gets the status code for the objects get internal server error response

func (*ObjectsGetInternalServerError) Error

func (*ObjectsGetInternalServerError) GetPayload

func (*ObjectsGetInternalServerError) IsClientError added in v1.18.0

func (o *ObjectsGetInternalServerError) IsClientError() bool

IsClientError returns true when this objects get internal server error response has a 4xx status code

func (*ObjectsGetInternalServerError) IsCode added in v1.18.0

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

IsCode returns true when this objects get internal server error response a status code equal to that given

func (*ObjectsGetInternalServerError) IsRedirect added in v1.18.0

func (o *ObjectsGetInternalServerError) IsRedirect() bool

IsRedirect returns true when this objects get internal server error response has a 3xx status code

func (*ObjectsGetInternalServerError) IsServerError added in v1.18.0

func (o *ObjectsGetInternalServerError) IsServerError() bool

IsServerError returns true when this objects get internal server error response has a 5xx status code

func (*ObjectsGetInternalServerError) IsSuccess added in v1.18.0

func (o *ObjectsGetInternalServerError) IsSuccess() bool

IsSuccess returns true when this objects get internal server error response has a 2xx status code

func (*ObjectsGetInternalServerError) String added in v1.18.0

type ObjectsGetNotFound

type ObjectsGetNotFound struct {
}

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

Successful query result but no resource was found.

func NewObjectsGetNotFound

func NewObjectsGetNotFound() *ObjectsGetNotFound

NewObjectsGetNotFound creates a ObjectsGetNotFound with default headers values

func (*ObjectsGetNotFound) Code added in v1.18.0

func (o *ObjectsGetNotFound) Code() int

Code gets the status code for the objects get not found response

func (*ObjectsGetNotFound) Error

func (o *ObjectsGetNotFound) Error() string

func (*ObjectsGetNotFound) IsClientError added in v1.18.0

func (o *ObjectsGetNotFound) IsClientError() bool

IsClientError returns true when this objects get not found response has a 4xx status code

func (*ObjectsGetNotFound) IsCode added in v1.18.0

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

IsCode returns true when this objects get not found response a status code equal to that given

func (*ObjectsGetNotFound) IsRedirect added in v1.18.0

func (o *ObjectsGetNotFound) IsRedirect() bool

IsRedirect returns true when this objects get not found response has a 3xx status code

func (*ObjectsGetNotFound) IsServerError added in v1.18.0

func (o *ObjectsGetNotFound) IsServerError() bool

IsServerError returns true when this objects get not found response has a 5xx status code

func (*ObjectsGetNotFound) IsSuccess added in v1.18.0

func (o *ObjectsGetNotFound) IsSuccess() bool

IsSuccess returns true when this objects get not found response has a 2xx status code

func (*ObjectsGetNotFound) String added in v1.18.0

func (o *ObjectsGetNotFound) String() string

type ObjectsGetOK

type ObjectsGetOK struct {
	Payload *models.Object
}

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

Successful response.

func NewObjectsGetOK

func NewObjectsGetOK() *ObjectsGetOK

NewObjectsGetOK creates a ObjectsGetOK with default headers values

func (*ObjectsGetOK) Code added in v1.18.0

func (o *ObjectsGetOK) Code() int

Code gets the status code for the objects get o k response

func (*ObjectsGetOK) Error

func (o *ObjectsGetOK) Error() string

func (*ObjectsGetOK) GetPayload

func (o *ObjectsGetOK) GetPayload() *models.Object

func (*ObjectsGetOK) IsClientError added in v1.18.0

func (o *ObjectsGetOK) IsClientError() bool

IsClientError returns true when this objects get o k response has a 4xx status code

func (*ObjectsGetOK) IsCode added in v1.18.0

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

IsCode returns true when this objects get o k response a status code equal to that given

func (*ObjectsGetOK) IsRedirect added in v1.18.0

func (o *ObjectsGetOK) IsRedirect() bool

IsRedirect returns true when this objects get o k response has a 3xx status code

func (*ObjectsGetOK) IsServerError added in v1.18.0

func (o *ObjectsGetOK) IsServerError() bool

IsServerError returns true when this objects get o k response has a 5xx status code

func (*ObjectsGetOK) IsSuccess added in v1.18.0

func (o *ObjectsGetOK) IsSuccess() bool

IsSuccess returns true when this objects get o k response has a 2xx status code

func (*ObjectsGetOK) String added in v1.18.0

func (o *ObjectsGetOK) String() string

type ObjectsGetParams

type ObjectsGetParams struct {

	/* ID.

	   Unique ID of the Object.

	   Format: uuid
	*/
	ID strfmt.UUID

	/* Include.

	   Include additional information, such as classification infos. Allowed values include: classification, vector, interpretation
	*/
	Include *string

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

ObjectsGetParams contains all the parameters to send to the API endpoint

for the objects get operation.

Typically these are written to a http.Request.

func NewObjectsGetParams

func NewObjectsGetParams() *ObjectsGetParams

NewObjectsGetParams creates a new ObjectsGetParams 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 NewObjectsGetParamsWithContext

func NewObjectsGetParamsWithContext(ctx context.Context) *ObjectsGetParams

NewObjectsGetParamsWithContext creates a new ObjectsGetParams object with the ability to set a context for a request.

func NewObjectsGetParamsWithHTTPClient

func NewObjectsGetParamsWithHTTPClient(client *http.Client) *ObjectsGetParams

NewObjectsGetParamsWithHTTPClient creates a new ObjectsGetParams object with the ability to set a custom HTTPClient for a request.

func NewObjectsGetParamsWithTimeout

func NewObjectsGetParamsWithTimeout(timeout time.Duration) *ObjectsGetParams

NewObjectsGetParamsWithTimeout creates a new ObjectsGetParams object with the ability to set a timeout on a request.

func (*ObjectsGetParams) SetContext

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

SetContext adds the context to the objects get params

func (*ObjectsGetParams) SetDefaults added in v1.18.0

func (o *ObjectsGetParams) SetDefaults()

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

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

func (*ObjectsGetParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the objects get params

func (*ObjectsGetParams) SetID

func (o *ObjectsGetParams) SetID(id strfmt.UUID)

SetID adds the id to the objects get params

func (*ObjectsGetParams) SetInclude

func (o *ObjectsGetParams) SetInclude(include *string)

SetInclude adds the include to the objects get params

func (*ObjectsGetParams) SetTimeout

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

SetTimeout adds the timeout to the objects get params

func (*ObjectsGetParams) WithContext

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

WithContext adds the context to the objects get params

func (*ObjectsGetParams) WithDefaults added in v1.18.0

func (o *ObjectsGetParams) WithDefaults() *ObjectsGetParams

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

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

func (*ObjectsGetParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the objects get params

func (*ObjectsGetParams) WithID

WithID adds the id to the objects get params

func (*ObjectsGetParams) WithInclude

func (o *ObjectsGetParams) WithInclude(include *string) *ObjectsGetParams

WithInclude adds the include to the objects get params

func (*ObjectsGetParams) WithTimeout

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

WithTimeout adds the timeout to the objects get params

func (*ObjectsGetParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type ObjectsGetReader

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

ObjectsGetReader is a Reader for the ObjectsGet structure.

func (*ObjectsGetReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ObjectsGetUnauthorized

type ObjectsGetUnauthorized struct {
}

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

Unauthorized or invalid credentials.

func NewObjectsGetUnauthorized

func NewObjectsGetUnauthorized() *ObjectsGetUnauthorized

NewObjectsGetUnauthorized creates a ObjectsGetUnauthorized with default headers values

func (*ObjectsGetUnauthorized) Code added in v1.18.0

func (o *ObjectsGetUnauthorized) Code() int

Code gets the status code for the objects get unauthorized response

func (*ObjectsGetUnauthorized) Error

func (o *ObjectsGetUnauthorized) Error() string

func (*ObjectsGetUnauthorized) IsClientError added in v1.18.0

func (o *ObjectsGetUnauthorized) IsClientError() bool

IsClientError returns true when this objects get unauthorized response has a 4xx status code

func (*ObjectsGetUnauthorized) IsCode added in v1.18.0

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

IsCode returns true when this objects get unauthorized response a status code equal to that given

func (*ObjectsGetUnauthorized) IsRedirect added in v1.18.0

func (o *ObjectsGetUnauthorized) IsRedirect() bool

IsRedirect returns true when this objects get unauthorized response has a 3xx status code

func (*ObjectsGetUnauthorized) IsServerError added in v1.18.0

func (o *ObjectsGetUnauthorized) IsServerError() bool

IsServerError returns true when this objects get unauthorized response has a 5xx status code

func (*ObjectsGetUnauthorized) IsSuccess added in v1.18.0

func (o *ObjectsGetUnauthorized) IsSuccess() bool

IsSuccess returns true when this objects get unauthorized response has a 2xx status code

func (*ObjectsGetUnauthorized) String added in v1.18.0

func (o *ObjectsGetUnauthorized) String() string

type ObjectsHeadForbidden

type ObjectsHeadForbidden struct {
	Payload *models.ErrorResponse
}

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

Forbidden

func NewObjectsHeadForbidden

func NewObjectsHeadForbidden() *ObjectsHeadForbidden

NewObjectsHeadForbidden creates a ObjectsHeadForbidden with default headers values

func (*ObjectsHeadForbidden) Code added in v1.18.0

func (o *ObjectsHeadForbidden) Code() int

Code gets the status code for the objects head forbidden response

func (*ObjectsHeadForbidden) Error

func (o *ObjectsHeadForbidden) Error() string

func (*ObjectsHeadForbidden) GetPayload

func (o *ObjectsHeadForbidden) GetPayload() *models.ErrorResponse

func (*ObjectsHeadForbidden) IsClientError added in v1.18.0

func (o *ObjectsHeadForbidden) IsClientError() bool

IsClientError returns true when this objects head forbidden response has a 4xx status code

func (*ObjectsHeadForbidden) IsCode added in v1.18.0

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

IsCode returns true when this objects head forbidden response a status code equal to that given

func (*ObjectsHeadForbidden) IsRedirect added in v1.18.0

func (o *ObjectsHeadForbidden) IsRedirect() bool

IsRedirect returns true when this objects head forbidden response has a 3xx status code

func (*ObjectsHeadForbidden) IsServerError added in v1.18.0

func (o *ObjectsHeadForbidden) IsServerError() bool

IsServerError returns true when this objects head forbidden response has a 5xx status code

func (*ObjectsHeadForbidden) IsSuccess added in v1.18.0

func (o *ObjectsHeadForbidden) IsSuccess() bool

IsSuccess returns true when this objects head forbidden response has a 2xx status code

func (*ObjectsHeadForbidden) String added in v1.18.0

func (o *ObjectsHeadForbidden) String() string

type ObjectsHeadInternalServerError

type ObjectsHeadInternalServerError struct {
	Payload *models.ErrorResponse
}

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

An error has occurred while trying to fulfill the request. Most likely the ErrorResponse will contain more information about the error.

func NewObjectsHeadInternalServerError

func NewObjectsHeadInternalServerError() *ObjectsHeadInternalServerError

NewObjectsHeadInternalServerError creates a ObjectsHeadInternalServerError with default headers values

func (*ObjectsHeadInternalServerError) Code added in v1.18.0

Code gets the status code for the objects head internal server error response

func (*ObjectsHeadInternalServerError) Error

func (*ObjectsHeadInternalServerError) GetPayload

func (*ObjectsHeadInternalServerError) IsClientError added in v1.18.0

func (o *ObjectsHeadInternalServerError) IsClientError() bool

IsClientError returns true when this objects head internal server error response has a 4xx status code

func (*ObjectsHeadInternalServerError) IsCode added in v1.18.0

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

IsCode returns true when this objects head internal server error response a status code equal to that given

func (*ObjectsHeadInternalServerError) IsRedirect added in v1.18.0

func (o *ObjectsHeadInternalServerError) IsRedirect() bool

IsRedirect returns true when this objects head internal server error response has a 3xx status code

func (*ObjectsHeadInternalServerError) IsServerError added in v1.18.0

func (o *ObjectsHeadInternalServerError) IsServerError() bool

IsServerError returns true when this objects head internal server error response has a 5xx status code

func (*ObjectsHeadInternalServerError) IsSuccess added in v1.18.0

func (o *ObjectsHeadInternalServerError) IsSuccess() bool

IsSuccess returns true when this objects head internal server error response has a 2xx status code

func (*ObjectsHeadInternalServerError) String added in v1.18.0

type ObjectsHeadNoContent

type ObjectsHeadNoContent struct {
}

ObjectsHeadNoContent describes a response with status code 204, with default header values.

Object exists.

func NewObjectsHeadNoContent

func NewObjectsHeadNoContent() *ObjectsHeadNoContent

NewObjectsHeadNoContent creates a ObjectsHeadNoContent with default headers values

func (*ObjectsHeadNoContent) Code added in v1.18.0

func (o *ObjectsHeadNoContent) Code() int

Code gets the status code for the objects head no content response

func (*ObjectsHeadNoContent) Error

func (o *ObjectsHeadNoContent) Error() string

func (*ObjectsHeadNoContent) IsClientError added in v1.18.0

func (o *ObjectsHeadNoContent) IsClientError() bool

IsClientError returns true when this objects head no content response has a 4xx status code

func (*ObjectsHeadNoContent) IsCode added in v1.18.0

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

IsCode returns true when this objects head no content response a status code equal to that given

func (*ObjectsHeadNoContent) IsRedirect added in v1.18.0

func (o *ObjectsHeadNoContent) IsRedirect() bool

IsRedirect returns true when this objects head no content response has a 3xx status code

func (*ObjectsHeadNoContent) IsServerError added in v1.18.0

func (o *ObjectsHeadNoContent) IsServerError() bool

IsServerError returns true when this objects head no content response has a 5xx status code

func (*ObjectsHeadNoContent) IsSuccess added in v1.18.0

func (o *ObjectsHeadNoContent) IsSuccess() bool

IsSuccess returns true when this objects head no content response has a 2xx status code

func (*ObjectsHeadNoContent) String added in v1.18.0

func (o *ObjectsHeadNoContent) String() string

type ObjectsHeadNotFound

type ObjectsHeadNotFound struct {
}

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

Object doesn't exist.

func NewObjectsHeadNotFound

func NewObjectsHeadNotFound() *ObjectsHeadNotFound

NewObjectsHeadNotFound creates a ObjectsHeadNotFound with default headers values

func (*ObjectsHeadNotFound) Code added in v1.18.0

func (o *ObjectsHeadNotFound) Code() int

Code gets the status code for the objects head not found response

func (*ObjectsHeadNotFound) Error

func (o *ObjectsHeadNotFound) Error() string

func (*ObjectsHeadNotFound) IsClientError added in v1.18.0

func (o *ObjectsHeadNotFound) IsClientError() bool

IsClientError returns true when this objects head not found response has a 4xx status code

func (*ObjectsHeadNotFound) IsCode added in v1.18.0

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

IsCode returns true when this objects head not found response a status code equal to that given

func (*ObjectsHeadNotFound) IsRedirect added in v1.18.0

func (o *ObjectsHeadNotFound) IsRedirect() bool

IsRedirect returns true when this objects head not found response has a 3xx status code

func (*ObjectsHeadNotFound) IsServerError added in v1.18.0

func (o *ObjectsHeadNotFound) IsServerError() bool

IsServerError returns true when this objects head not found response has a 5xx status code

func (*ObjectsHeadNotFound) IsSuccess added in v1.18.0

func (o *ObjectsHeadNotFound) IsSuccess() bool

IsSuccess returns true when this objects head not found response has a 2xx status code

func (*ObjectsHeadNotFound) String added in v1.18.0

func (o *ObjectsHeadNotFound) String() string

type ObjectsHeadParams

type ObjectsHeadParams struct {

	/* ID.

	   Unique ID of the Object.

	   Format: uuid
	*/
	ID strfmt.UUID

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

ObjectsHeadParams contains all the parameters to send to the API endpoint

for the objects head operation.

Typically these are written to a http.Request.

func NewObjectsHeadParams

func NewObjectsHeadParams() *ObjectsHeadParams

NewObjectsHeadParams creates a new ObjectsHeadParams 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 NewObjectsHeadParamsWithContext

func NewObjectsHeadParamsWithContext(ctx context.Context) *ObjectsHeadParams

NewObjectsHeadParamsWithContext creates a new ObjectsHeadParams object with the ability to set a context for a request.

func NewObjectsHeadParamsWithHTTPClient

func NewObjectsHeadParamsWithHTTPClient(client *http.Client) *ObjectsHeadParams

NewObjectsHeadParamsWithHTTPClient creates a new ObjectsHeadParams object with the ability to set a custom HTTPClient for a request.

func NewObjectsHeadParamsWithTimeout

func NewObjectsHeadParamsWithTimeout(timeout time.Duration) *ObjectsHeadParams

NewObjectsHeadParamsWithTimeout creates a new ObjectsHeadParams object with the ability to set a timeout on a request.

func (*ObjectsHeadParams) SetContext

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

SetContext adds the context to the objects head params

func (*ObjectsHeadParams) SetDefaults added in v1.18.0

func (o *ObjectsHeadParams) SetDefaults()

SetDefaults hydrates default values in the objects head params (not the query body).

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

func (*ObjectsHeadParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the objects head params

func (*ObjectsHeadParams) SetID

func (o *ObjectsHeadParams) SetID(id strfmt.UUID)

SetID adds the id to the objects head params

func (*ObjectsHeadParams) SetTimeout

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

SetTimeout adds the timeout to the objects head params

func (*ObjectsHeadParams) WithContext

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

WithContext adds the context to the objects head params

func (*ObjectsHeadParams) WithDefaults added in v1.18.0

func (o *ObjectsHeadParams) WithDefaults() *ObjectsHeadParams

WithDefaults hydrates default values in the objects head params (not the query body).

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

func (*ObjectsHeadParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the objects head params

func (*ObjectsHeadParams) WithID

WithID adds the id to the objects head params

func (*ObjectsHeadParams) WithTimeout

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

WithTimeout adds the timeout to the objects head params

func (*ObjectsHeadParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type ObjectsHeadReader

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

ObjectsHeadReader is a Reader for the ObjectsHead structure.

func (*ObjectsHeadReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ObjectsHeadUnauthorized

type ObjectsHeadUnauthorized struct {
}

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

Unauthorized or invalid credentials.

func NewObjectsHeadUnauthorized

func NewObjectsHeadUnauthorized() *ObjectsHeadUnauthorized

NewObjectsHeadUnauthorized creates a ObjectsHeadUnauthorized with default headers values

func (*ObjectsHeadUnauthorized) Code added in v1.18.0

func (o *ObjectsHeadUnauthorized) Code() int

Code gets the status code for the objects head unauthorized response

func (*ObjectsHeadUnauthorized) Error

func (o *ObjectsHeadUnauthorized) Error() string

func (*ObjectsHeadUnauthorized) IsClientError added in v1.18.0

func (o *ObjectsHeadUnauthorized) IsClientError() bool

IsClientError returns true when this objects head unauthorized response has a 4xx status code

func (*ObjectsHeadUnauthorized) IsCode added in v1.18.0

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

IsCode returns true when this objects head unauthorized response a status code equal to that given

func (*ObjectsHeadUnauthorized) IsRedirect added in v1.18.0

func (o *ObjectsHeadUnauthorized) IsRedirect() bool

IsRedirect returns true when this objects head unauthorized response has a 3xx status code

func (*ObjectsHeadUnauthorized) IsServerError added in v1.18.0

func (o *ObjectsHeadUnauthorized) IsServerError() bool

IsServerError returns true when this objects head unauthorized response has a 5xx status code

func (*ObjectsHeadUnauthorized) IsSuccess added in v1.18.0

func (o *ObjectsHeadUnauthorized) IsSuccess() bool

IsSuccess returns true when this objects head unauthorized response has a 2xx status code

func (*ObjectsHeadUnauthorized) String added in v1.18.0

func (o *ObjectsHeadUnauthorized) String() string

type ObjectsListBadRequest

type ObjectsListBadRequest struct {
	Payload *models.ErrorResponse
}

ObjectsListBadRequest describes a response with status code 400, with default header values.

Malformed request.

func NewObjectsListBadRequest

func NewObjectsListBadRequest() *ObjectsListBadRequest

NewObjectsListBadRequest creates a ObjectsListBadRequest with default headers values

func (*ObjectsListBadRequest) Code added in v1.18.0

func (o *ObjectsListBadRequest) Code() int

Code gets the status code for the objects list bad request response

func (*ObjectsListBadRequest) Error

func (o *ObjectsListBadRequest) Error() string

func (*ObjectsListBadRequest) GetPayload

func (o *ObjectsListBadRequest) GetPayload() *models.ErrorResponse

func (*ObjectsListBadRequest) IsClientError added in v1.18.0

func (o *ObjectsListBadRequest) IsClientError() bool

IsClientError returns true when this objects list bad request response has a 4xx status code

func (*ObjectsListBadRequest) IsCode added in v1.18.0

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

IsCode returns true when this objects list bad request response a status code equal to that given

func (*ObjectsListBadRequest) IsRedirect added in v1.18.0

func (o *ObjectsListBadRequest) IsRedirect() bool

IsRedirect returns true when this objects list bad request response has a 3xx status code

func (*ObjectsListBadRequest) IsServerError added in v1.18.0

func (o *ObjectsListBadRequest) IsServerError() bool

IsServerError returns true when this objects list bad request response has a 5xx status code

func (*ObjectsListBadRequest) IsSuccess added in v1.18.0

func (o *ObjectsListBadRequest) IsSuccess() bool

IsSuccess returns true when this objects list bad request response has a 2xx status code

func (*ObjectsListBadRequest) String added in v1.18.0

func (o *ObjectsListBadRequest) String() string

type ObjectsListForbidden

type ObjectsListForbidden struct {
	Payload *models.ErrorResponse
}

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

Forbidden

func NewObjectsListForbidden

func NewObjectsListForbidden() *ObjectsListForbidden

NewObjectsListForbidden creates a ObjectsListForbidden with default headers values

func (*ObjectsListForbidden) Code added in v1.18.0

func (o *ObjectsListForbidden) Code() int

Code gets the status code for the objects list forbidden response

func (*ObjectsListForbidden) Error

func (o *ObjectsListForbidden) Error() string

func (*ObjectsListForbidden) GetPayload

func (o *ObjectsListForbidden) GetPayload() *models.ErrorResponse

func (*ObjectsListForbidden) IsClientError added in v1.18.0

func (o *ObjectsListForbidden) IsClientError() bool

IsClientError returns true when this objects list forbidden response has a 4xx status code

func (*ObjectsListForbidden) IsCode added in v1.18.0

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

IsCode returns true when this objects list forbidden response a status code equal to that given

func (*ObjectsListForbidden) IsRedirect added in v1.18.0

func (o *ObjectsListForbidden) IsRedirect() bool

IsRedirect returns true when this objects list forbidden response has a 3xx status code

func (*ObjectsListForbidden) IsServerError added in v1.18.0

func (o *ObjectsListForbidden) IsServerError() bool

IsServerError returns true when this objects list forbidden response has a 5xx status code

func (*ObjectsListForbidden) IsSuccess added in v1.18.0

func (o *ObjectsListForbidden) IsSuccess() bool

IsSuccess returns true when this objects list forbidden response has a 2xx status code

func (*ObjectsListForbidden) String added in v1.18.0

func (o *ObjectsListForbidden) String() string

type ObjectsListInternalServerError

type ObjectsListInternalServerError struct {
	Payload *models.ErrorResponse
}

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

An error has occurred while trying to fulfill the request. Most likely the ErrorResponse will contain more information about the error.

func NewObjectsListInternalServerError

func NewObjectsListInternalServerError() *ObjectsListInternalServerError

NewObjectsListInternalServerError creates a ObjectsListInternalServerError with default headers values

func (*ObjectsListInternalServerError) Code added in v1.18.0

Code gets the status code for the objects list internal server error response

func (*ObjectsListInternalServerError) Error

func (*ObjectsListInternalServerError) GetPayload

func (*ObjectsListInternalServerError) IsClientError added in v1.18.0

func (o *ObjectsListInternalServerError) IsClientError() bool

IsClientError returns true when this objects list internal server error response has a 4xx status code

func (*ObjectsListInternalServerError) IsCode added in v1.18.0

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

IsCode returns true when this objects list internal server error response a status code equal to that given

func (*ObjectsListInternalServerError) IsRedirect added in v1.18.0

func (o *ObjectsListInternalServerError) IsRedirect() bool

IsRedirect returns true when this objects list internal server error response has a 3xx status code

func (*ObjectsListInternalServerError) IsServerError added in v1.18.0

func (o *ObjectsListInternalServerError) IsServerError() bool

IsServerError returns true when this objects list internal server error response has a 5xx status code

func (*ObjectsListInternalServerError) IsSuccess added in v1.18.0

func (o *ObjectsListInternalServerError) IsSuccess() bool

IsSuccess returns true when this objects list internal server error response has a 2xx status code

func (*ObjectsListInternalServerError) String added in v1.18.0

type ObjectsListNotFound

type ObjectsListNotFound struct {
}

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

Successful query result but no resource was found.

func NewObjectsListNotFound

func NewObjectsListNotFound() *ObjectsListNotFound

NewObjectsListNotFound creates a ObjectsListNotFound with default headers values

func (*ObjectsListNotFound) Code added in v1.18.0

func (o *ObjectsListNotFound) Code() int

Code gets the status code for the objects list not found response

func (*ObjectsListNotFound) Error

func (o *ObjectsListNotFound) Error() string

func (*ObjectsListNotFound) IsClientError added in v1.18.0

func (o *ObjectsListNotFound) IsClientError() bool

IsClientError returns true when this objects list not found response has a 4xx status code

func (*ObjectsListNotFound) IsCode added in v1.18.0

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

IsCode returns true when this objects list not found response a status code equal to that given

func (*ObjectsListNotFound) IsRedirect added in v1.18.0

func (o *ObjectsListNotFound) IsRedirect() bool

IsRedirect returns true when this objects list not found response has a 3xx status code

func (*ObjectsListNotFound) IsServerError added in v1.18.0

func (o *ObjectsListNotFound) IsServerError() bool

IsServerError returns true when this objects list not found response has a 5xx status code

func (*ObjectsListNotFound) IsSuccess added in v1.18.0

func (o *ObjectsListNotFound) IsSuccess() bool

IsSuccess returns true when this objects list not found response has a 2xx status code

func (*ObjectsListNotFound) String added in v1.18.0

func (o *ObjectsListNotFound) String() string

type ObjectsListOK

type ObjectsListOK struct {
	Payload *models.ObjectsListResponse
}

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

Successful response.

func NewObjectsListOK

func NewObjectsListOK() *ObjectsListOK

NewObjectsListOK creates a ObjectsListOK with default headers values

func (*ObjectsListOK) Code added in v1.18.0

func (o *ObjectsListOK) Code() int

Code gets the status code for the objects list o k response

func (*ObjectsListOK) Error

func (o *ObjectsListOK) Error() string

func (*ObjectsListOK) GetPayload

func (o *ObjectsListOK) GetPayload() *models.ObjectsListResponse

func (*ObjectsListOK) IsClientError added in v1.18.0

func (o *ObjectsListOK) IsClientError() bool

IsClientError returns true when this objects list o k response has a 4xx status code

func (*ObjectsListOK) IsCode added in v1.18.0

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

IsCode returns true when this objects list o k response a status code equal to that given

func (*ObjectsListOK) IsRedirect added in v1.18.0

func (o *ObjectsListOK) IsRedirect() bool

IsRedirect returns true when this objects list o k response has a 3xx status code

func (*ObjectsListOK) IsServerError added in v1.18.0

func (o *ObjectsListOK) IsServerError() bool

IsServerError returns true when this objects list o k response has a 5xx status code

func (*ObjectsListOK) IsSuccess added in v1.18.0

func (o *ObjectsListOK) IsSuccess() bool

IsSuccess returns true when this objects list o k response has a 2xx status code

func (*ObjectsListOK) String added in v1.18.0

func (o *ObjectsListOK) String() string

type ObjectsListParams

type ObjectsListParams struct {

	/* After.

	   The starting ID of the result window.
	*/
	After *string

	/* Class.

	   Class parameter specifies the class from which to query objects
	*/
	Class *string

	/* Include.

	   Include additional information, such as classification infos. Allowed values include: classification, vector, interpretation
	*/
	Include *string

	/* Limit.

	   The maximum number of items to be returned per page. Default value is set in Weaviate config.

	   Format: int64
	*/
	Limit *int64

	/* Offset.

	   The starting index of the result window. Default value is 0.

	   Format: int64
	*/
	Offset *int64

	/* Order.

	   Order parameter to tell how to order (asc or desc) data within given field
	*/
	Order *string

	/* Sort.

	   Sort parameter to pass an information about the names of the sort fields
	*/
	Sort *string

	/* Tenant.

	   Specifies the tenant in a request targeting a multi-tenant class
	*/
	Tenant *string

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

ObjectsListParams contains all the parameters to send to the API endpoint

for the objects list operation.

Typically these are written to a http.Request.

func NewObjectsListParams

func NewObjectsListParams() *ObjectsListParams

NewObjectsListParams creates a new ObjectsListParams 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 NewObjectsListParamsWithContext

func NewObjectsListParamsWithContext(ctx context.Context) *ObjectsListParams

NewObjectsListParamsWithContext creates a new ObjectsListParams object with the ability to set a context for a request.

func NewObjectsListParamsWithHTTPClient

func NewObjectsListParamsWithHTTPClient(client *http.Client) *ObjectsListParams

NewObjectsListParamsWithHTTPClient creates a new ObjectsListParams object with the ability to set a custom HTTPClient for a request.

func NewObjectsListParamsWithTimeout

func NewObjectsListParamsWithTimeout(timeout time.Duration) *ObjectsListParams

NewObjectsListParamsWithTimeout creates a new ObjectsListParams object with the ability to set a timeout on a request.

func (*ObjectsListParams) SetAfter added in v1.18.0

func (o *ObjectsListParams) SetAfter(after *string)

SetAfter adds the after to the objects list params

func (*ObjectsListParams) SetClass

func (o *ObjectsListParams) SetClass(class *string)

SetClass adds the class to the objects list params

func (*ObjectsListParams) SetContext

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

SetContext adds the context to the objects list params

func (*ObjectsListParams) SetDefaults added in v1.18.0

func (o *ObjectsListParams) SetDefaults()

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

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

func (*ObjectsListParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the objects list params

func (*ObjectsListParams) SetInclude

func (o *ObjectsListParams) SetInclude(include *string)

SetInclude adds the include to the objects list params

func (*ObjectsListParams) SetLimit

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

SetLimit adds the limit to the objects list params

func (*ObjectsListParams) SetOffset

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

SetOffset adds the offset to the objects list params

func (*ObjectsListParams) SetOrder

func (o *ObjectsListParams) SetOrder(order *string)

SetOrder adds the order to the objects list params

func (*ObjectsListParams) SetSort

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

SetSort adds the sort to the objects list params

func (*ObjectsListParams) SetTenant added in v1.20.0

func (o *ObjectsListParams) SetTenant(tenant *string)

SetTenant adds the tenant to the objects list params

func (*ObjectsListParams) SetTimeout

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

SetTimeout adds the timeout to the objects list params

func (*ObjectsListParams) WithAfter added in v1.18.0

func (o *ObjectsListParams) WithAfter(after *string) *ObjectsListParams

WithAfter adds the after to the objects list params

func (*ObjectsListParams) WithClass

func (o *ObjectsListParams) WithClass(class *string) *ObjectsListParams

WithClass adds the class to the objects list params

func (*ObjectsListParams) WithContext

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

WithContext adds the context to the objects list params

func (*ObjectsListParams) WithDefaults added in v1.18.0

func (o *ObjectsListParams) WithDefaults() *ObjectsListParams

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

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

func (*ObjectsListParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the objects list params

func (*ObjectsListParams) WithInclude

func (o *ObjectsListParams) WithInclude(include *string) *ObjectsListParams

WithInclude adds the include to the objects list params

func (*ObjectsListParams) WithLimit

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

WithLimit adds the limit to the objects list params

func (*ObjectsListParams) WithOffset

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

WithOffset adds the offset to the objects list params

func (*ObjectsListParams) WithOrder

func (o *ObjectsListParams) WithOrder(order *string) *ObjectsListParams

WithOrder adds the order to the objects list params

func (*ObjectsListParams) WithSort

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

WithSort adds the sort to the objects list params

func (*ObjectsListParams) WithTenant added in v1.20.0

func (o *ObjectsListParams) WithTenant(tenant *string) *ObjectsListParams

WithTenant adds the tenant to the objects list params

func (*ObjectsListParams) WithTimeout

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

WithTimeout adds the timeout to the objects list params

func (*ObjectsListParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type ObjectsListReader

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

ObjectsListReader is a Reader for the ObjectsList structure.

func (*ObjectsListReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ObjectsListUnauthorized

type ObjectsListUnauthorized struct {
}

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

Unauthorized or invalid credentials.

func NewObjectsListUnauthorized

func NewObjectsListUnauthorized() *ObjectsListUnauthorized

NewObjectsListUnauthorized creates a ObjectsListUnauthorized with default headers values

func (*ObjectsListUnauthorized) Code added in v1.18.0

func (o *ObjectsListUnauthorized) Code() int

Code gets the status code for the objects list unauthorized response

func (*ObjectsListUnauthorized) Error

func (o *ObjectsListUnauthorized) Error() string

func (*ObjectsListUnauthorized) IsClientError added in v1.18.0

func (o *ObjectsListUnauthorized) IsClientError() bool

IsClientError returns true when this objects list unauthorized response has a 4xx status code

func (*ObjectsListUnauthorized) IsCode added in v1.18.0

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

IsCode returns true when this objects list unauthorized response a status code equal to that given

func (*ObjectsListUnauthorized) IsRedirect added in v1.18.0

func (o *ObjectsListUnauthorized) IsRedirect() bool

IsRedirect returns true when this objects list unauthorized response has a 3xx status code

func (*ObjectsListUnauthorized) IsServerError added in v1.18.0

func (o *ObjectsListUnauthorized) IsServerError() bool

IsServerError returns true when this objects list unauthorized response has a 5xx status code

func (*ObjectsListUnauthorized) IsSuccess added in v1.18.0

func (o *ObjectsListUnauthorized) IsSuccess() bool

IsSuccess returns true when this objects list unauthorized response has a 2xx status code

func (*ObjectsListUnauthorized) String added in v1.18.0

func (o *ObjectsListUnauthorized) String() string

type ObjectsListUnprocessableEntity

type ObjectsListUnprocessableEntity struct {
	Payload *models.ErrorResponse
}

ObjectsListUnprocessableEntity describes a response with status code 422, with default header values.

Request body is well-formed (i.e., syntactically correct), but semantically erroneous. Are you sure the class is defined in the configuration file?

func NewObjectsListUnprocessableEntity

func NewObjectsListUnprocessableEntity() *ObjectsListUnprocessableEntity

NewObjectsListUnprocessableEntity creates a ObjectsListUnprocessableEntity with default headers values

func (*ObjectsListUnprocessableEntity) Code added in v1.18.0

Code gets the status code for the objects list unprocessable entity response

func (*ObjectsListUnprocessableEntity) Error

func (*ObjectsListUnprocessableEntity) GetPayload

func (*ObjectsListUnprocessableEntity) IsClientError added in v1.18.0

func (o *ObjectsListUnprocessableEntity) IsClientError() bool

IsClientError returns true when this objects list unprocessable entity response has a 4xx status code

func (*ObjectsListUnprocessableEntity) IsCode added in v1.18.0

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

IsCode returns true when this objects list unprocessable entity response a status code equal to that given

func (*ObjectsListUnprocessableEntity) IsRedirect added in v1.18.0

func (o *ObjectsListUnprocessableEntity) IsRedirect() bool

IsRedirect returns true when this objects list unprocessable entity response has a 3xx status code

func (*ObjectsListUnprocessableEntity) IsServerError added in v1.18.0

func (o *ObjectsListUnprocessableEntity) IsServerError() bool

IsServerError returns true when this objects list unprocessable entity response has a 5xx status code

func (*ObjectsListUnprocessableEntity) IsSuccess added in v1.18.0

func (o *ObjectsListUnprocessableEntity) IsSuccess() bool

IsSuccess returns true when this objects list unprocessable entity response has a 2xx status code

func (*ObjectsListUnprocessableEntity) String added in v1.18.0

type ObjectsPatchBadRequest

type ObjectsPatchBadRequest struct {
}

ObjectsPatchBadRequest describes a response with status code 400, with default header values.

The patch-JSON is malformed.

func NewObjectsPatchBadRequest

func NewObjectsPatchBadRequest() *ObjectsPatchBadRequest

NewObjectsPatchBadRequest creates a ObjectsPatchBadRequest with default headers values

func (*ObjectsPatchBadRequest) Code added in v1.18.0

func (o *ObjectsPatchBadRequest) Code() int

Code gets the status code for the objects patch bad request response

func (*ObjectsPatchBadRequest) Error

func (o *ObjectsPatchBadRequest) Error() string

func (*ObjectsPatchBadRequest) IsClientError added in v1.18.0

func (o *ObjectsPatchBadRequest) IsClientError() bool

IsClientError returns true when this objects patch bad request response has a 4xx status code

func (*ObjectsPatchBadRequest) IsCode added in v1.18.0

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

IsCode returns true when this objects patch bad request response a status code equal to that given

func (*ObjectsPatchBadRequest) IsRedirect added in v1.18.0

func (o *ObjectsPatchBadRequest) IsRedirect() bool

IsRedirect returns true when this objects patch bad request response has a 3xx status code

func (*ObjectsPatchBadRequest) IsServerError added in v1.18.0

func (o *ObjectsPatchBadRequest) IsServerError() bool

IsServerError returns true when this objects patch bad request response has a 5xx status code

func (*ObjectsPatchBadRequest) IsSuccess added in v1.18.0

func (o *ObjectsPatchBadRequest) IsSuccess() bool

IsSuccess returns true when this objects patch bad request response has a 2xx status code

func (*ObjectsPatchBadRequest) String added in v1.18.0

func (o *ObjectsPatchBadRequest) String() string

type ObjectsPatchForbidden

type ObjectsPatchForbidden struct {
	Payload *models.ErrorResponse
}

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

Forbidden

func NewObjectsPatchForbidden

func NewObjectsPatchForbidden() *ObjectsPatchForbidden

NewObjectsPatchForbidden creates a ObjectsPatchForbidden with default headers values

func (*ObjectsPatchForbidden) Code added in v1.18.0

func (o *ObjectsPatchForbidden) Code() int

Code gets the status code for the objects patch forbidden response

func (*ObjectsPatchForbidden) Error

func (o *ObjectsPatchForbidden) Error() string

func (*ObjectsPatchForbidden) GetPayload

func (o *ObjectsPatchForbidden) GetPayload() *models.ErrorResponse

func (*ObjectsPatchForbidden) IsClientError added in v1.18.0

func (o *ObjectsPatchForbidden) IsClientError() bool

IsClientError returns true when this objects patch forbidden response has a 4xx status code

func (*ObjectsPatchForbidden) IsCode added in v1.18.0

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

IsCode returns true when this objects patch forbidden response a status code equal to that given

func (*ObjectsPatchForbidden) IsRedirect added in v1.18.0

func (o *ObjectsPatchForbidden) IsRedirect() bool

IsRedirect returns true when this objects patch forbidden response has a 3xx status code

func (*ObjectsPatchForbidden) IsServerError added in v1.18.0

func (o *ObjectsPatchForbidden) IsServerError() bool

IsServerError returns true when this objects patch forbidden response has a 5xx status code

func (*ObjectsPatchForbidden) IsSuccess added in v1.18.0

func (o *ObjectsPatchForbidden) IsSuccess() bool

IsSuccess returns true when this objects patch forbidden response has a 2xx status code

func (*ObjectsPatchForbidden) String added in v1.18.0

func (o *ObjectsPatchForbidden) String() string

type ObjectsPatchInternalServerError

type ObjectsPatchInternalServerError struct {
	Payload *models.ErrorResponse
}

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

An error has occurred while trying to fulfill the request. Most likely the ErrorResponse will contain more information about the error.

func NewObjectsPatchInternalServerError

func NewObjectsPatchInternalServerError() *ObjectsPatchInternalServerError

NewObjectsPatchInternalServerError creates a ObjectsPatchInternalServerError with default headers values

func (*ObjectsPatchInternalServerError) Code added in v1.18.0

Code gets the status code for the objects patch internal server error response

func (*ObjectsPatchInternalServerError) Error

func (*ObjectsPatchInternalServerError) GetPayload

func (*ObjectsPatchInternalServerError) IsClientError added in v1.18.0

func (o *ObjectsPatchInternalServerError) IsClientError() bool

IsClientError returns true when this objects patch internal server error response has a 4xx status code

func (*ObjectsPatchInternalServerError) IsCode added in v1.18.0

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

IsCode returns true when this objects patch internal server error response a status code equal to that given

func (*ObjectsPatchInternalServerError) IsRedirect added in v1.18.0

func (o *ObjectsPatchInternalServerError) IsRedirect() bool

IsRedirect returns true when this objects patch internal server error response has a 3xx status code

func (*ObjectsPatchInternalServerError) IsServerError added in v1.18.0

func (o *ObjectsPatchInternalServerError) IsServerError() bool

IsServerError returns true when this objects patch internal server error response has a 5xx status code

func (*ObjectsPatchInternalServerError) IsSuccess added in v1.18.0

func (o *ObjectsPatchInternalServerError) IsSuccess() bool

IsSuccess returns true when this objects patch internal server error response has a 2xx status code

func (*ObjectsPatchInternalServerError) String added in v1.18.0

type ObjectsPatchNoContent

type ObjectsPatchNoContent struct {
}

ObjectsPatchNoContent describes a response with status code 204, with default header values.

Successfully applied. No content provided.

func NewObjectsPatchNoContent

func NewObjectsPatchNoContent() *ObjectsPatchNoContent

NewObjectsPatchNoContent creates a ObjectsPatchNoContent with default headers values

func (*ObjectsPatchNoContent) Code added in v1.18.0

func (o *ObjectsPatchNoContent) Code() int

Code gets the status code for the objects patch no content response

func (*ObjectsPatchNoContent) Error

func (o *ObjectsPatchNoContent) Error() string

func (*ObjectsPatchNoContent) IsClientError added in v1.18.0

func (o *ObjectsPatchNoContent) IsClientError() bool

IsClientError returns true when this objects patch no content response has a 4xx status code

func (*ObjectsPatchNoContent) IsCode added in v1.18.0

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

IsCode returns true when this objects patch no content response a status code equal to that given

func (*ObjectsPatchNoContent) IsRedirect added in v1.18.0

func (o *ObjectsPatchNoContent) IsRedirect() bool

IsRedirect returns true when this objects patch no content response has a 3xx status code

func (*ObjectsPatchNoContent) IsServerError added in v1.18.0

func (o *ObjectsPatchNoContent) IsServerError() bool

IsServerError returns true when this objects patch no content response has a 5xx status code

func (*ObjectsPatchNoContent) IsSuccess added in v1.18.0

func (o *ObjectsPatchNoContent) IsSuccess() bool

IsSuccess returns true when this objects patch no content response has a 2xx status code

func (*ObjectsPatchNoContent) String added in v1.18.0

func (o *ObjectsPatchNoContent) String() string

type ObjectsPatchNotFound

type ObjectsPatchNotFound struct {
}

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

Successful query result but no resource was found.

func NewObjectsPatchNotFound

func NewObjectsPatchNotFound() *ObjectsPatchNotFound

NewObjectsPatchNotFound creates a ObjectsPatchNotFound with default headers values

func (*ObjectsPatchNotFound) Code added in v1.18.0

func (o *ObjectsPatchNotFound) Code() int

Code gets the status code for the objects patch not found response

func (*ObjectsPatchNotFound) Error

func (o *ObjectsPatchNotFound) Error() string

func (*ObjectsPatchNotFound) IsClientError added in v1.18.0

func (o *ObjectsPatchNotFound) IsClientError() bool

IsClientError returns true when this objects patch not found response has a 4xx status code

func (*ObjectsPatchNotFound) IsCode added in v1.18.0

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

IsCode returns true when this objects patch not found response a status code equal to that given

func (*ObjectsPatchNotFound) IsRedirect added in v1.18.0

func (o *ObjectsPatchNotFound) IsRedirect() bool

IsRedirect returns true when this objects patch not found response has a 3xx status code

func (*ObjectsPatchNotFound) IsServerError added in v1.18.0

func (o *ObjectsPatchNotFound) IsServerError() bool

IsServerError returns true when this objects patch not found response has a 5xx status code

func (*ObjectsPatchNotFound) IsSuccess added in v1.18.0

func (o *ObjectsPatchNotFound) IsSuccess() bool

IsSuccess returns true when this objects patch not found response has a 2xx status code

func (*ObjectsPatchNotFound) String added in v1.18.0

func (o *ObjectsPatchNotFound) String() string

type ObjectsPatchParams

type ObjectsPatchParams struct {

	/* Body.

	   RFC 7396-style patch, the body contains the object to merge into the existing object.
	*/
	Body *models.Object

	/* ConsistencyLevel.

	   Determines how many replicas must acknowledge a request before it is considered successful
	*/
	ConsistencyLevel *string

	/* ID.

	   Unique ID of the Object.

	   Format: uuid
	*/
	ID strfmt.UUID

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

ObjectsPatchParams contains all the parameters to send to the API endpoint

for the objects patch operation.

Typically these are written to a http.Request.

func NewObjectsPatchParams

func NewObjectsPatchParams() *ObjectsPatchParams

NewObjectsPatchParams creates a new ObjectsPatchParams 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 NewObjectsPatchParamsWithContext

func NewObjectsPatchParamsWithContext(ctx context.Context) *ObjectsPatchParams

NewObjectsPatchParamsWithContext creates a new ObjectsPatchParams object with the ability to set a context for a request.

func NewObjectsPatchParamsWithHTTPClient

func NewObjectsPatchParamsWithHTTPClient(client *http.Client) *ObjectsPatchParams

NewObjectsPatchParamsWithHTTPClient creates a new ObjectsPatchParams object with the ability to set a custom HTTPClient for a request.

func NewObjectsPatchParamsWithTimeout

func NewObjectsPatchParamsWithTimeout(timeout time.Duration) *ObjectsPatchParams

NewObjectsPatchParamsWithTimeout creates a new ObjectsPatchParams object with the ability to set a timeout on a request.

func (*ObjectsPatchParams) SetBody

func (o *ObjectsPatchParams) SetBody(body *models.Object)

SetBody adds the body to the objects patch params

func (*ObjectsPatchParams) SetConsistencyLevel added in v1.18.0

func (o *ObjectsPatchParams) SetConsistencyLevel(consistencyLevel *string)

SetConsistencyLevel adds the consistencyLevel to the objects patch params

func (*ObjectsPatchParams) SetContext

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

SetContext adds the context to the objects patch params

func (*ObjectsPatchParams) SetDefaults added in v1.18.0

func (o *ObjectsPatchParams) SetDefaults()

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

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

func (*ObjectsPatchParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the objects patch params

func (*ObjectsPatchParams) SetID

func (o *ObjectsPatchParams) SetID(id strfmt.UUID)

SetID adds the id to the objects patch params

func (*ObjectsPatchParams) SetTimeout

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

SetTimeout adds the timeout to the objects patch params

func (*ObjectsPatchParams) WithBody

func (o *ObjectsPatchParams) WithBody(body *models.Object) *ObjectsPatchParams

WithBody adds the body to the objects patch params

func (*ObjectsPatchParams) WithConsistencyLevel added in v1.18.0

func (o *ObjectsPatchParams) WithConsistencyLevel(consistencyLevel *string) *ObjectsPatchParams

WithConsistencyLevel adds the consistencyLevel to the objects patch params

func (*ObjectsPatchParams) WithContext

WithContext adds the context to the objects patch params

func (*ObjectsPatchParams) WithDefaults added in v1.18.0

func (o *ObjectsPatchParams) WithDefaults() *ObjectsPatchParams

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

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

func (*ObjectsPatchParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the objects patch params

func (*ObjectsPatchParams) WithID

WithID adds the id to the objects patch params

func (*ObjectsPatchParams) WithTimeout

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

WithTimeout adds the timeout to the objects patch params

func (*ObjectsPatchParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type ObjectsPatchReader

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

ObjectsPatchReader is a Reader for the ObjectsPatch structure.

func (*ObjectsPatchReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ObjectsPatchUnauthorized

type ObjectsPatchUnauthorized struct {
}

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

Unauthorized or invalid credentials.

func NewObjectsPatchUnauthorized

func NewObjectsPatchUnauthorized() *ObjectsPatchUnauthorized

NewObjectsPatchUnauthorized creates a ObjectsPatchUnauthorized with default headers values

func (*ObjectsPatchUnauthorized) Code added in v1.18.0

func (o *ObjectsPatchUnauthorized) Code() int

Code gets the status code for the objects patch unauthorized response

func (*ObjectsPatchUnauthorized) Error

func (o *ObjectsPatchUnauthorized) Error() string

func (*ObjectsPatchUnauthorized) IsClientError added in v1.18.0

func (o *ObjectsPatchUnauthorized) IsClientError() bool

IsClientError returns true when this objects patch unauthorized response has a 4xx status code

func (*ObjectsPatchUnauthorized) IsCode added in v1.18.0

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

IsCode returns true when this objects patch unauthorized response a status code equal to that given

func (*ObjectsPatchUnauthorized) IsRedirect added in v1.18.0

func (o *ObjectsPatchUnauthorized) IsRedirect() bool

IsRedirect returns true when this objects patch unauthorized response has a 3xx status code

func (*ObjectsPatchUnauthorized) IsServerError added in v1.18.0

func (o *ObjectsPatchUnauthorized) IsServerError() bool

IsServerError returns true when this objects patch unauthorized response has a 5xx status code

func (*ObjectsPatchUnauthorized) IsSuccess added in v1.18.0

func (o *ObjectsPatchUnauthorized) IsSuccess() bool

IsSuccess returns true when this objects patch unauthorized response has a 2xx status code

func (*ObjectsPatchUnauthorized) String added in v1.18.0

func (o *ObjectsPatchUnauthorized) String() string

type ObjectsPatchUnprocessableEntity

type ObjectsPatchUnprocessableEntity struct {
	Payload *models.ErrorResponse
}

ObjectsPatchUnprocessableEntity describes a response with status code 422, with default header values.

The patch-JSON is valid but unprocessable.

func NewObjectsPatchUnprocessableEntity

func NewObjectsPatchUnprocessableEntity() *ObjectsPatchUnprocessableEntity

NewObjectsPatchUnprocessableEntity creates a ObjectsPatchUnprocessableEntity with default headers values

func (*ObjectsPatchUnprocessableEntity) Code added in v1.18.0

Code gets the status code for the objects patch unprocessable entity response

func (*ObjectsPatchUnprocessableEntity) Error

func (*ObjectsPatchUnprocessableEntity) GetPayload

func (*ObjectsPatchUnprocessableEntity) IsClientError added in v1.18.0

func (o *ObjectsPatchUnprocessableEntity) IsClientError() bool

IsClientError returns true when this objects patch unprocessable entity response has a 4xx status code

func (*ObjectsPatchUnprocessableEntity) IsCode added in v1.18.0

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

IsCode returns true when this objects patch unprocessable entity response a status code equal to that given

func (*ObjectsPatchUnprocessableEntity) IsRedirect added in v1.18.0

func (o *ObjectsPatchUnprocessableEntity) IsRedirect() bool

IsRedirect returns true when this objects patch unprocessable entity response has a 3xx status code

func (*ObjectsPatchUnprocessableEntity) IsServerError added in v1.18.0

func (o *ObjectsPatchUnprocessableEntity) IsServerError() bool

IsServerError returns true when this objects patch unprocessable entity response has a 5xx status code

func (*ObjectsPatchUnprocessableEntity) IsSuccess added in v1.18.0

func (o *ObjectsPatchUnprocessableEntity) IsSuccess() bool

IsSuccess returns true when this objects patch unprocessable entity response has a 2xx status code

func (*ObjectsPatchUnprocessableEntity) String added in v1.18.0

type ObjectsReferencesCreateForbidden

type ObjectsReferencesCreateForbidden struct {
	Payload *models.ErrorResponse
}

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

Forbidden

func NewObjectsReferencesCreateForbidden

func NewObjectsReferencesCreateForbidden() *ObjectsReferencesCreateForbidden

NewObjectsReferencesCreateForbidden creates a ObjectsReferencesCreateForbidden with default headers values

func (*ObjectsReferencesCreateForbidden) Code added in v1.18.0

Code gets the status code for the objects references create forbidden response

func (*ObjectsReferencesCreateForbidden) Error

func (*ObjectsReferencesCreateForbidden) GetPayload

func (*ObjectsReferencesCreateForbidden) IsClientError added in v1.18.0

func (o *ObjectsReferencesCreateForbidden) IsClientError() bool

IsClientError returns true when this objects references create forbidden response has a 4xx status code

func (*ObjectsReferencesCreateForbidden) IsCode added in v1.18.0

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

IsCode returns true when this objects references create forbidden response a status code equal to that given

func (*ObjectsReferencesCreateForbidden) IsRedirect added in v1.18.0

func (o *ObjectsReferencesCreateForbidden) IsRedirect() bool

IsRedirect returns true when this objects references create forbidden response has a 3xx status code

func (*ObjectsReferencesCreateForbidden) IsServerError added in v1.18.0

func (o *ObjectsReferencesCreateForbidden) IsServerError() bool

IsServerError returns true when this objects references create forbidden response has a 5xx status code

func (*ObjectsReferencesCreateForbidden) IsSuccess added in v1.18.0

func (o *ObjectsReferencesCreateForbidden) IsSuccess() bool

IsSuccess returns true when this objects references create forbidden response has a 2xx status code

func (*ObjectsReferencesCreateForbidden) String added in v1.18.0

type ObjectsReferencesCreateInternalServerError

type ObjectsReferencesCreateInternalServerError struct {
	Payload *models.ErrorResponse
}

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

An error has occurred while trying to fulfill the request. Most likely the ErrorResponse will contain more information about the error.

func NewObjectsReferencesCreateInternalServerError

func NewObjectsReferencesCreateInternalServerError() *ObjectsReferencesCreateInternalServerError

NewObjectsReferencesCreateInternalServerError creates a ObjectsReferencesCreateInternalServerError with default headers values

func (*ObjectsReferencesCreateInternalServerError) Code added in v1.18.0

Code gets the status code for the objects references create internal server error response

func (*ObjectsReferencesCreateInternalServerError) Error

func (*ObjectsReferencesCreateInternalServerError) GetPayload

func (*ObjectsReferencesCreateInternalServerError) IsClientError added in v1.18.0

IsClientError returns true when this objects references create internal server error response has a 4xx status code

func (*ObjectsReferencesCreateInternalServerError) IsCode added in v1.18.0

IsCode returns true when this objects references create internal server error response a status code equal to that given

func (*ObjectsReferencesCreateInternalServerError) IsRedirect added in v1.18.0

IsRedirect returns true when this objects references create internal server error response has a 3xx status code

func (*ObjectsReferencesCreateInternalServerError) IsServerError added in v1.18.0

IsServerError returns true when this objects references create internal server error response has a 5xx status code

func (*ObjectsReferencesCreateInternalServerError) IsSuccess added in v1.18.0

IsSuccess returns true when this objects references create internal server error response has a 2xx status code

func (*ObjectsReferencesCreateInternalServerError) String added in v1.18.0

type ObjectsReferencesCreateOK

type ObjectsReferencesCreateOK struct {
}

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

Successfully added the reference.

func NewObjectsReferencesCreateOK

func NewObjectsReferencesCreateOK() *ObjectsReferencesCreateOK

NewObjectsReferencesCreateOK creates a ObjectsReferencesCreateOK with default headers values

func (*ObjectsReferencesCreateOK) Code added in v1.18.0

func (o *ObjectsReferencesCreateOK) Code() int

Code gets the status code for the objects references create o k response

func (*ObjectsReferencesCreateOK) Error

func (o *ObjectsReferencesCreateOK) Error() string

func (*ObjectsReferencesCreateOK) IsClientError added in v1.18.0

func (o *ObjectsReferencesCreateOK) IsClientError() bool

IsClientError returns true when this objects references create o k response has a 4xx status code

func (*ObjectsReferencesCreateOK) IsCode added in v1.18.0

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

IsCode returns true when this objects references create o k response a status code equal to that given

func (*ObjectsReferencesCreateOK) IsRedirect added in v1.18.0

func (o *ObjectsReferencesCreateOK) IsRedirect() bool

IsRedirect returns true when this objects references create o k response has a 3xx status code

func (*ObjectsReferencesCreateOK) IsServerError added in v1.18.0

func (o *ObjectsReferencesCreateOK) IsServerError() bool

IsServerError returns true when this objects references create o k response has a 5xx status code

func (*ObjectsReferencesCreateOK) IsSuccess added in v1.18.0

func (o *ObjectsReferencesCreateOK) IsSuccess() bool

IsSuccess returns true when this objects references create o k response has a 2xx status code

func (*ObjectsReferencesCreateOK) String added in v1.18.0

func (o *ObjectsReferencesCreateOK) String() string

type ObjectsReferencesCreateParams

type ObjectsReferencesCreateParams struct {

	// Body.
	Body *models.SingleRef

	/* ID.

	   Unique ID of the Object.

	   Format: uuid
	*/
	ID strfmt.UUID

	/* PropertyName.

	   Unique name of the property related to the Object.
	*/
	PropertyName string

	/* Tenant.

	   Specifies the tenant in a request targeting a multi-tenant class
	*/
	Tenant *string

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

ObjectsReferencesCreateParams contains all the parameters to send to the API endpoint

for the objects references create operation.

Typically these are written to a http.Request.

func NewObjectsReferencesCreateParams

func NewObjectsReferencesCreateParams() *ObjectsReferencesCreateParams

NewObjectsReferencesCreateParams creates a new ObjectsReferencesCreateParams 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 NewObjectsReferencesCreateParamsWithContext

func NewObjectsReferencesCreateParamsWithContext(ctx context.Context) *ObjectsReferencesCreateParams

NewObjectsReferencesCreateParamsWithContext creates a new ObjectsReferencesCreateParams object with the ability to set a context for a request.

func NewObjectsReferencesCreateParamsWithHTTPClient

func NewObjectsReferencesCreateParamsWithHTTPClient(client *http.Client) *ObjectsReferencesCreateParams

NewObjectsReferencesCreateParamsWithHTTPClient creates a new ObjectsReferencesCreateParams object with the ability to set a custom HTTPClient for a request.

func NewObjectsReferencesCreateParamsWithTimeout

func NewObjectsReferencesCreateParamsWithTimeout(timeout time.Duration) *ObjectsReferencesCreateParams

NewObjectsReferencesCreateParamsWithTimeout creates a new ObjectsReferencesCreateParams object with the ability to set a timeout on a request.

func (*ObjectsReferencesCreateParams) SetBody

SetBody adds the body to the objects references create params

func (*ObjectsReferencesCreateParams) SetContext

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

SetContext adds the context to the objects references create params

func (*ObjectsReferencesCreateParams) SetDefaults added in v1.18.0

func (o *ObjectsReferencesCreateParams) SetDefaults()

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

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

func (*ObjectsReferencesCreateParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the objects references create params

func (*ObjectsReferencesCreateParams) SetID

SetID adds the id to the objects references create params

func (*ObjectsReferencesCreateParams) SetPropertyName

func (o *ObjectsReferencesCreateParams) SetPropertyName(propertyName string)

SetPropertyName adds the propertyName to the objects references create params

func (*ObjectsReferencesCreateParams) SetTenant added in v1.20.0

func (o *ObjectsReferencesCreateParams) SetTenant(tenant *string)

SetTenant adds the tenant to the objects references create params

func (*ObjectsReferencesCreateParams) SetTimeout

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

SetTimeout adds the timeout to the objects references create params

func (*ObjectsReferencesCreateParams) WithBody

WithBody adds the body to the objects references create params

func (*ObjectsReferencesCreateParams) WithContext

WithContext adds the context to the objects references create params

func (*ObjectsReferencesCreateParams) WithDefaults added in v1.18.0

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

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

func (*ObjectsReferencesCreateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the objects references create params

func (*ObjectsReferencesCreateParams) WithID

WithID adds the id to the objects references create params

func (*ObjectsReferencesCreateParams) WithPropertyName

func (o *ObjectsReferencesCreateParams) WithPropertyName(propertyName string) *ObjectsReferencesCreateParams

WithPropertyName adds the propertyName to the objects references create params

func (*ObjectsReferencesCreateParams) WithTenant added in v1.20.0

WithTenant adds the tenant to the objects references create params

func (*ObjectsReferencesCreateParams) WithTimeout

WithTimeout adds the timeout to the objects references create params

func (*ObjectsReferencesCreateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ObjectsReferencesCreateReader

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

ObjectsReferencesCreateReader is a Reader for the ObjectsReferencesCreate structure.

func (*ObjectsReferencesCreateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ObjectsReferencesCreateUnauthorized

type ObjectsReferencesCreateUnauthorized struct {
}

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

Unauthorized or invalid credentials.

func NewObjectsReferencesCreateUnauthorized

func NewObjectsReferencesCreateUnauthorized() *ObjectsReferencesCreateUnauthorized

NewObjectsReferencesCreateUnauthorized creates a ObjectsReferencesCreateUnauthorized with default headers values

func (*ObjectsReferencesCreateUnauthorized) Code added in v1.18.0

Code gets the status code for the objects references create unauthorized response

func (*ObjectsReferencesCreateUnauthorized) Error

func (*ObjectsReferencesCreateUnauthorized) IsClientError added in v1.18.0

func (o *ObjectsReferencesCreateUnauthorized) IsClientError() bool

IsClientError returns true when this objects references create unauthorized response has a 4xx status code

func (*ObjectsReferencesCreateUnauthorized) IsCode added in v1.18.0

IsCode returns true when this objects references create unauthorized response a status code equal to that given

func (*ObjectsReferencesCreateUnauthorized) IsRedirect added in v1.18.0

func (o *ObjectsReferencesCreateUnauthorized) IsRedirect() bool

IsRedirect returns true when this objects references create unauthorized response has a 3xx status code

func (*ObjectsReferencesCreateUnauthorized) IsServerError added in v1.18.0

func (o *ObjectsReferencesCreateUnauthorized) IsServerError() bool

IsServerError returns true when this objects references create unauthorized response has a 5xx status code

func (*ObjectsReferencesCreateUnauthorized) IsSuccess added in v1.18.0

IsSuccess returns true when this objects references create unauthorized response has a 2xx status code

func (*ObjectsReferencesCreateUnauthorized) String added in v1.18.0

type ObjectsReferencesCreateUnprocessableEntity

type ObjectsReferencesCreateUnprocessableEntity struct {
	Payload *models.ErrorResponse
}

ObjectsReferencesCreateUnprocessableEntity describes a response with status code 422, with default header values.

Request body is well-formed (i.e., syntactically correct), but semantically erroneous. Are you sure the property exists or that it is a class?

func NewObjectsReferencesCreateUnprocessableEntity

func NewObjectsReferencesCreateUnprocessableEntity() *ObjectsReferencesCreateUnprocessableEntity

NewObjectsReferencesCreateUnprocessableEntity creates a ObjectsReferencesCreateUnprocessableEntity with default headers values

func (*ObjectsReferencesCreateUnprocessableEntity) Code added in v1.18.0

Code gets the status code for the objects references create unprocessable entity response

func (*ObjectsReferencesCreateUnprocessableEntity) Error

func (*ObjectsReferencesCreateUnprocessableEntity) GetPayload

func (*ObjectsReferencesCreateUnprocessableEntity) IsClientError added in v1.18.0

IsClientError returns true when this objects references create unprocessable entity response has a 4xx status code

func (*ObjectsReferencesCreateUnprocessableEntity) IsCode added in v1.18.0

IsCode returns true when this objects references create unprocessable entity response a status code equal to that given

func (*ObjectsReferencesCreateUnprocessableEntity) IsRedirect added in v1.18.0

IsRedirect returns true when this objects references create unprocessable entity response has a 3xx status code

func (*ObjectsReferencesCreateUnprocessableEntity) IsServerError added in v1.18.0

IsServerError returns true when this objects references create unprocessable entity response has a 5xx status code

func (*ObjectsReferencesCreateUnprocessableEntity) IsSuccess added in v1.18.0

IsSuccess returns true when this objects references create unprocessable entity response has a 2xx status code

func (*ObjectsReferencesCreateUnprocessableEntity) String added in v1.18.0

type ObjectsReferencesDeleteForbidden

type ObjectsReferencesDeleteForbidden struct {
	Payload *models.ErrorResponse
}

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

Forbidden

func NewObjectsReferencesDeleteForbidden

func NewObjectsReferencesDeleteForbidden() *ObjectsReferencesDeleteForbidden

NewObjectsReferencesDeleteForbidden creates a ObjectsReferencesDeleteForbidden with default headers values

func (*ObjectsReferencesDeleteForbidden) Code added in v1.18.0

Code gets the status code for the objects references delete forbidden response

func (*ObjectsReferencesDeleteForbidden) Error

func (*ObjectsReferencesDeleteForbidden) GetPayload

func (*ObjectsReferencesDeleteForbidden) IsClientError added in v1.18.0

func (o *ObjectsReferencesDeleteForbidden) IsClientError() bool

IsClientError returns true when this objects references delete forbidden response has a 4xx status code

func (*ObjectsReferencesDeleteForbidden) IsCode added in v1.18.0

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

IsCode returns true when this objects references delete forbidden response a status code equal to that given

func (*ObjectsReferencesDeleteForbidden) IsRedirect added in v1.18.0

func (o *ObjectsReferencesDeleteForbidden) IsRedirect() bool

IsRedirect returns true when this objects references delete forbidden response has a 3xx status code

func (*ObjectsReferencesDeleteForbidden) IsServerError added in v1.18.0

func (o *ObjectsReferencesDeleteForbidden) IsServerError() bool

IsServerError returns true when this objects references delete forbidden response has a 5xx status code

func (*ObjectsReferencesDeleteForbidden) IsSuccess added in v1.18.0

func (o *ObjectsReferencesDeleteForbidden) IsSuccess() bool

IsSuccess returns true when this objects references delete forbidden response has a 2xx status code

func (*ObjectsReferencesDeleteForbidden) String added in v1.18.0

type ObjectsReferencesDeleteInternalServerError

type ObjectsReferencesDeleteInternalServerError struct {
	Payload *models.ErrorResponse
}

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

An error has occurred while trying to fulfill the request. Most likely the ErrorResponse will contain more information about the error.

func NewObjectsReferencesDeleteInternalServerError

func NewObjectsReferencesDeleteInternalServerError() *ObjectsReferencesDeleteInternalServerError

NewObjectsReferencesDeleteInternalServerError creates a ObjectsReferencesDeleteInternalServerError with default headers values

func (*ObjectsReferencesDeleteInternalServerError) Code added in v1.18.0

Code gets the status code for the objects references delete internal server error response

func (*ObjectsReferencesDeleteInternalServerError) Error

func (*ObjectsReferencesDeleteInternalServerError) GetPayload

func (*ObjectsReferencesDeleteInternalServerError) IsClientError added in v1.18.0

IsClientError returns true when this objects references delete internal server error response has a 4xx status code

func (*ObjectsReferencesDeleteInternalServerError) IsCode added in v1.18.0

IsCode returns true when this objects references delete internal server error response a status code equal to that given

func (*ObjectsReferencesDeleteInternalServerError) IsRedirect added in v1.18.0

IsRedirect returns true when this objects references delete internal server error response has a 3xx status code

func (*ObjectsReferencesDeleteInternalServerError) IsServerError added in v1.18.0

IsServerError returns true when this objects references delete internal server error response has a 5xx status code

func (*ObjectsReferencesDeleteInternalServerError) IsSuccess added in v1.18.0

IsSuccess returns true when this objects references delete internal server error response has a 2xx status code

func (*ObjectsReferencesDeleteInternalServerError) String added in v1.18.0

type ObjectsReferencesDeleteNoContent

type ObjectsReferencesDeleteNoContent struct {
}

ObjectsReferencesDeleteNoContent describes a response with status code 204, with default header values.

Successfully deleted.

func NewObjectsReferencesDeleteNoContent

func NewObjectsReferencesDeleteNoContent() *ObjectsReferencesDeleteNoContent

NewObjectsReferencesDeleteNoContent creates a ObjectsReferencesDeleteNoContent with default headers values

func (*ObjectsReferencesDeleteNoContent) Code added in v1.18.0

Code gets the status code for the objects references delete no content response

func (*ObjectsReferencesDeleteNoContent) Error

func (*ObjectsReferencesDeleteNoContent) IsClientError added in v1.18.0

func (o *ObjectsReferencesDeleteNoContent) IsClientError() bool

IsClientError returns true when this objects references delete no content response has a 4xx status code

func (*ObjectsReferencesDeleteNoContent) IsCode added in v1.18.0

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

IsCode returns true when this objects references delete no content response a status code equal to that given

func (*ObjectsReferencesDeleteNoContent) IsRedirect added in v1.18.0

func (o *ObjectsReferencesDeleteNoContent) IsRedirect() bool

IsRedirect returns true when this objects references delete no content response has a 3xx status code

func (*ObjectsReferencesDeleteNoContent) IsServerError added in v1.18.0

func (o *ObjectsReferencesDeleteNoContent) IsServerError() bool

IsServerError returns true when this objects references delete no content response has a 5xx status code

func (*ObjectsReferencesDeleteNoContent) IsSuccess added in v1.18.0

func (o *ObjectsReferencesDeleteNoContent) IsSuccess() bool

IsSuccess returns true when this objects references delete no content response has a 2xx status code

func (*ObjectsReferencesDeleteNoContent) String added in v1.18.0

type ObjectsReferencesDeleteNotFound

type ObjectsReferencesDeleteNotFound struct {
	Payload *models.ErrorResponse
}

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

Successful query result but no resource was found.

func NewObjectsReferencesDeleteNotFound

func NewObjectsReferencesDeleteNotFound() *ObjectsReferencesDeleteNotFound

NewObjectsReferencesDeleteNotFound creates a ObjectsReferencesDeleteNotFound with default headers values

func (*ObjectsReferencesDeleteNotFound) Code added in v1.18.0

Code gets the status code for the objects references delete not found response

func (*ObjectsReferencesDeleteNotFound) Error

func (*ObjectsReferencesDeleteNotFound) GetPayload

func (*ObjectsReferencesDeleteNotFound) IsClientError added in v1.18.0

func (o *ObjectsReferencesDeleteNotFound) IsClientError() bool

IsClientError returns true when this objects references delete not found response has a 4xx status code

func (*ObjectsReferencesDeleteNotFound) IsCode added in v1.18.0

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

IsCode returns true when this objects references delete not found response a status code equal to that given

func (*ObjectsReferencesDeleteNotFound) IsRedirect added in v1.18.0

func (o *ObjectsReferencesDeleteNotFound) IsRedirect() bool

IsRedirect returns true when this objects references delete not found response has a 3xx status code

func (*ObjectsReferencesDeleteNotFound) IsServerError added in v1.18.0

func (o *ObjectsReferencesDeleteNotFound) IsServerError() bool

IsServerError returns true when this objects references delete not found response has a 5xx status code

func (*ObjectsReferencesDeleteNotFound) IsSuccess added in v1.18.0

func (o *ObjectsReferencesDeleteNotFound) IsSuccess() bool

IsSuccess returns true when this objects references delete not found response has a 2xx status code

func (*ObjectsReferencesDeleteNotFound) String added in v1.18.0

type ObjectsReferencesDeleteParams

type ObjectsReferencesDeleteParams struct {

	// Body.
	Body *models.SingleRef

	/* ID.

	   Unique ID of the Object.

	   Format: uuid
	*/
	ID strfmt.UUID

	/* PropertyName.

	   Unique name of the property related to the Object.
	*/
	PropertyName string

	/* Tenant.

	   Specifies the tenant in a request targeting a multi-tenant class
	*/
	Tenant *string

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

ObjectsReferencesDeleteParams contains all the parameters to send to the API endpoint

for the objects references delete operation.

Typically these are written to a http.Request.

func NewObjectsReferencesDeleteParams

func NewObjectsReferencesDeleteParams() *ObjectsReferencesDeleteParams

NewObjectsReferencesDeleteParams creates a new ObjectsReferencesDeleteParams 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 NewObjectsReferencesDeleteParamsWithContext

func NewObjectsReferencesDeleteParamsWithContext(ctx context.Context) *ObjectsReferencesDeleteParams

NewObjectsReferencesDeleteParamsWithContext creates a new ObjectsReferencesDeleteParams object with the ability to set a context for a request.

func NewObjectsReferencesDeleteParamsWithHTTPClient

func NewObjectsReferencesDeleteParamsWithHTTPClient(client *http.Client) *ObjectsReferencesDeleteParams

NewObjectsReferencesDeleteParamsWithHTTPClient creates a new ObjectsReferencesDeleteParams object with the ability to set a custom HTTPClient for a request.

func NewObjectsReferencesDeleteParamsWithTimeout

func NewObjectsReferencesDeleteParamsWithTimeout(timeout time.Duration) *ObjectsReferencesDeleteParams

NewObjectsReferencesDeleteParamsWithTimeout creates a new ObjectsReferencesDeleteParams object with the ability to set a timeout on a request.

func (*ObjectsReferencesDeleteParams) SetBody

SetBody adds the body to the objects references delete params

func (*ObjectsReferencesDeleteParams) SetContext

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

SetContext adds the context to the objects references delete params

func (*ObjectsReferencesDeleteParams) SetDefaults added in v1.18.0

func (o *ObjectsReferencesDeleteParams) SetDefaults()

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

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

func (*ObjectsReferencesDeleteParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the objects references delete params

func (*ObjectsReferencesDeleteParams) SetID

SetID adds the id to the objects references delete params

func (*ObjectsReferencesDeleteParams) SetPropertyName

func (o *ObjectsReferencesDeleteParams) SetPropertyName(propertyName string)

SetPropertyName adds the propertyName to the objects references delete params

func (*ObjectsReferencesDeleteParams) SetTenant added in v1.20.0

func (o *ObjectsReferencesDeleteParams) SetTenant(tenant *string)

SetTenant adds the tenant to the objects references delete params

func (*ObjectsReferencesDeleteParams) SetTimeout

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

SetTimeout adds the timeout to the objects references delete params

func (*ObjectsReferencesDeleteParams) WithBody

WithBody adds the body to the objects references delete params

func (*ObjectsReferencesDeleteParams) WithContext

WithContext adds the context to the objects references delete params

func (*ObjectsReferencesDeleteParams) WithDefaults added in v1.18.0

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

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

func (*ObjectsReferencesDeleteParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the objects references delete params

func (*ObjectsReferencesDeleteParams) WithID

WithID adds the id to the objects references delete params

func (*ObjectsReferencesDeleteParams) WithPropertyName

func (o *ObjectsReferencesDeleteParams) WithPropertyName(propertyName string) *ObjectsReferencesDeleteParams

WithPropertyName adds the propertyName to the objects references delete params

func (*ObjectsReferencesDeleteParams) WithTenant added in v1.20.0

WithTenant adds the tenant to the objects references delete params

func (*ObjectsReferencesDeleteParams) WithTimeout

WithTimeout adds the timeout to the objects references delete params

func (*ObjectsReferencesDeleteParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ObjectsReferencesDeleteReader

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

ObjectsReferencesDeleteReader is a Reader for the ObjectsReferencesDelete structure.

func (*ObjectsReferencesDeleteReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ObjectsReferencesDeleteUnauthorized

type ObjectsReferencesDeleteUnauthorized struct {
}

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

Unauthorized or invalid credentials.

func NewObjectsReferencesDeleteUnauthorized

func NewObjectsReferencesDeleteUnauthorized() *ObjectsReferencesDeleteUnauthorized

NewObjectsReferencesDeleteUnauthorized creates a ObjectsReferencesDeleteUnauthorized with default headers values

func (*ObjectsReferencesDeleteUnauthorized) Code added in v1.18.0

Code gets the status code for the objects references delete unauthorized response

func (*ObjectsReferencesDeleteUnauthorized) Error

func (*ObjectsReferencesDeleteUnauthorized) IsClientError added in v1.18.0

func (o *ObjectsReferencesDeleteUnauthorized) IsClientError() bool

IsClientError returns true when this objects references delete unauthorized response has a 4xx status code

func (*ObjectsReferencesDeleteUnauthorized) IsCode added in v1.18.0

IsCode returns true when this objects references delete unauthorized response a status code equal to that given

func (*ObjectsReferencesDeleteUnauthorized) IsRedirect added in v1.18.0

func (o *ObjectsReferencesDeleteUnauthorized) IsRedirect() bool

IsRedirect returns true when this objects references delete unauthorized response has a 3xx status code

func (*ObjectsReferencesDeleteUnauthorized) IsServerError added in v1.18.0

func (o *ObjectsReferencesDeleteUnauthorized) IsServerError() bool

IsServerError returns true when this objects references delete unauthorized response has a 5xx status code

func (*ObjectsReferencesDeleteUnauthorized) IsSuccess added in v1.18.0

IsSuccess returns true when this objects references delete unauthorized response has a 2xx status code

func (*ObjectsReferencesDeleteUnauthorized) String added in v1.18.0

type ObjectsReferencesUpdateForbidden

type ObjectsReferencesUpdateForbidden struct {
	Payload *models.ErrorResponse
}

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

Forbidden

func NewObjectsReferencesUpdateForbidden

func NewObjectsReferencesUpdateForbidden() *ObjectsReferencesUpdateForbidden

NewObjectsReferencesUpdateForbidden creates a ObjectsReferencesUpdateForbidden with default headers values

func (*ObjectsReferencesUpdateForbidden) Code added in v1.18.0

Code gets the status code for the objects references update forbidden response

func (*ObjectsReferencesUpdateForbidden) Error

func (*ObjectsReferencesUpdateForbidden) GetPayload

func (*ObjectsReferencesUpdateForbidden) IsClientError added in v1.18.0

func (o *ObjectsReferencesUpdateForbidden) IsClientError() bool

IsClientError returns true when this objects references update forbidden response has a 4xx status code

func (*ObjectsReferencesUpdateForbidden) IsCode added in v1.18.0

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

IsCode returns true when this objects references update forbidden response a status code equal to that given

func (*ObjectsReferencesUpdateForbidden) IsRedirect added in v1.18.0

func (o *ObjectsReferencesUpdateForbidden) IsRedirect() bool

IsRedirect returns true when this objects references update forbidden response has a 3xx status code

func (*ObjectsReferencesUpdateForbidden) IsServerError added in v1.18.0

func (o *ObjectsReferencesUpdateForbidden) IsServerError() bool

IsServerError returns true when this objects references update forbidden response has a 5xx status code

func (*ObjectsReferencesUpdateForbidden) IsSuccess added in v1.18.0

func (o *ObjectsReferencesUpdateForbidden) IsSuccess() bool

IsSuccess returns true when this objects references update forbidden response has a 2xx status code

func (*ObjectsReferencesUpdateForbidden) String added in v1.18.0

type ObjectsReferencesUpdateInternalServerError

type ObjectsReferencesUpdateInternalServerError struct {
	Payload *models.ErrorResponse
}

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

An error has occurred while trying to fulfill the request. Most likely the ErrorResponse will contain more information about the error.

func NewObjectsReferencesUpdateInternalServerError

func NewObjectsReferencesUpdateInternalServerError() *ObjectsReferencesUpdateInternalServerError

NewObjectsReferencesUpdateInternalServerError creates a ObjectsReferencesUpdateInternalServerError with default headers values

func (*ObjectsReferencesUpdateInternalServerError) Code added in v1.18.0

Code gets the status code for the objects references update internal server error response

func (*ObjectsReferencesUpdateInternalServerError) Error

func (*ObjectsReferencesUpdateInternalServerError) GetPayload

func (*ObjectsReferencesUpdateInternalServerError) IsClientError added in v1.18.0

IsClientError returns true when this objects references update internal server error response has a 4xx status code

func (*ObjectsReferencesUpdateInternalServerError) IsCode added in v1.18.0

IsCode returns true when this objects references update internal server error response a status code equal to that given

func (*ObjectsReferencesUpdateInternalServerError) IsRedirect added in v1.18.0

IsRedirect returns true when this objects references update internal server error response has a 3xx status code

func (*ObjectsReferencesUpdateInternalServerError) IsServerError added in v1.18.0

IsServerError returns true when this objects references update internal server error response has a 5xx status code

func (*ObjectsReferencesUpdateInternalServerError) IsSuccess added in v1.18.0

IsSuccess returns true when this objects references update internal server error response has a 2xx status code

func (*ObjectsReferencesUpdateInternalServerError) String added in v1.18.0

type ObjectsReferencesUpdateOK

type ObjectsReferencesUpdateOK struct {
}

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

Successfully replaced all the references.

func NewObjectsReferencesUpdateOK

func NewObjectsReferencesUpdateOK() *ObjectsReferencesUpdateOK

NewObjectsReferencesUpdateOK creates a ObjectsReferencesUpdateOK with default headers values

func (*ObjectsReferencesUpdateOK) Code added in v1.18.0

func (o *ObjectsReferencesUpdateOK) Code() int

Code gets the status code for the objects references update o k response

func (*ObjectsReferencesUpdateOK) Error

func (o *ObjectsReferencesUpdateOK) Error() string

func (*ObjectsReferencesUpdateOK) IsClientError added in v1.18.0

func (o *ObjectsReferencesUpdateOK) IsClientError() bool

IsClientError returns true when this objects references update o k response has a 4xx status code

func (*ObjectsReferencesUpdateOK) IsCode added in v1.18.0

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

IsCode returns true when this objects references update o k response a status code equal to that given

func (*ObjectsReferencesUpdateOK) IsRedirect added in v1.18.0

func (o *ObjectsReferencesUpdateOK) IsRedirect() bool

IsRedirect returns true when this objects references update o k response has a 3xx status code

func (*ObjectsReferencesUpdateOK) IsServerError added in v1.18.0

func (o *ObjectsReferencesUpdateOK) IsServerError() bool

IsServerError returns true when this objects references update o k response has a 5xx status code

func (*ObjectsReferencesUpdateOK) IsSuccess added in v1.18.0

func (o *ObjectsReferencesUpdateOK) IsSuccess() bool

IsSuccess returns true when this objects references update o k response has a 2xx status code

func (*ObjectsReferencesUpdateOK) String added in v1.18.0

func (o *ObjectsReferencesUpdateOK) String() string

type ObjectsReferencesUpdateParams

type ObjectsReferencesUpdateParams struct {

	// Body.
	Body models.MultipleRef

	/* ID.

	   Unique ID of the Object.

	   Format: uuid
	*/
	ID strfmt.UUID

	/* PropertyName.

	   Unique name of the property related to the Object.
	*/
	PropertyName string

	/* Tenant.

	   Specifies the tenant in a request targeting a multi-tenant class
	*/
	Tenant *string

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

ObjectsReferencesUpdateParams contains all the parameters to send to the API endpoint

for the objects references update operation.

Typically these are written to a http.Request.

func NewObjectsReferencesUpdateParams

func NewObjectsReferencesUpdateParams() *ObjectsReferencesUpdateParams

NewObjectsReferencesUpdateParams creates a new ObjectsReferencesUpdateParams 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 NewObjectsReferencesUpdateParamsWithContext

func NewObjectsReferencesUpdateParamsWithContext(ctx context.Context) *ObjectsReferencesUpdateParams

NewObjectsReferencesUpdateParamsWithContext creates a new ObjectsReferencesUpdateParams object with the ability to set a context for a request.

func NewObjectsReferencesUpdateParamsWithHTTPClient

func NewObjectsReferencesUpdateParamsWithHTTPClient(client *http.Client) *ObjectsReferencesUpdateParams

NewObjectsReferencesUpdateParamsWithHTTPClient creates a new ObjectsReferencesUpdateParams object with the ability to set a custom HTTPClient for a request.

func NewObjectsReferencesUpdateParamsWithTimeout

func NewObjectsReferencesUpdateParamsWithTimeout(timeout time.Duration) *ObjectsReferencesUpdateParams

NewObjectsReferencesUpdateParamsWithTimeout creates a new ObjectsReferencesUpdateParams object with the ability to set a timeout on a request.

func (*ObjectsReferencesUpdateParams) SetBody

SetBody adds the body to the objects references update params

func (*ObjectsReferencesUpdateParams) SetContext

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

SetContext adds the context to the objects references update params

func (*ObjectsReferencesUpdateParams) SetDefaults added in v1.18.0

func (o *ObjectsReferencesUpdateParams) SetDefaults()

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

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

func (*ObjectsReferencesUpdateParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the objects references update params

func (*ObjectsReferencesUpdateParams) SetID

SetID adds the id to the objects references update params

func (*ObjectsReferencesUpdateParams) SetPropertyName

func (o *ObjectsReferencesUpdateParams) SetPropertyName(propertyName string)

SetPropertyName adds the propertyName to the objects references update params

func (*ObjectsReferencesUpdateParams) SetTenant added in v1.20.0

func (o *ObjectsReferencesUpdateParams) SetTenant(tenant *string)

SetTenant adds the tenant to the objects references update params

func (*ObjectsReferencesUpdateParams) SetTimeout

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

SetTimeout adds the timeout to the objects references update params

func (*ObjectsReferencesUpdateParams) WithBody

WithBody adds the body to the objects references update params

func (*ObjectsReferencesUpdateParams) WithContext

WithContext adds the context to the objects references update params

func (*ObjectsReferencesUpdateParams) WithDefaults added in v1.18.0

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

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

func (*ObjectsReferencesUpdateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the objects references update params

func (*ObjectsReferencesUpdateParams) WithID

WithID adds the id to the objects references update params

func (*ObjectsReferencesUpdateParams) WithPropertyName

func (o *ObjectsReferencesUpdateParams) WithPropertyName(propertyName string) *ObjectsReferencesUpdateParams

WithPropertyName adds the propertyName to the objects references update params

func (*ObjectsReferencesUpdateParams) WithTenant added in v1.20.0

WithTenant adds the tenant to the objects references update params

func (*ObjectsReferencesUpdateParams) WithTimeout

WithTimeout adds the timeout to the objects references update params

func (*ObjectsReferencesUpdateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ObjectsReferencesUpdateReader

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

ObjectsReferencesUpdateReader is a Reader for the ObjectsReferencesUpdate structure.

func (*ObjectsReferencesUpdateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ObjectsReferencesUpdateUnauthorized

type ObjectsReferencesUpdateUnauthorized struct {
}

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

Unauthorized or invalid credentials.

func NewObjectsReferencesUpdateUnauthorized

func NewObjectsReferencesUpdateUnauthorized() *ObjectsReferencesUpdateUnauthorized

NewObjectsReferencesUpdateUnauthorized creates a ObjectsReferencesUpdateUnauthorized with default headers values

func (*ObjectsReferencesUpdateUnauthorized) Code added in v1.18.0

Code gets the status code for the objects references update unauthorized response

func (*ObjectsReferencesUpdateUnauthorized) Error

func (*ObjectsReferencesUpdateUnauthorized) IsClientError added in v1.18.0

func (o *ObjectsReferencesUpdateUnauthorized) IsClientError() bool

IsClientError returns true when this objects references update unauthorized response has a 4xx status code

func (*ObjectsReferencesUpdateUnauthorized) IsCode added in v1.18.0

IsCode returns true when this objects references update unauthorized response a status code equal to that given

func (*ObjectsReferencesUpdateUnauthorized) IsRedirect added in v1.18.0

func (o *ObjectsReferencesUpdateUnauthorized) IsRedirect() bool

IsRedirect returns true when this objects references update unauthorized response has a 3xx status code

func (*ObjectsReferencesUpdateUnauthorized) IsServerError added in v1.18.0

func (o *ObjectsReferencesUpdateUnauthorized) IsServerError() bool

IsServerError returns true when this objects references update unauthorized response has a 5xx status code

func (*ObjectsReferencesUpdateUnauthorized) IsSuccess added in v1.18.0

IsSuccess returns true when this objects references update unauthorized response has a 2xx status code

func (*ObjectsReferencesUpdateUnauthorized) String added in v1.18.0

type ObjectsReferencesUpdateUnprocessableEntity

type ObjectsReferencesUpdateUnprocessableEntity struct {
	Payload *models.ErrorResponse
}

ObjectsReferencesUpdateUnprocessableEntity describes a response with status code 422, with default header values.

Request body is well-formed (i.e., syntactically correct), but semantically erroneous. Are you sure the property exists or that it is a class?

func NewObjectsReferencesUpdateUnprocessableEntity

func NewObjectsReferencesUpdateUnprocessableEntity() *ObjectsReferencesUpdateUnprocessableEntity

NewObjectsReferencesUpdateUnprocessableEntity creates a ObjectsReferencesUpdateUnprocessableEntity with default headers values

func (*ObjectsReferencesUpdateUnprocessableEntity) Code added in v1.18.0

Code gets the status code for the objects references update unprocessable entity response

func (*ObjectsReferencesUpdateUnprocessableEntity) Error

func (*ObjectsReferencesUpdateUnprocessableEntity) GetPayload

func (*ObjectsReferencesUpdateUnprocessableEntity) IsClientError added in v1.18.0

IsClientError returns true when this objects references update unprocessable entity response has a 4xx status code

func (*ObjectsReferencesUpdateUnprocessableEntity) IsCode added in v1.18.0

IsCode returns true when this objects references update unprocessable entity response a status code equal to that given

func (*ObjectsReferencesUpdateUnprocessableEntity) IsRedirect added in v1.18.0

IsRedirect returns true when this objects references update unprocessable entity response has a 3xx status code

func (*ObjectsReferencesUpdateUnprocessableEntity) IsServerError added in v1.18.0

IsServerError returns true when this objects references update unprocessable entity response has a 5xx status code

func (*ObjectsReferencesUpdateUnprocessableEntity) IsSuccess added in v1.18.0

IsSuccess returns true when this objects references update unprocessable entity response has a 2xx status code

func (*ObjectsReferencesUpdateUnprocessableEntity) String added in v1.18.0

type ObjectsUpdateForbidden

type ObjectsUpdateForbidden struct {
	Payload *models.ErrorResponse
}

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

Forbidden

func NewObjectsUpdateForbidden

func NewObjectsUpdateForbidden() *ObjectsUpdateForbidden

NewObjectsUpdateForbidden creates a ObjectsUpdateForbidden with default headers values

func (*ObjectsUpdateForbidden) Code added in v1.18.0

func (o *ObjectsUpdateForbidden) Code() int

Code gets the status code for the objects update forbidden response

func (*ObjectsUpdateForbidden) Error

func (o *ObjectsUpdateForbidden) Error() string

func (*ObjectsUpdateForbidden) GetPayload

func (o *ObjectsUpdateForbidden) GetPayload() *models.ErrorResponse

func (*ObjectsUpdateForbidden) IsClientError added in v1.18.0

func (o *ObjectsUpdateForbidden) IsClientError() bool

IsClientError returns true when this objects update forbidden response has a 4xx status code

func (*ObjectsUpdateForbidden) IsCode added in v1.18.0

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

IsCode returns true when this objects update forbidden response a status code equal to that given

func (*ObjectsUpdateForbidden) IsRedirect added in v1.18.0

func (o *ObjectsUpdateForbidden) IsRedirect() bool

IsRedirect returns true when this objects update forbidden response has a 3xx status code

func (*ObjectsUpdateForbidden) IsServerError added in v1.18.0

func (o *ObjectsUpdateForbidden) IsServerError() bool

IsServerError returns true when this objects update forbidden response has a 5xx status code

func (*ObjectsUpdateForbidden) IsSuccess added in v1.18.0

func (o *ObjectsUpdateForbidden) IsSuccess() bool

IsSuccess returns true when this objects update forbidden response has a 2xx status code

func (*ObjectsUpdateForbidden) String added in v1.18.0

func (o *ObjectsUpdateForbidden) String() string

type ObjectsUpdateInternalServerError

type ObjectsUpdateInternalServerError struct {
	Payload *models.ErrorResponse
}

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

An error has occurred while trying to fulfill the request. Most likely the ErrorResponse will contain more information about the error.

func NewObjectsUpdateInternalServerError

func NewObjectsUpdateInternalServerError() *ObjectsUpdateInternalServerError

NewObjectsUpdateInternalServerError creates a ObjectsUpdateInternalServerError with default headers values

func (*ObjectsUpdateInternalServerError) Code added in v1.18.0

Code gets the status code for the objects update internal server error response

func (*ObjectsUpdateInternalServerError) Error

func (*ObjectsUpdateInternalServerError) GetPayload

func (*ObjectsUpdateInternalServerError) IsClientError added in v1.18.0

func (o *ObjectsUpdateInternalServerError) IsClientError() bool

IsClientError returns true when this objects update internal server error response has a 4xx status code

func (*ObjectsUpdateInternalServerError) IsCode added in v1.18.0

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

IsCode returns true when this objects update internal server error response a status code equal to that given

func (*ObjectsUpdateInternalServerError) IsRedirect added in v1.18.0

func (o *ObjectsUpdateInternalServerError) IsRedirect() bool

IsRedirect returns true when this objects update internal server error response has a 3xx status code

func (*ObjectsUpdateInternalServerError) IsServerError added in v1.18.0

func (o *ObjectsUpdateInternalServerError) IsServerError() bool

IsServerError returns true when this objects update internal server error response has a 5xx status code

func (*ObjectsUpdateInternalServerError) IsSuccess added in v1.18.0

func (o *ObjectsUpdateInternalServerError) IsSuccess() bool

IsSuccess returns true when this objects update internal server error response has a 2xx status code

func (*ObjectsUpdateInternalServerError) String added in v1.18.0

type ObjectsUpdateNotFound

type ObjectsUpdateNotFound struct {
}

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

Successful query result but no resource was found.

func NewObjectsUpdateNotFound

func NewObjectsUpdateNotFound() *ObjectsUpdateNotFound

NewObjectsUpdateNotFound creates a ObjectsUpdateNotFound with default headers values

func (*ObjectsUpdateNotFound) Code added in v1.18.0

func (o *ObjectsUpdateNotFound) Code() int

Code gets the status code for the objects update not found response

func (*ObjectsUpdateNotFound) Error

func (o *ObjectsUpdateNotFound) Error() string

func (*ObjectsUpdateNotFound) IsClientError added in v1.18.0

func (o *ObjectsUpdateNotFound) IsClientError() bool

IsClientError returns true when this objects update not found response has a 4xx status code

func (*ObjectsUpdateNotFound) IsCode added in v1.18.0

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

IsCode returns true when this objects update not found response a status code equal to that given

func (*ObjectsUpdateNotFound) IsRedirect added in v1.18.0

func (o *ObjectsUpdateNotFound) IsRedirect() bool

IsRedirect returns true when this objects update not found response has a 3xx status code

func (*ObjectsUpdateNotFound) IsServerError added in v1.18.0

func (o *ObjectsUpdateNotFound) IsServerError() bool

IsServerError returns true when this objects update not found response has a 5xx status code

func (*ObjectsUpdateNotFound) IsSuccess added in v1.18.0

func (o *ObjectsUpdateNotFound) IsSuccess() bool

IsSuccess returns true when this objects update not found response has a 2xx status code

func (*ObjectsUpdateNotFound) String added in v1.18.0

func (o *ObjectsUpdateNotFound) String() string

type ObjectsUpdateOK

type ObjectsUpdateOK struct {
	Payload *models.Object
}

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

Successfully received.

func NewObjectsUpdateOK

func NewObjectsUpdateOK() *ObjectsUpdateOK

NewObjectsUpdateOK creates a ObjectsUpdateOK with default headers values

func (*ObjectsUpdateOK) Code added in v1.18.0

func (o *ObjectsUpdateOK) Code() int

Code gets the status code for the objects update o k response

func (*ObjectsUpdateOK) Error

func (o *ObjectsUpdateOK) Error() string

func (*ObjectsUpdateOK) GetPayload

func (o *ObjectsUpdateOK) GetPayload() *models.Object

func (*ObjectsUpdateOK) IsClientError added in v1.18.0

func (o *ObjectsUpdateOK) IsClientError() bool

IsClientError returns true when this objects update o k response has a 4xx status code

func (*ObjectsUpdateOK) IsCode added in v1.18.0

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

IsCode returns true when this objects update o k response a status code equal to that given

func (*ObjectsUpdateOK) IsRedirect added in v1.18.0

func (o *ObjectsUpdateOK) IsRedirect() bool

IsRedirect returns true when this objects update o k response has a 3xx status code

func (*ObjectsUpdateOK) IsServerError added in v1.18.0

func (o *ObjectsUpdateOK) IsServerError() bool

IsServerError returns true when this objects update o k response has a 5xx status code

func (*ObjectsUpdateOK) IsSuccess added in v1.18.0

func (o *ObjectsUpdateOK) IsSuccess() bool

IsSuccess returns true when this objects update o k response has a 2xx status code

func (*ObjectsUpdateOK) String added in v1.18.0

func (o *ObjectsUpdateOK) String() string

type ObjectsUpdateParams

type ObjectsUpdateParams struct {

	// Body.
	Body *models.Object

	/* ConsistencyLevel.

	   Determines how many replicas must acknowledge a request before it is considered successful
	*/
	ConsistencyLevel *string

	/* ID.

	   Unique ID of the Object.

	   Format: uuid
	*/
	ID strfmt.UUID

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

ObjectsUpdateParams contains all the parameters to send to the API endpoint

for the objects update operation.

Typically these are written to a http.Request.

func NewObjectsUpdateParams

func NewObjectsUpdateParams() *ObjectsUpdateParams

NewObjectsUpdateParams creates a new ObjectsUpdateParams 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 NewObjectsUpdateParamsWithContext

func NewObjectsUpdateParamsWithContext(ctx context.Context) *ObjectsUpdateParams

NewObjectsUpdateParamsWithContext creates a new ObjectsUpdateParams object with the ability to set a context for a request.

func NewObjectsUpdateParamsWithHTTPClient

func NewObjectsUpdateParamsWithHTTPClient(client *http.Client) *ObjectsUpdateParams

NewObjectsUpdateParamsWithHTTPClient creates a new ObjectsUpdateParams object with the ability to set a custom HTTPClient for a request.

func NewObjectsUpdateParamsWithTimeout

func NewObjectsUpdateParamsWithTimeout(timeout time.Duration) *ObjectsUpdateParams

NewObjectsUpdateParamsWithTimeout creates a new ObjectsUpdateParams object with the ability to set a timeout on a request.

func (*ObjectsUpdateParams) SetBody

func (o *ObjectsUpdateParams) SetBody(body *models.Object)

SetBody adds the body to the objects update params

func (*ObjectsUpdateParams) SetConsistencyLevel added in v1.18.0

func (o *ObjectsUpdateParams) SetConsistencyLevel(consistencyLevel *string)

SetConsistencyLevel adds the consistencyLevel to the objects update params

func (*ObjectsUpdateParams) SetContext

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

SetContext adds the context to the objects update params

func (*ObjectsUpdateParams) SetDefaults added in v1.18.0

func (o *ObjectsUpdateParams) SetDefaults()

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

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

func (*ObjectsUpdateParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the objects update params

func (*ObjectsUpdateParams) SetID

func (o *ObjectsUpdateParams) SetID(id strfmt.UUID)

SetID adds the id to the objects update params

func (*ObjectsUpdateParams) SetTimeout

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

SetTimeout adds the timeout to the objects update params

func (*ObjectsUpdateParams) WithBody

WithBody adds the body to the objects update params

func (*ObjectsUpdateParams) WithConsistencyLevel added in v1.18.0

func (o *ObjectsUpdateParams) WithConsistencyLevel(consistencyLevel *string) *ObjectsUpdateParams

WithConsistencyLevel adds the consistencyLevel to the objects update params

func (*ObjectsUpdateParams) WithContext

WithContext adds the context to the objects update params

func (*ObjectsUpdateParams) WithDefaults added in v1.18.0

func (o *ObjectsUpdateParams) WithDefaults() *ObjectsUpdateParams

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

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

func (*ObjectsUpdateParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the objects update params

func (*ObjectsUpdateParams) WithID

WithID adds the id to the objects update params

func (*ObjectsUpdateParams) WithTimeout

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

WithTimeout adds the timeout to the objects update params

func (*ObjectsUpdateParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type ObjectsUpdateReader

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

ObjectsUpdateReader is a Reader for the ObjectsUpdate structure.

func (*ObjectsUpdateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ObjectsUpdateUnauthorized

type ObjectsUpdateUnauthorized struct {
}

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

Unauthorized or invalid credentials.

func NewObjectsUpdateUnauthorized

func NewObjectsUpdateUnauthorized() *ObjectsUpdateUnauthorized

NewObjectsUpdateUnauthorized creates a ObjectsUpdateUnauthorized with default headers values

func (*ObjectsUpdateUnauthorized) Code added in v1.18.0

func (o *ObjectsUpdateUnauthorized) Code() int

Code gets the status code for the objects update unauthorized response

func (*ObjectsUpdateUnauthorized) Error

func (o *ObjectsUpdateUnauthorized) Error() string

func (*ObjectsUpdateUnauthorized) IsClientError added in v1.18.0

func (o *ObjectsUpdateUnauthorized) IsClientError() bool

IsClientError returns true when this objects update unauthorized response has a 4xx status code

func (*ObjectsUpdateUnauthorized) IsCode added in v1.18.0

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

IsCode returns true when this objects update unauthorized response a status code equal to that given

func (*ObjectsUpdateUnauthorized) IsRedirect added in v1.18.0

func (o *ObjectsUpdateUnauthorized) IsRedirect() bool

IsRedirect returns true when this objects update unauthorized response has a 3xx status code

func (*ObjectsUpdateUnauthorized) IsServerError added in v1.18.0

func (o *ObjectsUpdateUnauthorized) IsServerError() bool

IsServerError returns true when this objects update unauthorized response has a 5xx status code

func (*ObjectsUpdateUnauthorized) IsSuccess added in v1.18.0

func (o *ObjectsUpdateUnauthorized) IsSuccess() bool

IsSuccess returns true when this objects update unauthorized response has a 2xx status code

func (*ObjectsUpdateUnauthorized) String added in v1.18.0

func (o *ObjectsUpdateUnauthorized) String() string

type ObjectsUpdateUnprocessableEntity

type ObjectsUpdateUnprocessableEntity struct {
	Payload *models.ErrorResponse
}

ObjectsUpdateUnprocessableEntity describes a response with status code 422, with default header values.

Request body is well-formed (i.e., syntactically correct), but semantically erroneous. Are you sure the class is defined in the configuration file?

func NewObjectsUpdateUnprocessableEntity

func NewObjectsUpdateUnprocessableEntity() *ObjectsUpdateUnprocessableEntity

NewObjectsUpdateUnprocessableEntity creates a ObjectsUpdateUnprocessableEntity with default headers values

func (*ObjectsUpdateUnprocessableEntity) Code added in v1.18.0

Code gets the status code for the objects update unprocessable entity response

func (*ObjectsUpdateUnprocessableEntity) Error

func (*ObjectsUpdateUnprocessableEntity) GetPayload

func (*ObjectsUpdateUnprocessableEntity) IsClientError added in v1.18.0

func (o *ObjectsUpdateUnprocessableEntity) IsClientError() bool

IsClientError returns true when this objects update unprocessable entity response has a 4xx status code

func (*ObjectsUpdateUnprocessableEntity) IsCode added in v1.18.0

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

IsCode returns true when this objects update unprocessable entity response a status code equal to that given

func (*ObjectsUpdateUnprocessableEntity) IsRedirect added in v1.18.0

func (o *ObjectsUpdateUnprocessableEntity) IsRedirect() bool

IsRedirect returns true when this objects update unprocessable entity response has a 3xx status code

func (*ObjectsUpdateUnprocessableEntity) IsServerError added in v1.18.0

func (o *ObjectsUpdateUnprocessableEntity) IsServerError() bool

IsServerError returns true when this objects update unprocessable entity response has a 5xx status code

func (*ObjectsUpdateUnprocessableEntity) IsSuccess added in v1.18.0

func (o *ObjectsUpdateUnprocessableEntity) IsSuccess() bool

IsSuccess returns true when this objects update unprocessable entity response has a 2xx status code

func (*ObjectsUpdateUnprocessableEntity) String added in v1.18.0

type ObjectsValidateForbidden

type ObjectsValidateForbidden struct {
	Payload *models.ErrorResponse
}

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

Forbidden

func NewObjectsValidateForbidden

func NewObjectsValidateForbidden() *ObjectsValidateForbidden

NewObjectsValidateForbidden creates a ObjectsValidateForbidden with default headers values

func (*ObjectsValidateForbidden) Code added in v1.18.0

func (o *ObjectsValidateForbidden) Code() int

Code gets the status code for the objects validate forbidden response

func (*ObjectsValidateForbidden) Error

func (o *ObjectsValidateForbidden) Error() string

func (*ObjectsValidateForbidden) GetPayload

func (*ObjectsValidateForbidden) IsClientError added in v1.18.0

func (o *ObjectsValidateForbidden) IsClientError() bool

IsClientError returns true when this objects validate forbidden response has a 4xx status code

func (*ObjectsValidateForbidden) IsCode added in v1.18.0

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

IsCode returns true when this objects validate forbidden response a status code equal to that given

func (*ObjectsValidateForbidden) IsRedirect added in v1.18.0

func (o *ObjectsValidateForbidden) IsRedirect() bool

IsRedirect returns true when this objects validate forbidden response has a 3xx status code

func (*ObjectsValidateForbidden) IsServerError added in v1.18.0

func (o *ObjectsValidateForbidden) IsServerError() bool

IsServerError returns true when this objects validate forbidden response has a 5xx status code

func (*ObjectsValidateForbidden) IsSuccess added in v1.18.0

func (o *ObjectsValidateForbidden) IsSuccess() bool

IsSuccess returns true when this objects validate forbidden response has a 2xx status code

func (*ObjectsValidateForbidden) String added in v1.18.0

func (o *ObjectsValidateForbidden) String() string

type ObjectsValidateInternalServerError

type ObjectsValidateInternalServerError struct {
	Payload *models.ErrorResponse
}

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

An error has occurred while trying to fulfill the request. Most likely the ErrorResponse will contain more information about the error.

func NewObjectsValidateInternalServerError

func NewObjectsValidateInternalServerError() *ObjectsValidateInternalServerError

NewObjectsValidateInternalServerError creates a ObjectsValidateInternalServerError with default headers values

func (*ObjectsValidateInternalServerError) Code added in v1.18.0

Code gets the status code for the objects validate internal server error response

func (*ObjectsValidateInternalServerError) Error

func (*ObjectsValidateInternalServerError) GetPayload

func (*ObjectsValidateInternalServerError) IsClientError added in v1.18.0

func (o *ObjectsValidateInternalServerError) IsClientError() bool

IsClientError returns true when this objects validate internal server error response has a 4xx status code

func (*ObjectsValidateInternalServerError) IsCode added in v1.18.0

IsCode returns true when this objects validate internal server error response a status code equal to that given

func (*ObjectsValidateInternalServerError) IsRedirect added in v1.18.0

func (o *ObjectsValidateInternalServerError) IsRedirect() bool

IsRedirect returns true when this objects validate internal server error response has a 3xx status code

func (*ObjectsValidateInternalServerError) IsServerError added in v1.18.0

func (o *ObjectsValidateInternalServerError) IsServerError() bool

IsServerError returns true when this objects validate internal server error response has a 5xx status code

func (*ObjectsValidateInternalServerError) IsSuccess added in v1.18.0

IsSuccess returns true when this objects validate internal server error response has a 2xx status code

func (*ObjectsValidateInternalServerError) String added in v1.18.0

type ObjectsValidateOK

type ObjectsValidateOK struct {
}

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

Successfully validated.

func NewObjectsValidateOK

func NewObjectsValidateOK() *ObjectsValidateOK

NewObjectsValidateOK creates a ObjectsValidateOK with default headers values

func (*ObjectsValidateOK) Code added in v1.18.0

func (o *ObjectsValidateOK) Code() int

Code gets the status code for the objects validate o k response

func (*ObjectsValidateOK) Error

func (o *ObjectsValidateOK) Error() string

func (*ObjectsValidateOK) IsClientError added in v1.18.0

func (o *ObjectsValidateOK) IsClientError() bool

IsClientError returns true when this objects validate o k response has a 4xx status code

func (*ObjectsValidateOK) IsCode added in v1.18.0

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

IsCode returns true when this objects validate o k response a status code equal to that given

func (*ObjectsValidateOK) IsRedirect added in v1.18.0

func (o *ObjectsValidateOK) IsRedirect() bool

IsRedirect returns true when this objects validate o k response has a 3xx status code

func (*ObjectsValidateOK) IsServerError added in v1.18.0

func (o *ObjectsValidateOK) IsServerError() bool

IsServerError returns true when this objects validate o k response has a 5xx status code

func (*ObjectsValidateOK) IsSuccess added in v1.18.0

func (o *ObjectsValidateOK) IsSuccess() bool

IsSuccess returns true when this objects validate o k response has a 2xx status code

func (*ObjectsValidateOK) String added in v1.18.0

func (o *ObjectsValidateOK) String() string

type ObjectsValidateParams

type ObjectsValidateParams struct {

	// Body.
	Body *models.Object

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

ObjectsValidateParams contains all the parameters to send to the API endpoint

for the objects validate operation.

Typically these are written to a http.Request.

func NewObjectsValidateParams

func NewObjectsValidateParams() *ObjectsValidateParams

NewObjectsValidateParams creates a new ObjectsValidateParams 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 NewObjectsValidateParamsWithContext

func NewObjectsValidateParamsWithContext(ctx context.Context) *ObjectsValidateParams

NewObjectsValidateParamsWithContext creates a new ObjectsValidateParams object with the ability to set a context for a request.

func NewObjectsValidateParamsWithHTTPClient

func NewObjectsValidateParamsWithHTTPClient(client *http.Client) *ObjectsValidateParams

NewObjectsValidateParamsWithHTTPClient creates a new ObjectsValidateParams object with the ability to set a custom HTTPClient for a request.

func NewObjectsValidateParamsWithTimeout

func NewObjectsValidateParamsWithTimeout(timeout time.Duration) *ObjectsValidateParams

NewObjectsValidateParamsWithTimeout creates a new ObjectsValidateParams object with the ability to set a timeout on a request.

func (*ObjectsValidateParams) SetBody

func (o *ObjectsValidateParams) SetBody(body *models.Object)

SetBody adds the body to the objects validate params

func (*ObjectsValidateParams) SetContext

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

SetContext adds the context to the objects validate params

func (*ObjectsValidateParams) SetDefaults added in v1.18.0

func (o *ObjectsValidateParams) SetDefaults()

SetDefaults hydrates default values in the objects validate params (not the query body).

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

func (*ObjectsValidateParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the objects validate params

func (*ObjectsValidateParams) SetTimeout

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

SetTimeout adds the timeout to the objects validate params

func (*ObjectsValidateParams) WithBody

WithBody adds the body to the objects validate params

func (*ObjectsValidateParams) WithContext

WithContext adds the context to the objects validate params

func (*ObjectsValidateParams) WithDefaults added in v1.18.0

func (o *ObjectsValidateParams) WithDefaults() *ObjectsValidateParams

WithDefaults hydrates default values in the objects validate params (not the query body).

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

func (*ObjectsValidateParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the objects validate params

func (*ObjectsValidateParams) WithTimeout

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

WithTimeout adds the timeout to the objects validate params

func (*ObjectsValidateParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type ObjectsValidateReader

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

ObjectsValidateReader is a Reader for the ObjectsValidate structure.

func (*ObjectsValidateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ObjectsValidateUnauthorized

type ObjectsValidateUnauthorized struct {
}

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

Unauthorized or invalid credentials.

func NewObjectsValidateUnauthorized

func NewObjectsValidateUnauthorized() *ObjectsValidateUnauthorized

NewObjectsValidateUnauthorized creates a ObjectsValidateUnauthorized with default headers values

func (*ObjectsValidateUnauthorized) Code added in v1.18.0

func (o *ObjectsValidateUnauthorized) Code() int

Code gets the status code for the objects validate unauthorized response

func (*ObjectsValidateUnauthorized) Error

func (*ObjectsValidateUnauthorized) IsClientError added in v1.18.0

func (o *ObjectsValidateUnauthorized) IsClientError() bool

IsClientError returns true when this objects validate unauthorized response has a 4xx status code

func (*ObjectsValidateUnauthorized) IsCode added in v1.18.0

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

IsCode returns true when this objects validate unauthorized response a status code equal to that given

func (*ObjectsValidateUnauthorized) IsRedirect added in v1.18.0

func (o *ObjectsValidateUnauthorized) IsRedirect() bool

IsRedirect returns true when this objects validate unauthorized response has a 3xx status code

func (*ObjectsValidateUnauthorized) IsServerError added in v1.18.0

func (o *ObjectsValidateUnauthorized) IsServerError() bool

IsServerError returns true when this objects validate unauthorized response has a 5xx status code

func (*ObjectsValidateUnauthorized) IsSuccess added in v1.18.0

func (o *ObjectsValidateUnauthorized) IsSuccess() bool

IsSuccess returns true when this objects validate unauthorized response has a 2xx status code

func (*ObjectsValidateUnauthorized) String added in v1.18.0

func (o *ObjectsValidateUnauthorized) String() string

type ObjectsValidateUnprocessableEntity

type ObjectsValidateUnprocessableEntity struct {
	Payload *models.ErrorResponse
}

ObjectsValidateUnprocessableEntity describes a response with status code 422, with default header values.

Request body is well-formed (i.e., syntactically correct), but semantically erroneous. Are you sure the class is defined in the configuration file?

func NewObjectsValidateUnprocessableEntity

func NewObjectsValidateUnprocessableEntity() *ObjectsValidateUnprocessableEntity

NewObjectsValidateUnprocessableEntity creates a ObjectsValidateUnprocessableEntity with default headers values

func (*ObjectsValidateUnprocessableEntity) Code added in v1.18.0

Code gets the status code for the objects validate unprocessable entity response

func (*ObjectsValidateUnprocessableEntity) Error

func (*ObjectsValidateUnprocessableEntity) GetPayload

func (*ObjectsValidateUnprocessableEntity) IsClientError added in v1.18.0

func (o *ObjectsValidateUnprocessableEntity) IsClientError() bool

IsClientError returns true when this objects validate unprocessable entity response has a 4xx status code

func (*ObjectsValidateUnprocessableEntity) IsCode added in v1.18.0

IsCode returns true when this objects validate unprocessable entity response a status code equal to that given

func (*ObjectsValidateUnprocessableEntity) IsRedirect added in v1.18.0

func (o *ObjectsValidateUnprocessableEntity) IsRedirect() bool

IsRedirect returns true when this objects validate unprocessable entity response has a 3xx status code

func (*ObjectsValidateUnprocessableEntity) IsServerError added in v1.18.0

func (o *ObjectsValidateUnprocessableEntity) IsServerError() bool

IsServerError returns true when this objects validate unprocessable entity response has a 5xx status code

func (*ObjectsValidateUnprocessableEntity) IsSuccess added in v1.18.0

IsSuccess returns true when this objects validate unprocessable entity response has a 2xx status code

func (*ObjectsValidateUnprocessableEntity) String added in v1.18.0

Jump to

Keyboard shortcuts

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