container_image

package
v1.0.0 Latest Latest
Warning

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

Go to latest
Published: Feb 16, 2024 License: MPL-2.0 Imports: 13 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 container image API

func (*Client) GetContainerImage

func (a *Client) GetContainerImage(params *GetContainerImageParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetContainerImageOK, error)

GetContainerImage gets instance of container image

Get instance of container image

func (*Client) ListContainerImage

func (a *Client) ListContainerImage(params *ListContainerImageParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListContainerImageOK, error)

ListContainerImage lists instances of container image

List instances of container image

func (*Client) ListImageTargetRefs

func (a *Client) ListImageTargetRefs(params *ListImageTargetRefsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListImageTargetRefsOK, error)

ListImageTargetRefs lists instances of image target references for a container image

List instances of image target references for a container image

func (*Client) SetTransport

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

SetTransport changes the transport on the client

type ClientOption

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

type ClientService

type ClientService interface {
	GetContainerImage(params *GetContainerImageParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetContainerImageOK, error)

	ListContainerImage(params *ListContainerImageParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListContainerImageOK, error)

	ListImageTargetRefs(params *ListImageTargetRefsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListImageTargetRefsOK, 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 container image API client.

type GetContainerImageBadRequest

type GetContainerImageBadRequest struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *GetContainerImageBadRequestBody
}

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

Bad Request: A parameter provided as a part of the request was invalid.

func NewGetContainerImageBadRequest

func NewGetContainerImageBadRequest() *GetContainerImageBadRequest

NewGetContainerImageBadRequest creates a GetContainerImageBadRequest with default headers values

func (*GetContainerImageBadRequest) Code

func (o *GetContainerImageBadRequest) Code() int

Code gets the status code for the get container image bad request response

func (*GetContainerImageBadRequest) Error

func (*GetContainerImageBadRequest) GetPayload

func (*GetContainerImageBadRequest) IsClientError

func (o *GetContainerImageBadRequest) IsClientError() bool

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

func (*GetContainerImageBadRequest) IsCode

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

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

func (*GetContainerImageBadRequest) IsRedirect

func (o *GetContainerImageBadRequest) IsRedirect() bool

IsRedirect returns true when this get container image bad request response has a 3xx status code

func (*GetContainerImageBadRequest) IsServerError

func (o *GetContainerImageBadRequest) IsServerError() bool

IsServerError returns true when this get container image bad request response has a 5xx status code

func (*GetContainerImageBadRequest) IsSuccess

func (o *GetContainerImageBadRequest) IsSuccess() bool

IsSuccess returns true when this get container image bad request response has a 2xx status code

func (*GetContainerImageBadRequest) String

func (o *GetContainerImageBadRequest) String() string

type GetContainerImageBadRequestBody

type GetContainerImageBadRequestBody struct {

	// errors
	// Example: [{"detail":"Permission denied for this resource","status":"403"}]
	// Required: true
	// Min Items: 1
	Errors []*GetContainerImageBadRequestBodyErrorsItems0 `json:"errors"`

	// jsonapi
	// Required: true
	Jsonapi *GetContainerImageBadRequestBodyJsonapi `json:"jsonapi"`
}

GetContainerImageBadRequestBody get container image bad request body // Example: {"errors":[{"detail":"Permission denied for this resource","status":"403"}],"jsonapi":{"version":"1.0"}} swagger:model GetContainerImageBadRequestBody

func (*GetContainerImageBadRequestBody) ContextValidate

func (o *GetContainerImageBadRequestBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this get container image bad request body based on the context it is used

func (*GetContainerImageBadRequestBody) MarshalBinary

func (o *GetContainerImageBadRequestBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*GetContainerImageBadRequestBody) UnmarshalBinary

func (o *GetContainerImageBadRequestBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*GetContainerImageBadRequestBody) Validate

Validate validates this get container image bad request body

type GetContainerImageBadRequestBodyErrorsItems0

type GetContainerImageBadRequestBodyErrorsItems0 struct {

	// An application-specific error code, expressed as a string value.
	// Example: entity-not-found
	Code string `json:"code,omitempty"`

	// A human-readable explanation specific to this occurrence of the problem.
	// Example: The request was missing these required fields: ...
	// Required: true
	Detail *string `json:"detail"`

	// A unique identifier for this particular occurrence of the problem.
	// Example: f16c31b5-6129-4571-add8-d589da9be524
	// Format: uuid
	ID strfmt.UUID `json:"id,omitempty"`

	// links
	Links *GetContainerImageBadRequestBodyErrorsItems0Links `json:"links,omitempty"`

	// meta
	// Example: {"key":"value"}
	Meta interface{} `json:"meta,omitempty"`

	// source
	Source *GetContainerImageBadRequestBodyErrorsItems0Source `json:"source,omitempty"`

	// The HTTP status code applicable to this problem, expressed as a string value.
	// Example: 400
	// Required: true
	// Pattern: ^[45]\d\d$
	Status *string `json:"status"`

	// A short, human-readable summary of the problem that SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization.
	// Example: Bad request
	Title string `json:"title,omitempty"`
}

GetContainerImageBadRequestBodyErrorsItems0 get container image bad request body errors items0 // Example: {"detail":"Not Found","status":"404"} swagger:model GetContainerImageBadRequestBodyErrorsItems0

func (*GetContainerImageBadRequestBodyErrorsItems0) ContextValidate

ContextValidate validate this get container image bad request body errors items0 based on the context it is used

func (*GetContainerImageBadRequestBodyErrorsItems0) MarshalBinary

func (o *GetContainerImageBadRequestBodyErrorsItems0) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*GetContainerImageBadRequestBodyErrorsItems0) UnmarshalBinary

func (o *GetContainerImageBadRequestBodyErrorsItems0) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*GetContainerImageBadRequestBodyErrorsItems0) Validate

Validate validates this get container image bad request body errors items0

type GetContainerImageBadRequestBodyErrorsItems0Links struct {

	// about
	// Example: https://example.com/api/resource
	About interface{} `json:"about,omitempty"`
}

GetContainerImageBadRequestBodyErrorsItems0Links A link that leads to further details about this particular occurrance of the problem. // Example: {"about":"https://example.com/about_this_error"} swagger:model GetContainerImageBadRequestBodyErrorsItems0Links

func (*GetContainerImageBadRequestBodyErrorsItems0Links) ContextValidate

ContextValidate validates this get container image bad request body errors items0 links based on context it is used

func (*GetContainerImageBadRequestBodyErrorsItems0Links) MarshalBinary

MarshalBinary interface implementation

func (*GetContainerImageBadRequestBodyErrorsItems0Links) UnmarshalBinary

UnmarshalBinary interface implementation

func (*GetContainerImageBadRequestBodyErrorsItems0Links) Validate

Validate validates this get container image bad request body errors items0 links

type GetContainerImageBadRequestBodyErrorsItems0Source

type GetContainerImageBadRequestBodyErrorsItems0Source struct {

	// A string indicating which URI query parameter caused the error.
	// Example: param1
	Parameter string `json:"parameter,omitempty"`

	// A JSON Pointer [RFC6901] to the associated entity in the request document.
	// Example: /data/attributes
	Pointer string `json:"pointer,omitempty"`
}

GetContainerImageBadRequestBodyErrorsItems0Source get container image bad request body errors items0 source // Example: {"pointer":"/data/attributes"} swagger:model GetContainerImageBadRequestBodyErrorsItems0Source

func (*GetContainerImageBadRequestBodyErrorsItems0Source) ContextValidate

ContextValidate validates this get container image bad request body errors items0 source based on context it is used

func (*GetContainerImageBadRequestBodyErrorsItems0Source) MarshalBinary

MarshalBinary interface implementation

func (*GetContainerImageBadRequestBodyErrorsItems0Source) UnmarshalBinary

UnmarshalBinary interface implementation

func (*GetContainerImageBadRequestBodyErrorsItems0Source) Validate

Validate validates this get container image bad request body errors items0 source

type GetContainerImageBadRequestBodyJsonapi

type GetContainerImageBadRequestBodyJsonapi struct {

	// Version of the JSON API specification this server supports.
	// Example: 1.0
	// Required: true
	// Pattern: ^(0|[1-9]\d*)\.(0|[1-9]\d*)$
	Version *string `json:"version"`
}

GetContainerImageBadRequestBodyJsonapi get container image bad request body jsonapi // Example: {"version":"1.0"} swagger:model GetContainerImageBadRequestBodyJsonapi

func (*GetContainerImageBadRequestBodyJsonapi) ContextValidate

ContextValidate validates this get container image bad request body jsonapi based on context it is used

func (*GetContainerImageBadRequestBodyJsonapi) MarshalBinary

func (o *GetContainerImageBadRequestBodyJsonapi) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*GetContainerImageBadRequestBodyJsonapi) UnmarshalBinary

func (o *GetContainerImageBadRequestBodyJsonapi) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*GetContainerImageBadRequestBodyJsonapi) Validate

Validate validates this get container image bad request body jsonapi

type GetContainerImageConflict

type GetContainerImageConflict struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *GetContainerImageConflictBody
}

GetContainerImageConflict describes a response with status code 409, with default header values.

Conflict: The requested operation conflicts with the current state of the resource in some way.

func NewGetContainerImageConflict

func NewGetContainerImageConflict() *GetContainerImageConflict

NewGetContainerImageConflict creates a GetContainerImageConflict with default headers values

func (*GetContainerImageConflict) Code

func (o *GetContainerImageConflict) Code() int

Code gets the status code for the get container image conflict response

func (*GetContainerImageConflict) Error

func (o *GetContainerImageConflict) Error() string

func (*GetContainerImageConflict) GetPayload

func (*GetContainerImageConflict) IsClientError

func (o *GetContainerImageConflict) IsClientError() bool

IsClientError returns true when this get container image conflict response has a 4xx status code

func (*GetContainerImageConflict) IsCode

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

IsCode returns true when this get container image conflict response a status code equal to that given

func (*GetContainerImageConflict) IsRedirect

func (o *GetContainerImageConflict) IsRedirect() bool

IsRedirect returns true when this get container image conflict response has a 3xx status code

func (*GetContainerImageConflict) IsServerError

func (o *GetContainerImageConflict) IsServerError() bool

IsServerError returns true when this get container image conflict response has a 5xx status code

func (*GetContainerImageConflict) IsSuccess

func (o *GetContainerImageConflict) IsSuccess() bool

IsSuccess returns true when this get container image conflict response has a 2xx status code

func (*GetContainerImageConflict) String

func (o *GetContainerImageConflict) String() string

type GetContainerImageConflictBody

type GetContainerImageConflictBody struct {

	// errors
	// Example: [{"detail":"Permission denied for this resource","status":"403"}]
	// Required: true
	// Min Items: 1
	Errors []*GetContainerImageConflictBodyErrorsItems0 `json:"errors"`

	// jsonapi
	// Required: true
	Jsonapi *GetContainerImageConflictBodyJsonapi `json:"jsonapi"`
}

GetContainerImageConflictBody get container image conflict body // Example: {"errors":[{"detail":"Permission denied for this resource","status":"403"}],"jsonapi":{"version":"1.0"}} swagger:model GetContainerImageConflictBody

func (*GetContainerImageConflictBody) ContextValidate

func (o *GetContainerImageConflictBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this get container image conflict body based on the context it is used

func (*GetContainerImageConflictBody) MarshalBinary

func (o *GetContainerImageConflictBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*GetContainerImageConflictBody) UnmarshalBinary

func (o *GetContainerImageConflictBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*GetContainerImageConflictBody) Validate

func (o *GetContainerImageConflictBody) Validate(formats strfmt.Registry) error

Validate validates this get container image conflict body

type GetContainerImageConflictBodyErrorsItems0

type GetContainerImageConflictBodyErrorsItems0 struct {

	// An application-specific error code, expressed as a string value.
	// Example: entity-not-found
	Code string `json:"code,omitempty"`

	// A human-readable explanation specific to this occurrence of the problem.
	// Example: The request was missing these required fields: ...
	// Required: true
	Detail *string `json:"detail"`

	// A unique identifier for this particular occurrence of the problem.
	// Example: f16c31b5-6129-4571-add8-d589da9be524
	// Format: uuid
	ID strfmt.UUID `json:"id,omitempty"`

	// links
	Links *GetContainerImageConflictBodyErrorsItems0Links `json:"links,omitempty"`

	// meta
	// Example: {"key":"value"}
	Meta interface{} `json:"meta,omitempty"`

	// source
	Source *GetContainerImageConflictBodyErrorsItems0Source `json:"source,omitempty"`

	// The HTTP status code applicable to this problem, expressed as a string value.
	// Example: 400
	// Required: true
	// Pattern: ^[45]\d\d$
	Status *string `json:"status"`

	// A short, human-readable summary of the problem that SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization.
	// Example: Bad request
	Title string `json:"title,omitempty"`
}

GetContainerImageConflictBodyErrorsItems0 get container image conflict body errors items0 // Example: {"detail":"Not Found","status":"404"} swagger:model GetContainerImageConflictBodyErrorsItems0

func (*GetContainerImageConflictBodyErrorsItems0) ContextValidate

ContextValidate validate this get container image conflict body errors items0 based on the context it is used

func (*GetContainerImageConflictBodyErrorsItems0) MarshalBinary

func (o *GetContainerImageConflictBodyErrorsItems0) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*GetContainerImageConflictBodyErrorsItems0) UnmarshalBinary

func (o *GetContainerImageConflictBodyErrorsItems0) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*GetContainerImageConflictBodyErrorsItems0) Validate

Validate validates this get container image conflict body errors items0

type GetContainerImageConflictBodyErrorsItems0Links struct {

	// about
	// Example: https://example.com/api/resource
	About interface{} `json:"about,omitempty"`
}

GetContainerImageConflictBodyErrorsItems0Links A link that leads to further details about this particular occurrance of the problem. // Example: {"about":"https://example.com/about_this_error"} swagger:model GetContainerImageConflictBodyErrorsItems0Links

func (*GetContainerImageConflictBodyErrorsItems0Links) ContextValidate

ContextValidate validates this get container image conflict body errors items0 links based on context it is used

func (*GetContainerImageConflictBodyErrorsItems0Links) MarshalBinary

MarshalBinary interface implementation

func (*GetContainerImageConflictBodyErrorsItems0Links) UnmarshalBinary

UnmarshalBinary interface implementation

func (*GetContainerImageConflictBodyErrorsItems0Links) Validate

Validate validates this get container image conflict body errors items0 links

type GetContainerImageConflictBodyErrorsItems0Source

type GetContainerImageConflictBodyErrorsItems0Source struct {

	// A string indicating which URI query parameter caused the error.
	// Example: param1
	Parameter string `json:"parameter,omitempty"`

	// A JSON Pointer [RFC6901] to the associated entity in the request document.
	// Example: /data/attributes
	Pointer string `json:"pointer,omitempty"`
}

GetContainerImageConflictBodyErrorsItems0Source get container image conflict body errors items0 source // Example: {"pointer":"/data/attributes"} swagger:model GetContainerImageConflictBodyErrorsItems0Source

func (*GetContainerImageConflictBodyErrorsItems0Source) ContextValidate

ContextValidate validates this get container image conflict body errors items0 source based on context it is used

func (*GetContainerImageConflictBodyErrorsItems0Source) MarshalBinary

MarshalBinary interface implementation

func (*GetContainerImageConflictBodyErrorsItems0Source) UnmarshalBinary

UnmarshalBinary interface implementation

func (*GetContainerImageConflictBodyErrorsItems0Source) Validate

Validate validates this get container image conflict body errors items0 source

type GetContainerImageConflictBodyJsonapi

type GetContainerImageConflictBodyJsonapi struct {

	// Version of the JSON API specification this server supports.
	// Example: 1.0
	// Required: true
	// Pattern: ^(0|[1-9]\d*)\.(0|[1-9]\d*)$
	Version *string `json:"version"`
}

GetContainerImageConflictBodyJsonapi get container image conflict body jsonapi // Example: {"version":"1.0"} swagger:model GetContainerImageConflictBodyJsonapi

func (*GetContainerImageConflictBodyJsonapi) ContextValidate

func (o *GetContainerImageConflictBodyJsonapi) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this get container image conflict body jsonapi based on context it is used

func (*GetContainerImageConflictBodyJsonapi) MarshalBinary

func (o *GetContainerImageConflictBodyJsonapi) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*GetContainerImageConflictBodyJsonapi) UnmarshalBinary

func (o *GetContainerImageConflictBodyJsonapi) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*GetContainerImageConflictBodyJsonapi) Validate

Validate validates this get container image conflict body jsonapi

type GetContainerImageForbidden

type GetContainerImageForbidden struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *GetContainerImageForbiddenBody
}

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

Forbidden: the request requires an authentication token with more or different permissions.

func NewGetContainerImageForbidden

func NewGetContainerImageForbidden() *GetContainerImageForbidden

NewGetContainerImageForbidden creates a GetContainerImageForbidden with default headers values

func (*GetContainerImageForbidden) Code

func (o *GetContainerImageForbidden) Code() int

Code gets the status code for the get container image forbidden response

func (*GetContainerImageForbidden) Error

func (*GetContainerImageForbidden) GetPayload

func (*GetContainerImageForbidden) IsClientError

func (o *GetContainerImageForbidden) IsClientError() bool

IsClientError returns true when this get container image forbidden response has a 4xx status code

func (*GetContainerImageForbidden) IsCode

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

IsCode returns true when this get container image forbidden response a status code equal to that given

func (*GetContainerImageForbidden) IsRedirect

func (o *GetContainerImageForbidden) IsRedirect() bool

IsRedirect returns true when this get container image forbidden response has a 3xx status code

func (*GetContainerImageForbidden) IsServerError

func (o *GetContainerImageForbidden) IsServerError() bool

IsServerError returns true when this get container image forbidden response has a 5xx status code

func (*GetContainerImageForbidden) IsSuccess

func (o *GetContainerImageForbidden) IsSuccess() bool

IsSuccess returns true when this get container image forbidden response has a 2xx status code

func (*GetContainerImageForbidden) String

func (o *GetContainerImageForbidden) String() string

type GetContainerImageForbiddenBody

type GetContainerImageForbiddenBody struct {

	// errors
	// Example: [{"detail":"Permission denied for this resource","status":"403"}]
	// Required: true
	// Min Items: 1
	Errors []*GetContainerImageForbiddenBodyErrorsItems0 `json:"errors"`

	// jsonapi
	// Required: true
	Jsonapi *GetContainerImageForbiddenBodyJsonapi `json:"jsonapi"`
}

GetContainerImageForbiddenBody get container image forbidden body // Example: {"errors":[{"detail":"Permission denied for this resource","status":"403"}],"jsonapi":{"version":"1.0"}} swagger:model GetContainerImageForbiddenBody

func (*GetContainerImageForbiddenBody) ContextValidate

func (o *GetContainerImageForbiddenBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this get container image forbidden body based on the context it is used

func (*GetContainerImageForbiddenBody) MarshalBinary

func (o *GetContainerImageForbiddenBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*GetContainerImageForbiddenBody) UnmarshalBinary

func (o *GetContainerImageForbiddenBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*GetContainerImageForbiddenBody) Validate

func (o *GetContainerImageForbiddenBody) Validate(formats strfmt.Registry) error

Validate validates this get container image forbidden body

type GetContainerImageForbiddenBodyErrorsItems0

type GetContainerImageForbiddenBodyErrorsItems0 struct {

	// An application-specific error code, expressed as a string value.
	// Example: entity-not-found
	Code string `json:"code,omitempty"`

	// A human-readable explanation specific to this occurrence of the problem.
	// Example: The request was missing these required fields: ...
	// Required: true
	Detail *string `json:"detail"`

	// A unique identifier for this particular occurrence of the problem.
	// Example: f16c31b5-6129-4571-add8-d589da9be524
	// Format: uuid
	ID strfmt.UUID `json:"id,omitempty"`

	// links
	Links *GetContainerImageForbiddenBodyErrorsItems0Links `json:"links,omitempty"`

	// meta
	// Example: {"key":"value"}
	Meta interface{} `json:"meta,omitempty"`

	// source
	Source *GetContainerImageForbiddenBodyErrorsItems0Source `json:"source,omitempty"`

	// The HTTP status code applicable to this problem, expressed as a string value.
	// Example: 400
	// Required: true
	// Pattern: ^[45]\d\d$
	Status *string `json:"status"`

	// A short, human-readable summary of the problem that SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization.
	// Example: Bad request
	Title string `json:"title,omitempty"`
}

GetContainerImageForbiddenBodyErrorsItems0 get container image forbidden body errors items0 // Example: {"detail":"Not Found","status":"404"} swagger:model GetContainerImageForbiddenBodyErrorsItems0

func (*GetContainerImageForbiddenBodyErrorsItems0) ContextValidate

ContextValidate validate this get container image forbidden body errors items0 based on the context it is used

func (*GetContainerImageForbiddenBodyErrorsItems0) MarshalBinary

func (o *GetContainerImageForbiddenBodyErrorsItems0) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*GetContainerImageForbiddenBodyErrorsItems0) UnmarshalBinary

func (o *GetContainerImageForbiddenBodyErrorsItems0) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*GetContainerImageForbiddenBodyErrorsItems0) Validate

Validate validates this get container image forbidden body errors items0

type GetContainerImageForbiddenBodyErrorsItems0Links struct {

	// about
	// Example: https://example.com/api/resource
	About interface{} `json:"about,omitempty"`
}

GetContainerImageForbiddenBodyErrorsItems0Links A link that leads to further details about this particular occurrance of the problem. // Example: {"about":"https://example.com/about_this_error"} swagger:model GetContainerImageForbiddenBodyErrorsItems0Links

func (*GetContainerImageForbiddenBodyErrorsItems0Links) ContextValidate

ContextValidate validates this get container image forbidden body errors items0 links based on context it is used

func (*GetContainerImageForbiddenBodyErrorsItems0Links) MarshalBinary

MarshalBinary interface implementation

func (*GetContainerImageForbiddenBodyErrorsItems0Links) UnmarshalBinary

UnmarshalBinary interface implementation

func (*GetContainerImageForbiddenBodyErrorsItems0Links) Validate

Validate validates this get container image forbidden body errors items0 links

type GetContainerImageForbiddenBodyErrorsItems0Source

type GetContainerImageForbiddenBodyErrorsItems0Source struct {

	// A string indicating which URI query parameter caused the error.
	// Example: param1
	Parameter string `json:"parameter,omitempty"`

	// A JSON Pointer [RFC6901] to the associated entity in the request document.
	// Example: /data/attributes
	Pointer string `json:"pointer,omitempty"`
}

GetContainerImageForbiddenBodyErrorsItems0Source get container image forbidden body errors items0 source // Example: {"pointer":"/data/attributes"} swagger:model GetContainerImageForbiddenBodyErrorsItems0Source

func (*GetContainerImageForbiddenBodyErrorsItems0Source) ContextValidate

ContextValidate validates this get container image forbidden body errors items0 source based on context it is used

func (*GetContainerImageForbiddenBodyErrorsItems0Source) MarshalBinary

MarshalBinary interface implementation

func (*GetContainerImageForbiddenBodyErrorsItems0Source) UnmarshalBinary

UnmarshalBinary interface implementation

func (*GetContainerImageForbiddenBodyErrorsItems0Source) Validate

Validate validates this get container image forbidden body errors items0 source

type GetContainerImageForbiddenBodyJsonapi

type GetContainerImageForbiddenBodyJsonapi struct {

	// Version of the JSON API specification this server supports.
	// Example: 1.0
	// Required: true
	// Pattern: ^(0|[1-9]\d*)\.(0|[1-9]\d*)$
	Version *string `json:"version"`
}

GetContainerImageForbiddenBodyJsonapi get container image forbidden body jsonapi // Example: {"version":"1.0"} swagger:model GetContainerImageForbiddenBodyJsonapi

func (*GetContainerImageForbiddenBodyJsonapi) ContextValidate

func (o *GetContainerImageForbiddenBodyJsonapi) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this get container image forbidden body jsonapi based on context it is used

func (*GetContainerImageForbiddenBodyJsonapi) MarshalBinary

func (o *GetContainerImageForbiddenBodyJsonapi) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*GetContainerImageForbiddenBodyJsonapi) UnmarshalBinary

func (o *GetContainerImageForbiddenBodyJsonapi) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*GetContainerImageForbiddenBodyJsonapi) Validate

Validate validates this get container image forbidden body jsonapi

type GetContainerImageInternalServerError

type GetContainerImageInternalServerError struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *GetContainerImageInternalServerErrorBody
}

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

Internal Server Error: An error was encountered while attempting to process the request.

func NewGetContainerImageInternalServerError

func NewGetContainerImageInternalServerError() *GetContainerImageInternalServerError

NewGetContainerImageInternalServerError creates a GetContainerImageInternalServerError with default headers values

func (*GetContainerImageInternalServerError) Code

Code gets the status code for the get container image internal server error response

func (*GetContainerImageInternalServerError) Error

func (*GetContainerImageInternalServerError) GetPayload

func (*GetContainerImageInternalServerError) IsClientError

func (o *GetContainerImageInternalServerError) IsClientError() bool

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

func (*GetContainerImageInternalServerError) IsCode

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

func (*GetContainerImageInternalServerError) IsRedirect

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

func (*GetContainerImageInternalServerError) IsServerError

func (o *GetContainerImageInternalServerError) IsServerError() bool

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

func (*GetContainerImageInternalServerError) IsSuccess

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

func (*GetContainerImageInternalServerError) String

type GetContainerImageInternalServerErrorBody

type GetContainerImageInternalServerErrorBody struct {

	// errors
	// Example: [{"detail":"Permission denied for this resource","status":"403"}]
	// Required: true
	// Min Items: 1
	Errors []*GetContainerImageInternalServerErrorBodyErrorsItems0 `json:"errors"`

	// jsonapi
	// Required: true
	Jsonapi *GetContainerImageInternalServerErrorBodyJsonapi `json:"jsonapi"`
}

GetContainerImageInternalServerErrorBody get container image internal server error body // Example: {"errors":[{"detail":"Permission denied for this resource","status":"403"}],"jsonapi":{"version":"1.0"}} swagger:model GetContainerImageInternalServerErrorBody

func (*GetContainerImageInternalServerErrorBody) ContextValidate

ContextValidate validate this get container image internal server error body based on the context it is used

func (*GetContainerImageInternalServerErrorBody) MarshalBinary

func (o *GetContainerImageInternalServerErrorBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*GetContainerImageInternalServerErrorBody) UnmarshalBinary

func (o *GetContainerImageInternalServerErrorBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*GetContainerImageInternalServerErrorBody) Validate

Validate validates this get container image internal server error body

type GetContainerImageInternalServerErrorBodyErrorsItems0

type GetContainerImageInternalServerErrorBodyErrorsItems0 struct {

	// An application-specific error code, expressed as a string value.
	// Example: entity-not-found
	Code string `json:"code,omitempty"`

	// A human-readable explanation specific to this occurrence of the problem.
	// Example: The request was missing these required fields: ...
	// Required: true
	Detail *string `json:"detail"`

	// A unique identifier for this particular occurrence of the problem.
	// Example: f16c31b5-6129-4571-add8-d589da9be524
	// Format: uuid
	ID strfmt.UUID `json:"id,omitempty"`

	// links
	Links *GetContainerImageInternalServerErrorBodyErrorsItems0Links `json:"links,omitempty"`

	// meta
	// Example: {"key":"value"}
	Meta interface{} `json:"meta,omitempty"`

	// source
	Source *GetContainerImageInternalServerErrorBodyErrorsItems0Source `json:"source,omitempty"`

	// The HTTP status code applicable to this problem, expressed as a string value.
	// Example: 400
	// Required: true
	// Pattern: ^[45]\d\d$
	Status *string `json:"status"`

	// A short, human-readable summary of the problem that SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization.
	// Example: Bad request
	Title string `json:"title,omitempty"`
}

GetContainerImageInternalServerErrorBodyErrorsItems0 get container image internal server error body errors items0 // Example: {"detail":"Not Found","status":"404"} swagger:model GetContainerImageInternalServerErrorBodyErrorsItems0

func (*GetContainerImageInternalServerErrorBodyErrorsItems0) ContextValidate

ContextValidate validate this get container image internal server error body errors items0 based on the context it is used

func (*GetContainerImageInternalServerErrorBodyErrorsItems0) MarshalBinary

MarshalBinary interface implementation

func (*GetContainerImageInternalServerErrorBodyErrorsItems0) UnmarshalBinary

UnmarshalBinary interface implementation

func (*GetContainerImageInternalServerErrorBodyErrorsItems0) Validate

Validate validates this get container image internal server error body errors items0

type GetContainerImageInternalServerErrorBodyErrorsItems0Links struct {

	// about
	// Example: https://example.com/api/resource
	About interface{} `json:"about,omitempty"`
}

GetContainerImageInternalServerErrorBodyErrorsItems0Links A link that leads to further details about this particular occurrance of the problem. // Example: {"about":"https://example.com/about_this_error"} swagger:model GetContainerImageInternalServerErrorBodyErrorsItems0Links

func (*GetContainerImageInternalServerErrorBodyErrorsItems0Links) ContextValidate

ContextValidate validates this get container image internal server error body errors items0 links based on context it is used

func (*GetContainerImageInternalServerErrorBodyErrorsItems0Links) MarshalBinary

MarshalBinary interface implementation

func (*GetContainerImageInternalServerErrorBodyErrorsItems0Links) UnmarshalBinary

UnmarshalBinary interface implementation

func (*GetContainerImageInternalServerErrorBodyErrorsItems0Links) Validate

Validate validates this get container image internal server error body errors items0 links

type GetContainerImageInternalServerErrorBodyErrorsItems0Source

type GetContainerImageInternalServerErrorBodyErrorsItems0Source struct {

	// A string indicating which URI query parameter caused the error.
	// Example: param1
	Parameter string `json:"parameter,omitempty"`

	// A JSON Pointer [RFC6901] to the associated entity in the request document.
	// Example: /data/attributes
	Pointer string `json:"pointer,omitempty"`
}

GetContainerImageInternalServerErrorBodyErrorsItems0Source get container image internal server error body errors items0 source // Example: {"pointer":"/data/attributes"} swagger:model GetContainerImageInternalServerErrorBodyErrorsItems0Source

func (*GetContainerImageInternalServerErrorBodyErrorsItems0Source) ContextValidate

ContextValidate validates this get container image internal server error body errors items0 source based on context it is used

func (*GetContainerImageInternalServerErrorBodyErrorsItems0Source) MarshalBinary

MarshalBinary interface implementation

func (*GetContainerImageInternalServerErrorBodyErrorsItems0Source) UnmarshalBinary

UnmarshalBinary interface implementation

func (*GetContainerImageInternalServerErrorBodyErrorsItems0Source) Validate

Validate validates this get container image internal server error body errors items0 source

type GetContainerImageInternalServerErrorBodyJsonapi

type GetContainerImageInternalServerErrorBodyJsonapi struct {

	// Version of the JSON API specification this server supports.
	// Example: 1.0
	// Required: true
	// Pattern: ^(0|[1-9]\d*)\.(0|[1-9]\d*)$
	Version *string `json:"version"`
}

GetContainerImageInternalServerErrorBodyJsonapi get container image internal server error body jsonapi // Example: {"version":"1.0"} swagger:model GetContainerImageInternalServerErrorBodyJsonapi

func (*GetContainerImageInternalServerErrorBodyJsonapi) ContextValidate

ContextValidate validates this get container image internal server error body jsonapi based on context it is used

func (*GetContainerImageInternalServerErrorBodyJsonapi) MarshalBinary

MarshalBinary interface implementation

func (*GetContainerImageInternalServerErrorBodyJsonapi) UnmarshalBinary

UnmarshalBinary interface implementation

func (*GetContainerImageInternalServerErrorBodyJsonapi) Validate

Validate validates this get container image internal server error body jsonapi

type GetContainerImageNotFound

type GetContainerImageNotFound struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *GetContainerImageNotFoundBody
}

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

Not Found: The resource being operated on could not be found.

func NewGetContainerImageNotFound

func NewGetContainerImageNotFound() *GetContainerImageNotFound

NewGetContainerImageNotFound creates a GetContainerImageNotFound with default headers values

func (*GetContainerImageNotFound) Code

func (o *GetContainerImageNotFound) Code() int

Code gets the status code for the get container image not found response

func (*GetContainerImageNotFound) Error

func (o *GetContainerImageNotFound) Error() string

func (*GetContainerImageNotFound) GetPayload

func (*GetContainerImageNotFound) IsClientError

func (o *GetContainerImageNotFound) IsClientError() bool

IsClientError returns true when this get container image not found response has a 4xx status code

func (*GetContainerImageNotFound) IsCode

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

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

func (*GetContainerImageNotFound) IsRedirect

func (o *GetContainerImageNotFound) IsRedirect() bool

IsRedirect returns true when this get container image not found response has a 3xx status code

func (*GetContainerImageNotFound) IsServerError

func (o *GetContainerImageNotFound) IsServerError() bool

IsServerError returns true when this get container image not found response has a 5xx status code

func (*GetContainerImageNotFound) IsSuccess

func (o *GetContainerImageNotFound) IsSuccess() bool

IsSuccess returns true when this get container image not found response has a 2xx status code

func (*GetContainerImageNotFound) String

func (o *GetContainerImageNotFound) String() string

type GetContainerImageNotFoundBody

type GetContainerImageNotFoundBody struct {

	// errors
	// Example: [{"detail":"Permission denied for this resource","status":"403"}]
	// Required: true
	// Min Items: 1
	Errors []*GetContainerImageNotFoundBodyErrorsItems0 `json:"errors"`

	// jsonapi
	// Required: true
	Jsonapi *GetContainerImageNotFoundBodyJsonapi `json:"jsonapi"`
}

GetContainerImageNotFoundBody get container image not found body // Example: {"errors":[{"detail":"Permission denied for this resource","status":"403"}],"jsonapi":{"version":"1.0"}} swagger:model GetContainerImageNotFoundBody

func (*GetContainerImageNotFoundBody) ContextValidate

func (o *GetContainerImageNotFoundBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this get container image not found body based on the context it is used

func (*GetContainerImageNotFoundBody) MarshalBinary

func (o *GetContainerImageNotFoundBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*GetContainerImageNotFoundBody) UnmarshalBinary

func (o *GetContainerImageNotFoundBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*GetContainerImageNotFoundBody) Validate

func (o *GetContainerImageNotFoundBody) Validate(formats strfmt.Registry) error

Validate validates this get container image not found body

type GetContainerImageNotFoundBodyErrorsItems0

type GetContainerImageNotFoundBodyErrorsItems0 struct {

	// An application-specific error code, expressed as a string value.
	// Example: entity-not-found
	Code string `json:"code,omitempty"`

	// A human-readable explanation specific to this occurrence of the problem.
	// Example: The request was missing these required fields: ...
	// Required: true
	Detail *string `json:"detail"`

	// A unique identifier for this particular occurrence of the problem.
	// Example: f16c31b5-6129-4571-add8-d589da9be524
	// Format: uuid
	ID strfmt.UUID `json:"id,omitempty"`

	// links
	Links *GetContainerImageNotFoundBodyErrorsItems0Links `json:"links,omitempty"`

	// meta
	// Example: {"key":"value"}
	Meta interface{} `json:"meta,omitempty"`

	// source
	Source *GetContainerImageNotFoundBodyErrorsItems0Source `json:"source,omitempty"`

	// The HTTP status code applicable to this problem, expressed as a string value.
	// Example: 400
	// Required: true
	// Pattern: ^[45]\d\d$
	Status *string `json:"status"`

	// A short, human-readable summary of the problem that SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization.
	// Example: Bad request
	Title string `json:"title,omitempty"`
}

GetContainerImageNotFoundBodyErrorsItems0 get container image not found body errors items0 // Example: {"detail":"Not Found","status":"404"} swagger:model GetContainerImageNotFoundBodyErrorsItems0

func (*GetContainerImageNotFoundBodyErrorsItems0) ContextValidate

ContextValidate validate this get container image not found body errors items0 based on the context it is used

func (*GetContainerImageNotFoundBodyErrorsItems0) MarshalBinary

func (o *GetContainerImageNotFoundBodyErrorsItems0) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*GetContainerImageNotFoundBodyErrorsItems0) UnmarshalBinary

func (o *GetContainerImageNotFoundBodyErrorsItems0) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*GetContainerImageNotFoundBodyErrorsItems0) Validate

Validate validates this get container image not found body errors items0

type GetContainerImageNotFoundBodyErrorsItems0Links struct {

	// about
	// Example: https://example.com/api/resource
	About interface{} `json:"about,omitempty"`
}

GetContainerImageNotFoundBodyErrorsItems0Links A link that leads to further details about this particular occurrance of the problem. // Example: {"about":"https://example.com/about_this_error"} swagger:model GetContainerImageNotFoundBodyErrorsItems0Links

func (*GetContainerImageNotFoundBodyErrorsItems0Links) ContextValidate

ContextValidate validates this get container image not found body errors items0 links based on context it is used

func (*GetContainerImageNotFoundBodyErrorsItems0Links) MarshalBinary

MarshalBinary interface implementation

func (*GetContainerImageNotFoundBodyErrorsItems0Links) UnmarshalBinary

UnmarshalBinary interface implementation

func (*GetContainerImageNotFoundBodyErrorsItems0Links) Validate

Validate validates this get container image not found body errors items0 links

type GetContainerImageNotFoundBodyErrorsItems0Source

type GetContainerImageNotFoundBodyErrorsItems0Source struct {

	// A string indicating which URI query parameter caused the error.
	// Example: param1
	Parameter string `json:"parameter,omitempty"`

	// A JSON Pointer [RFC6901] to the associated entity in the request document.
	// Example: /data/attributes
	Pointer string `json:"pointer,omitempty"`
}

GetContainerImageNotFoundBodyErrorsItems0Source get container image not found body errors items0 source // Example: {"pointer":"/data/attributes"} swagger:model GetContainerImageNotFoundBodyErrorsItems0Source

func (*GetContainerImageNotFoundBodyErrorsItems0Source) ContextValidate

ContextValidate validates this get container image not found body errors items0 source based on context it is used

func (*GetContainerImageNotFoundBodyErrorsItems0Source) MarshalBinary

MarshalBinary interface implementation

func (*GetContainerImageNotFoundBodyErrorsItems0Source) UnmarshalBinary

UnmarshalBinary interface implementation

func (*GetContainerImageNotFoundBodyErrorsItems0Source) Validate

Validate validates this get container image not found body errors items0 source

type GetContainerImageNotFoundBodyJsonapi

type GetContainerImageNotFoundBodyJsonapi struct {

	// Version of the JSON API specification this server supports.
	// Example: 1.0
	// Required: true
	// Pattern: ^(0|[1-9]\d*)\.(0|[1-9]\d*)$
	Version *string `json:"version"`
}

GetContainerImageNotFoundBodyJsonapi get container image not found body jsonapi // Example: {"version":"1.0"} swagger:model GetContainerImageNotFoundBodyJsonapi

func (*GetContainerImageNotFoundBodyJsonapi) ContextValidate

func (o *GetContainerImageNotFoundBodyJsonapi) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this get container image not found body jsonapi based on context it is used

func (*GetContainerImageNotFoundBodyJsonapi) MarshalBinary

func (o *GetContainerImageNotFoundBodyJsonapi) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*GetContainerImageNotFoundBodyJsonapi) UnmarshalBinary

func (o *GetContainerImageNotFoundBodyJsonapi) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*GetContainerImageNotFoundBodyJsonapi) Validate

Validate validates this get container image not found body jsonapi

type GetContainerImageOK

type GetContainerImageOK struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *GetContainerImageOKBody
}

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

Returns an instance of container image

func NewGetContainerImageOK

func NewGetContainerImageOK() *GetContainerImageOK

NewGetContainerImageOK creates a GetContainerImageOK with default headers values

func (*GetContainerImageOK) Code

func (o *GetContainerImageOK) Code() int

Code gets the status code for the get container image o k response

func (*GetContainerImageOK) Error

func (o *GetContainerImageOK) Error() string

func (*GetContainerImageOK) GetPayload

func (*GetContainerImageOK) IsClientError

func (o *GetContainerImageOK) IsClientError() bool

IsClientError returns true when this get container image o k response has a 4xx status code

func (*GetContainerImageOK) IsCode

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

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

func (*GetContainerImageOK) IsRedirect

func (o *GetContainerImageOK) IsRedirect() bool

IsRedirect returns true when this get container image o k response has a 3xx status code

func (*GetContainerImageOK) IsServerError

func (o *GetContainerImageOK) IsServerError() bool

IsServerError returns true when this get container image o k response has a 5xx status code

func (*GetContainerImageOK) IsSuccess

func (o *GetContainerImageOK) IsSuccess() bool

IsSuccess returns true when this get container image o k response has a 2xx status code

func (*GetContainerImageOK) String

func (o *GetContainerImageOK) String() string

type GetContainerImageOKBody

type GetContainerImageOKBody struct {

	// data
	Data *models.Image `json:"data,omitempty"`

	// jsonapi
	Jsonapi *models.JSONAPI `json:"jsonapi,omitempty"`

	// links
	Links *models.SelfLink `json:"links,omitempty"`
}

GetContainerImageOKBody get container image o k body swagger:model GetContainerImageOKBody

func (*GetContainerImageOKBody) ContextValidate

func (o *GetContainerImageOKBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this get container image o k body based on the context it is used

func (*GetContainerImageOKBody) MarshalBinary

func (o *GetContainerImageOKBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*GetContainerImageOKBody) UnmarshalBinary

func (o *GetContainerImageOKBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*GetContainerImageOKBody) Validate

func (o *GetContainerImageOKBody) Validate(formats strfmt.Registry) error

Validate validates this get container image o k body

type GetContainerImageParams

type GetContainerImageParams struct {

	/* ImageID.

	   Image ID

	   Format: uri
	*/
	ImageID strfmt.URI

	/* OrgID.

	   Org ID

	   Format: uuid
	*/
	OrgID strfmt.UUID

	/* Version.

	   The requested version of the endpoint to process the request
	*/
	Version string

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

GetContainerImageParams contains all the parameters to send to the API endpoint

for the get container image operation.

Typically these are written to a http.Request.

func NewGetContainerImageParams

func NewGetContainerImageParams() *GetContainerImageParams

NewGetContainerImageParams creates a new GetContainerImageParams 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 NewGetContainerImageParamsWithContext

func NewGetContainerImageParamsWithContext(ctx context.Context) *GetContainerImageParams

NewGetContainerImageParamsWithContext creates a new GetContainerImageParams object with the ability to set a context for a request.

func NewGetContainerImageParamsWithHTTPClient

func NewGetContainerImageParamsWithHTTPClient(client *http.Client) *GetContainerImageParams

NewGetContainerImageParamsWithHTTPClient creates a new GetContainerImageParams object with the ability to set a custom HTTPClient for a request.

func NewGetContainerImageParamsWithTimeout

func NewGetContainerImageParamsWithTimeout(timeout time.Duration) *GetContainerImageParams

NewGetContainerImageParamsWithTimeout creates a new GetContainerImageParams object with the ability to set a timeout on a request.

func (*GetContainerImageParams) SetContext

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

SetContext adds the context to the get container image params

func (*GetContainerImageParams) SetDefaults

func (o *GetContainerImageParams) SetDefaults()

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

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

func (*GetContainerImageParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get container image params

func (*GetContainerImageParams) SetImageID

func (o *GetContainerImageParams) SetImageID(imageID strfmt.URI)

SetImageID adds the imageId to the get container image params

func (*GetContainerImageParams) SetOrgID

func (o *GetContainerImageParams) SetOrgID(orgID strfmt.UUID)

SetOrgID adds the orgId to the get container image params

func (*GetContainerImageParams) SetTimeout

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

SetTimeout adds the timeout to the get container image params

func (*GetContainerImageParams) SetVersion

func (o *GetContainerImageParams) SetVersion(version string)

SetVersion adds the version to the get container image params

func (*GetContainerImageParams) WithContext

WithContext adds the context to the get container image params

func (*GetContainerImageParams) WithDefaults

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

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

func (*GetContainerImageParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get container image params

func (*GetContainerImageParams) WithImageID

func (o *GetContainerImageParams) WithImageID(imageID strfmt.URI) *GetContainerImageParams

WithImageID adds the imageID to the get container image params

func (*GetContainerImageParams) WithOrgID

WithOrgID adds the orgID to the get container image params

func (*GetContainerImageParams) WithTimeout

WithTimeout adds the timeout to the get container image params

func (*GetContainerImageParams) WithVersion

func (o *GetContainerImageParams) WithVersion(version string) *GetContainerImageParams

WithVersion adds the version to the get container image params

func (*GetContainerImageParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetContainerImageReader

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

GetContainerImageReader is a Reader for the GetContainerImage structure.

func (*GetContainerImageReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetContainerImageUnauthorized

type GetContainerImageUnauthorized struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *GetContainerImageUnauthorizedBody
}

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

Unauthorized: the request requires an authentication token.

func NewGetContainerImageUnauthorized

func NewGetContainerImageUnauthorized() *GetContainerImageUnauthorized

NewGetContainerImageUnauthorized creates a GetContainerImageUnauthorized with default headers values

func (*GetContainerImageUnauthorized) Code

Code gets the status code for the get container image unauthorized response

func (*GetContainerImageUnauthorized) Error

func (*GetContainerImageUnauthorized) GetPayload

func (*GetContainerImageUnauthorized) IsClientError

func (o *GetContainerImageUnauthorized) IsClientError() bool

IsClientError returns true when this get container image unauthorized response has a 4xx status code

func (*GetContainerImageUnauthorized) IsCode

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

IsCode returns true when this get container image unauthorized response a status code equal to that given

func (*GetContainerImageUnauthorized) IsRedirect

func (o *GetContainerImageUnauthorized) IsRedirect() bool

IsRedirect returns true when this get container image unauthorized response has a 3xx status code

func (*GetContainerImageUnauthorized) IsServerError

func (o *GetContainerImageUnauthorized) IsServerError() bool

IsServerError returns true when this get container image unauthorized response has a 5xx status code

func (*GetContainerImageUnauthorized) IsSuccess

func (o *GetContainerImageUnauthorized) IsSuccess() bool

IsSuccess returns true when this get container image unauthorized response has a 2xx status code

func (*GetContainerImageUnauthorized) String

type GetContainerImageUnauthorizedBody

type GetContainerImageUnauthorizedBody struct {

	// errors
	// Example: [{"detail":"Permission denied for this resource","status":"403"}]
	// Required: true
	// Min Items: 1
	Errors []*GetContainerImageUnauthorizedBodyErrorsItems0 `json:"errors"`

	// jsonapi
	// Required: true
	Jsonapi *GetContainerImageUnauthorizedBodyJsonapi `json:"jsonapi"`
}

GetContainerImageUnauthorizedBody get container image unauthorized body // Example: {"errors":[{"detail":"Permission denied for this resource","status":"403"}],"jsonapi":{"version":"1.0"}} swagger:model GetContainerImageUnauthorizedBody

func (*GetContainerImageUnauthorizedBody) ContextValidate

func (o *GetContainerImageUnauthorizedBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this get container image unauthorized body based on the context it is used

func (*GetContainerImageUnauthorizedBody) MarshalBinary

func (o *GetContainerImageUnauthorizedBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*GetContainerImageUnauthorizedBody) UnmarshalBinary

func (o *GetContainerImageUnauthorizedBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*GetContainerImageUnauthorizedBody) Validate

Validate validates this get container image unauthorized body

type GetContainerImageUnauthorizedBodyErrorsItems0

type GetContainerImageUnauthorizedBodyErrorsItems0 struct {

	// An application-specific error code, expressed as a string value.
	// Example: entity-not-found
	Code string `json:"code,omitempty"`

	// A human-readable explanation specific to this occurrence of the problem.
	// Example: The request was missing these required fields: ...
	// Required: true
	Detail *string `json:"detail"`

	// A unique identifier for this particular occurrence of the problem.
	// Example: f16c31b5-6129-4571-add8-d589da9be524
	// Format: uuid
	ID strfmt.UUID `json:"id,omitempty"`

	// links
	Links *GetContainerImageUnauthorizedBodyErrorsItems0Links `json:"links,omitempty"`

	// meta
	// Example: {"key":"value"}
	Meta interface{} `json:"meta,omitempty"`

	// source
	Source *GetContainerImageUnauthorizedBodyErrorsItems0Source `json:"source,omitempty"`

	// The HTTP status code applicable to this problem, expressed as a string value.
	// Example: 400
	// Required: true
	// Pattern: ^[45]\d\d$
	Status *string `json:"status"`

	// A short, human-readable summary of the problem that SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization.
	// Example: Bad request
	Title string `json:"title,omitempty"`
}

GetContainerImageUnauthorizedBodyErrorsItems0 get container image unauthorized body errors items0 // Example: {"detail":"Not Found","status":"404"} swagger:model GetContainerImageUnauthorizedBodyErrorsItems0

func (*GetContainerImageUnauthorizedBodyErrorsItems0) ContextValidate

ContextValidate validate this get container image unauthorized body errors items0 based on the context it is used

func (*GetContainerImageUnauthorizedBodyErrorsItems0) MarshalBinary

MarshalBinary interface implementation

func (*GetContainerImageUnauthorizedBodyErrorsItems0) UnmarshalBinary

UnmarshalBinary interface implementation

func (*GetContainerImageUnauthorizedBodyErrorsItems0) Validate

Validate validates this get container image unauthorized body errors items0

type GetContainerImageUnauthorizedBodyErrorsItems0Links struct {

	// about
	// Example: https://example.com/api/resource
	About interface{} `json:"about,omitempty"`
}

GetContainerImageUnauthorizedBodyErrorsItems0Links A link that leads to further details about this particular occurrance of the problem. // Example: {"about":"https://example.com/about_this_error"} swagger:model GetContainerImageUnauthorizedBodyErrorsItems0Links

func (*GetContainerImageUnauthorizedBodyErrorsItems0Links) ContextValidate

ContextValidate validates this get container image unauthorized body errors items0 links based on context it is used

func (*GetContainerImageUnauthorizedBodyErrorsItems0Links) MarshalBinary

MarshalBinary interface implementation

func (*GetContainerImageUnauthorizedBodyErrorsItems0Links) UnmarshalBinary

UnmarshalBinary interface implementation

func (*GetContainerImageUnauthorizedBodyErrorsItems0Links) Validate

Validate validates this get container image unauthorized body errors items0 links

type GetContainerImageUnauthorizedBodyErrorsItems0Source

type GetContainerImageUnauthorizedBodyErrorsItems0Source struct {

	// A string indicating which URI query parameter caused the error.
	// Example: param1
	Parameter string `json:"parameter,omitempty"`

	// A JSON Pointer [RFC6901] to the associated entity in the request document.
	// Example: /data/attributes
	Pointer string `json:"pointer,omitempty"`
}

GetContainerImageUnauthorizedBodyErrorsItems0Source get container image unauthorized body errors items0 source // Example: {"pointer":"/data/attributes"} swagger:model GetContainerImageUnauthorizedBodyErrorsItems0Source

func (*GetContainerImageUnauthorizedBodyErrorsItems0Source) ContextValidate

ContextValidate validates this get container image unauthorized body errors items0 source based on context it is used

func (*GetContainerImageUnauthorizedBodyErrorsItems0Source) MarshalBinary

MarshalBinary interface implementation

func (*GetContainerImageUnauthorizedBodyErrorsItems0Source) UnmarshalBinary

UnmarshalBinary interface implementation

func (*GetContainerImageUnauthorizedBodyErrorsItems0Source) Validate

Validate validates this get container image unauthorized body errors items0 source

type GetContainerImageUnauthorizedBodyJsonapi

type GetContainerImageUnauthorizedBodyJsonapi struct {

	// Version of the JSON API specification this server supports.
	// Example: 1.0
	// Required: true
	// Pattern: ^(0|[1-9]\d*)\.(0|[1-9]\d*)$
	Version *string `json:"version"`
}

GetContainerImageUnauthorizedBodyJsonapi get container image unauthorized body jsonapi // Example: {"version":"1.0"} swagger:model GetContainerImageUnauthorizedBodyJsonapi

func (*GetContainerImageUnauthorizedBodyJsonapi) ContextValidate

ContextValidate validates this get container image unauthorized body jsonapi based on context it is used

func (*GetContainerImageUnauthorizedBodyJsonapi) MarshalBinary

func (o *GetContainerImageUnauthorizedBodyJsonapi) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*GetContainerImageUnauthorizedBodyJsonapi) UnmarshalBinary

func (o *GetContainerImageUnauthorizedBodyJsonapi) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*GetContainerImageUnauthorizedBodyJsonapi) Validate

Validate validates this get container image unauthorized body jsonapi

type ListContainerImageBadRequest

type ListContainerImageBadRequest struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *ListContainerImageBadRequestBody
}

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

Bad Request: A parameter provided as a part of the request was invalid.

func NewListContainerImageBadRequest

func NewListContainerImageBadRequest() *ListContainerImageBadRequest

NewListContainerImageBadRequest creates a ListContainerImageBadRequest with default headers values

func (*ListContainerImageBadRequest) Code

Code gets the status code for the list container image bad request response

func (*ListContainerImageBadRequest) Error

func (*ListContainerImageBadRequest) GetPayload

func (*ListContainerImageBadRequest) IsClientError

func (o *ListContainerImageBadRequest) IsClientError() bool

IsClientError returns true when this list container image bad request response has a 4xx status code

func (*ListContainerImageBadRequest) IsCode

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

IsCode returns true when this list container image bad request response a status code equal to that given

func (*ListContainerImageBadRequest) IsRedirect

func (o *ListContainerImageBadRequest) IsRedirect() bool

IsRedirect returns true when this list container image bad request response has a 3xx status code

func (*ListContainerImageBadRequest) IsServerError

func (o *ListContainerImageBadRequest) IsServerError() bool

IsServerError returns true when this list container image bad request response has a 5xx status code

func (*ListContainerImageBadRequest) IsSuccess

func (o *ListContainerImageBadRequest) IsSuccess() bool

IsSuccess returns true when this list container image bad request response has a 2xx status code

func (*ListContainerImageBadRequest) String

type ListContainerImageBadRequestBody

type ListContainerImageBadRequestBody struct {

	// errors
	// Example: [{"detail":"Permission denied for this resource","status":"403"}]
	// Required: true
	// Min Items: 1
	Errors []*ListContainerImageBadRequestBodyErrorsItems0 `json:"errors"`

	// jsonapi
	// Required: true
	Jsonapi *ListContainerImageBadRequestBodyJsonapi `json:"jsonapi"`
}

ListContainerImageBadRequestBody list container image bad request body // Example: {"errors":[{"detail":"Permission denied for this resource","status":"403"}],"jsonapi":{"version":"1.0"}} swagger:model ListContainerImageBadRequestBody

func (*ListContainerImageBadRequestBody) ContextValidate

func (o *ListContainerImageBadRequestBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this list container image bad request body based on the context it is used

func (*ListContainerImageBadRequestBody) MarshalBinary

func (o *ListContainerImageBadRequestBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListContainerImageBadRequestBody) UnmarshalBinary

func (o *ListContainerImageBadRequestBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListContainerImageBadRequestBody) Validate

Validate validates this list container image bad request body

type ListContainerImageBadRequestBodyErrorsItems0

type ListContainerImageBadRequestBodyErrorsItems0 struct {

	// An application-specific error code, expressed as a string value.
	// Example: entity-not-found
	Code string `json:"code,omitempty"`

	// A human-readable explanation specific to this occurrence of the problem.
	// Example: The request was missing these required fields: ...
	// Required: true
	Detail *string `json:"detail"`

	// A unique identifier for this particular occurrence of the problem.
	// Example: f16c31b5-6129-4571-add8-d589da9be524
	// Format: uuid
	ID strfmt.UUID `json:"id,omitempty"`

	// links
	Links *ListContainerImageBadRequestBodyErrorsItems0Links `json:"links,omitempty"`

	// meta
	// Example: {"key":"value"}
	Meta interface{} `json:"meta,omitempty"`

	// source
	Source *ListContainerImageBadRequestBodyErrorsItems0Source `json:"source,omitempty"`

	// The HTTP status code applicable to this problem, expressed as a string value.
	// Example: 400
	// Required: true
	// Pattern: ^[45]\d\d$
	Status *string `json:"status"`

	// A short, human-readable summary of the problem that SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization.
	// Example: Bad request
	Title string `json:"title,omitempty"`
}

ListContainerImageBadRequestBodyErrorsItems0 list container image bad request body errors items0 // Example: {"detail":"Not Found","status":"404"} swagger:model ListContainerImageBadRequestBodyErrorsItems0

func (*ListContainerImageBadRequestBodyErrorsItems0) ContextValidate

ContextValidate validate this list container image bad request body errors items0 based on the context it is used

func (*ListContainerImageBadRequestBodyErrorsItems0) MarshalBinary

MarshalBinary interface implementation

func (*ListContainerImageBadRequestBodyErrorsItems0) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListContainerImageBadRequestBodyErrorsItems0) Validate

Validate validates this list container image bad request body errors items0

type ListContainerImageBadRequestBodyErrorsItems0Links struct {

	// about
	// Example: https://example.com/api/resource
	About interface{} `json:"about,omitempty"`
}

ListContainerImageBadRequestBodyErrorsItems0Links A link that leads to further details about this particular occurrance of the problem. // Example: {"about":"https://example.com/about_this_error"} swagger:model ListContainerImageBadRequestBodyErrorsItems0Links

func (*ListContainerImageBadRequestBodyErrorsItems0Links) ContextValidate

ContextValidate validates this list container image bad request body errors items0 links based on context it is used

func (*ListContainerImageBadRequestBodyErrorsItems0Links) MarshalBinary

MarshalBinary interface implementation

func (*ListContainerImageBadRequestBodyErrorsItems0Links) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListContainerImageBadRequestBodyErrorsItems0Links) Validate

Validate validates this list container image bad request body errors items0 links

type ListContainerImageBadRequestBodyErrorsItems0Source

type ListContainerImageBadRequestBodyErrorsItems0Source struct {

	// A string indicating which URI query parameter caused the error.
	// Example: param1
	Parameter string `json:"parameter,omitempty"`

	// A JSON Pointer [RFC6901] to the associated entity in the request document.
	// Example: /data/attributes
	Pointer string `json:"pointer,omitempty"`
}

ListContainerImageBadRequestBodyErrorsItems0Source list container image bad request body errors items0 source // Example: {"pointer":"/data/attributes"} swagger:model ListContainerImageBadRequestBodyErrorsItems0Source

func (*ListContainerImageBadRequestBodyErrorsItems0Source) ContextValidate

ContextValidate validates this list container image bad request body errors items0 source based on context it is used

func (*ListContainerImageBadRequestBodyErrorsItems0Source) MarshalBinary

MarshalBinary interface implementation

func (*ListContainerImageBadRequestBodyErrorsItems0Source) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListContainerImageBadRequestBodyErrorsItems0Source) Validate

Validate validates this list container image bad request body errors items0 source

type ListContainerImageBadRequestBodyJsonapi

type ListContainerImageBadRequestBodyJsonapi struct {

	// Version of the JSON API specification this server supports.
	// Example: 1.0
	// Required: true
	// Pattern: ^(0|[1-9]\d*)\.(0|[1-9]\d*)$
	Version *string `json:"version"`
}

ListContainerImageBadRequestBodyJsonapi list container image bad request body jsonapi // Example: {"version":"1.0"} swagger:model ListContainerImageBadRequestBodyJsonapi

func (*ListContainerImageBadRequestBodyJsonapi) ContextValidate

ContextValidate validates this list container image bad request body jsonapi based on context it is used

func (*ListContainerImageBadRequestBodyJsonapi) MarshalBinary

func (o *ListContainerImageBadRequestBodyJsonapi) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListContainerImageBadRequestBodyJsonapi) UnmarshalBinary

func (o *ListContainerImageBadRequestBodyJsonapi) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListContainerImageBadRequestBodyJsonapi) Validate

Validate validates this list container image bad request body jsonapi

type ListContainerImageConflict

type ListContainerImageConflict struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *ListContainerImageConflictBody
}

ListContainerImageConflict describes a response with status code 409, with default header values.

Conflict: The requested operation conflicts with the current state of the resource in some way.

func NewListContainerImageConflict

func NewListContainerImageConflict() *ListContainerImageConflict

NewListContainerImageConflict creates a ListContainerImageConflict with default headers values

func (*ListContainerImageConflict) Code

func (o *ListContainerImageConflict) Code() int

Code gets the status code for the list container image conflict response

func (*ListContainerImageConflict) Error

func (*ListContainerImageConflict) GetPayload

func (*ListContainerImageConflict) IsClientError

func (o *ListContainerImageConflict) IsClientError() bool

IsClientError returns true when this list container image conflict response has a 4xx status code

func (*ListContainerImageConflict) IsCode

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

IsCode returns true when this list container image conflict response a status code equal to that given

func (*ListContainerImageConflict) IsRedirect

func (o *ListContainerImageConflict) IsRedirect() bool

IsRedirect returns true when this list container image conflict response has a 3xx status code

func (*ListContainerImageConflict) IsServerError

func (o *ListContainerImageConflict) IsServerError() bool

IsServerError returns true when this list container image conflict response has a 5xx status code

func (*ListContainerImageConflict) IsSuccess

func (o *ListContainerImageConflict) IsSuccess() bool

IsSuccess returns true when this list container image conflict response has a 2xx status code

func (*ListContainerImageConflict) String

func (o *ListContainerImageConflict) String() string

type ListContainerImageConflictBody

type ListContainerImageConflictBody struct {

	// errors
	// Example: [{"detail":"Permission denied for this resource","status":"403"}]
	// Required: true
	// Min Items: 1
	Errors []*ListContainerImageConflictBodyErrorsItems0 `json:"errors"`

	// jsonapi
	// Required: true
	Jsonapi *ListContainerImageConflictBodyJsonapi `json:"jsonapi"`
}

ListContainerImageConflictBody list container image conflict body // Example: {"errors":[{"detail":"Permission denied for this resource","status":"403"}],"jsonapi":{"version":"1.0"}} swagger:model ListContainerImageConflictBody

func (*ListContainerImageConflictBody) ContextValidate

func (o *ListContainerImageConflictBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this list container image conflict body based on the context it is used

func (*ListContainerImageConflictBody) MarshalBinary

func (o *ListContainerImageConflictBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListContainerImageConflictBody) UnmarshalBinary

func (o *ListContainerImageConflictBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListContainerImageConflictBody) Validate

func (o *ListContainerImageConflictBody) Validate(formats strfmt.Registry) error

Validate validates this list container image conflict body

type ListContainerImageConflictBodyErrorsItems0

type ListContainerImageConflictBodyErrorsItems0 struct {

	// An application-specific error code, expressed as a string value.
	// Example: entity-not-found
	Code string `json:"code,omitempty"`

	// A human-readable explanation specific to this occurrence of the problem.
	// Example: The request was missing these required fields: ...
	// Required: true
	Detail *string `json:"detail"`

	// A unique identifier for this particular occurrence of the problem.
	// Example: f16c31b5-6129-4571-add8-d589da9be524
	// Format: uuid
	ID strfmt.UUID `json:"id,omitempty"`

	// links
	Links *ListContainerImageConflictBodyErrorsItems0Links `json:"links,omitempty"`

	// meta
	// Example: {"key":"value"}
	Meta interface{} `json:"meta,omitempty"`

	// source
	Source *ListContainerImageConflictBodyErrorsItems0Source `json:"source,omitempty"`

	// The HTTP status code applicable to this problem, expressed as a string value.
	// Example: 400
	// Required: true
	// Pattern: ^[45]\d\d$
	Status *string `json:"status"`

	// A short, human-readable summary of the problem that SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization.
	// Example: Bad request
	Title string `json:"title,omitempty"`
}

ListContainerImageConflictBodyErrorsItems0 list container image conflict body errors items0 // Example: {"detail":"Not Found","status":"404"} swagger:model ListContainerImageConflictBodyErrorsItems0

func (*ListContainerImageConflictBodyErrorsItems0) ContextValidate

ContextValidate validate this list container image conflict body errors items0 based on the context it is used

func (*ListContainerImageConflictBodyErrorsItems0) MarshalBinary

func (o *ListContainerImageConflictBodyErrorsItems0) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListContainerImageConflictBodyErrorsItems0) UnmarshalBinary

func (o *ListContainerImageConflictBodyErrorsItems0) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListContainerImageConflictBodyErrorsItems0) Validate

Validate validates this list container image conflict body errors items0

type ListContainerImageConflictBodyErrorsItems0Links struct {

	// about
	// Example: https://example.com/api/resource
	About interface{} `json:"about,omitempty"`
}

ListContainerImageConflictBodyErrorsItems0Links A link that leads to further details about this particular occurrance of the problem. // Example: {"about":"https://example.com/about_this_error"} swagger:model ListContainerImageConflictBodyErrorsItems0Links

func (*ListContainerImageConflictBodyErrorsItems0Links) ContextValidate

ContextValidate validates this list container image conflict body errors items0 links based on context it is used

func (*ListContainerImageConflictBodyErrorsItems0Links) MarshalBinary

MarshalBinary interface implementation

func (*ListContainerImageConflictBodyErrorsItems0Links) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListContainerImageConflictBodyErrorsItems0Links) Validate

Validate validates this list container image conflict body errors items0 links

type ListContainerImageConflictBodyErrorsItems0Source

type ListContainerImageConflictBodyErrorsItems0Source struct {

	// A string indicating which URI query parameter caused the error.
	// Example: param1
	Parameter string `json:"parameter,omitempty"`

	// A JSON Pointer [RFC6901] to the associated entity in the request document.
	// Example: /data/attributes
	Pointer string `json:"pointer,omitempty"`
}

ListContainerImageConflictBodyErrorsItems0Source list container image conflict body errors items0 source // Example: {"pointer":"/data/attributes"} swagger:model ListContainerImageConflictBodyErrorsItems0Source

func (*ListContainerImageConflictBodyErrorsItems0Source) ContextValidate

ContextValidate validates this list container image conflict body errors items0 source based on context it is used

func (*ListContainerImageConflictBodyErrorsItems0Source) MarshalBinary

MarshalBinary interface implementation

func (*ListContainerImageConflictBodyErrorsItems0Source) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListContainerImageConflictBodyErrorsItems0Source) Validate

Validate validates this list container image conflict body errors items0 source

type ListContainerImageConflictBodyJsonapi

type ListContainerImageConflictBodyJsonapi struct {

	// Version of the JSON API specification this server supports.
	// Example: 1.0
	// Required: true
	// Pattern: ^(0|[1-9]\d*)\.(0|[1-9]\d*)$
	Version *string `json:"version"`
}

ListContainerImageConflictBodyJsonapi list container image conflict body jsonapi // Example: {"version":"1.0"} swagger:model ListContainerImageConflictBodyJsonapi

func (*ListContainerImageConflictBodyJsonapi) ContextValidate

func (o *ListContainerImageConflictBodyJsonapi) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this list container image conflict body jsonapi based on context it is used

func (*ListContainerImageConflictBodyJsonapi) MarshalBinary

func (o *ListContainerImageConflictBodyJsonapi) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListContainerImageConflictBodyJsonapi) UnmarshalBinary

func (o *ListContainerImageConflictBodyJsonapi) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListContainerImageConflictBodyJsonapi) Validate

Validate validates this list container image conflict body jsonapi

type ListContainerImageForbidden

type ListContainerImageForbidden struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *ListContainerImageForbiddenBody
}

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

Forbidden: the request requires an authentication token with more or different permissions.

func NewListContainerImageForbidden

func NewListContainerImageForbidden() *ListContainerImageForbidden

NewListContainerImageForbidden creates a ListContainerImageForbidden with default headers values

func (*ListContainerImageForbidden) Code

func (o *ListContainerImageForbidden) Code() int

Code gets the status code for the list container image forbidden response

func (*ListContainerImageForbidden) Error

func (*ListContainerImageForbidden) GetPayload

func (*ListContainerImageForbidden) IsClientError

func (o *ListContainerImageForbidden) IsClientError() bool

IsClientError returns true when this list container image forbidden response has a 4xx status code

func (*ListContainerImageForbidden) IsCode

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

IsCode returns true when this list container image forbidden response a status code equal to that given

func (*ListContainerImageForbidden) IsRedirect

func (o *ListContainerImageForbidden) IsRedirect() bool

IsRedirect returns true when this list container image forbidden response has a 3xx status code

func (*ListContainerImageForbidden) IsServerError

func (o *ListContainerImageForbidden) IsServerError() bool

IsServerError returns true when this list container image forbidden response has a 5xx status code

func (*ListContainerImageForbidden) IsSuccess

func (o *ListContainerImageForbidden) IsSuccess() bool

IsSuccess returns true when this list container image forbidden response has a 2xx status code

func (*ListContainerImageForbidden) String

func (o *ListContainerImageForbidden) String() string

type ListContainerImageForbiddenBody

type ListContainerImageForbiddenBody struct {

	// errors
	// Example: [{"detail":"Permission denied for this resource","status":"403"}]
	// Required: true
	// Min Items: 1
	Errors []*ListContainerImageForbiddenBodyErrorsItems0 `json:"errors"`

	// jsonapi
	// Required: true
	Jsonapi *ListContainerImageForbiddenBodyJsonapi `json:"jsonapi"`
}

ListContainerImageForbiddenBody list container image forbidden body // Example: {"errors":[{"detail":"Permission denied for this resource","status":"403"}],"jsonapi":{"version":"1.0"}} swagger:model ListContainerImageForbiddenBody

func (*ListContainerImageForbiddenBody) ContextValidate

func (o *ListContainerImageForbiddenBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this list container image forbidden body based on the context it is used

func (*ListContainerImageForbiddenBody) MarshalBinary

func (o *ListContainerImageForbiddenBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListContainerImageForbiddenBody) UnmarshalBinary

func (o *ListContainerImageForbiddenBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListContainerImageForbiddenBody) Validate

Validate validates this list container image forbidden body

type ListContainerImageForbiddenBodyErrorsItems0

type ListContainerImageForbiddenBodyErrorsItems0 struct {

	// An application-specific error code, expressed as a string value.
	// Example: entity-not-found
	Code string `json:"code,omitempty"`

	// A human-readable explanation specific to this occurrence of the problem.
	// Example: The request was missing these required fields: ...
	// Required: true
	Detail *string `json:"detail"`

	// A unique identifier for this particular occurrence of the problem.
	// Example: f16c31b5-6129-4571-add8-d589da9be524
	// Format: uuid
	ID strfmt.UUID `json:"id,omitempty"`

	// links
	Links *ListContainerImageForbiddenBodyErrorsItems0Links `json:"links,omitempty"`

	// meta
	// Example: {"key":"value"}
	Meta interface{} `json:"meta,omitempty"`

	// source
	Source *ListContainerImageForbiddenBodyErrorsItems0Source `json:"source,omitempty"`

	// The HTTP status code applicable to this problem, expressed as a string value.
	// Example: 400
	// Required: true
	// Pattern: ^[45]\d\d$
	Status *string `json:"status"`

	// A short, human-readable summary of the problem that SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization.
	// Example: Bad request
	Title string `json:"title,omitempty"`
}

ListContainerImageForbiddenBodyErrorsItems0 list container image forbidden body errors items0 // Example: {"detail":"Not Found","status":"404"} swagger:model ListContainerImageForbiddenBodyErrorsItems0

func (*ListContainerImageForbiddenBodyErrorsItems0) ContextValidate

ContextValidate validate this list container image forbidden body errors items0 based on the context it is used

func (*ListContainerImageForbiddenBodyErrorsItems0) MarshalBinary

func (o *ListContainerImageForbiddenBodyErrorsItems0) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListContainerImageForbiddenBodyErrorsItems0) UnmarshalBinary

func (o *ListContainerImageForbiddenBodyErrorsItems0) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListContainerImageForbiddenBodyErrorsItems0) Validate

Validate validates this list container image forbidden body errors items0

type ListContainerImageForbiddenBodyErrorsItems0Links struct {

	// about
	// Example: https://example.com/api/resource
	About interface{} `json:"about,omitempty"`
}

ListContainerImageForbiddenBodyErrorsItems0Links A link that leads to further details about this particular occurrance of the problem. // Example: {"about":"https://example.com/about_this_error"} swagger:model ListContainerImageForbiddenBodyErrorsItems0Links

func (*ListContainerImageForbiddenBodyErrorsItems0Links) ContextValidate

ContextValidate validates this list container image forbidden body errors items0 links based on context it is used

func (*ListContainerImageForbiddenBodyErrorsItems0Links) MarshalBinary

MarshalBinary interface implementation

func (*ListContainerImageForbiddenBodyErrorsItems0Links) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListContainerImageForbiddenBodyErrorsItems0Links) Validate

Validate validates this list container image forbidden body errors items0 links

type ListContainerImageForbiddenBodyErrorsItems0Source

type ListContainerImageForbiddenBodyErrorsItems0Source struct {

	// A string indicating which URI query parameter caused the error.
	// Example: param1
	Parameter string `json:"parameter,omitempty"`

	// A JSON Pointer [RFC6901] to the associated entity in the request document.
	// Example: /data/attributes
	Pointer string `json:"pointer,omitempty"`
}

ListContainerImageForbiddenBodyErrorsItems0Source list container image forbidden body errors items0 source // Example: {"pointer":"/data/attributes"} swagger:model ListContainerImageForbiddenBodyErrorsItems0Source

func (*ListContainerImageForbiddenBodyErrorsItems0Source) ContextValidate

ContextValidate validates this list container image forbidden body errors items0 source based on context it is used

func (*ListContainerImageForbiddenBodyErrorsItems0Source) MarshalBinary

MarshalBinary interface implementation

func (*ListContainerImageForbiddenBodyErrorsItems0Source) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListContainerImageForbiddenBodyErrorsItems0Source) Validate

Validate validates this list container image forbidden body errors items0 source

type ListContainerImageForbiddenBodyJsonapi

type ListContainerImageForbiddenBodyJsonapi struct {

	// Version of the JSON API specification this server supports.
	// Example: 1.0
	// Required: true
	// Pattern: ^(0|[1-9]\d*)\.(0|[1-9]\d*)$
	Version *string `json:"version"`
}

ListContainerImageForbiddenBodyJsonapi list container image forbidden body jsonapi // Example: {"version":"1.0"} swagger:model ListContainerImageForbiddenBodyJsonapi

func (*ListContainerImageForbiddenBodyJsonapi) ContextValidate

ContextValidate validates this list container image forbidden body jsonapi based on context it is used

func (*ListContainerImageForbiddenBodyJsonapi) MarshalBinary

func (o *ListContainerImageForbiddenBodyJsonapi) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListContainerImageForbiddenBodyJsonapi) UnmarshalBinary

func (o *ListContainerImageForbiddenBodyJsonapi) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListContainerImageForbiddenBodyJsonapi) Validate

Validate validates this list container image forbidden body jsonapi

type ListContainerImageInternalServerError

type ListContainerImageInternalServerError struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *ListContainerImageInternalServerErrorBody
}

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

Internal Server Error: An error was encountered while attempting to process the request.

func NewListContainerImageInternalServerError

func NewListContainerImageInternalServerError() *ListContainerImageInternalServerError

NewListContainerImageInternalServerError creates a ListContainerImageInternalServerError with default headers values

func (*ListContainerImageInternalServerError) Code

Code gets the status code for the list container image internal server error response

func (*ListContainerImageInternalServerError) Error

func (*ListContainerImageInternalServerError) GetPayload

func (*ListContainerImageInternalServerError) IsClientError

func (o *ListContainerImageInternalServerError) IsClientError() bool

IsClientError returns true when this list container image internal server error response has a 4xx status code

func (*ListContainerImageInternalServerError) IsCode

IsCode returns true when this list container image internal server error response a status code equal to that given

func (*ListContainerImageInternalServerError) IsRedirect

IsRedirect returns true when this list container image internal server error response has a 3xx status code

func (*ListContainerImageInternalServerError) IsServerError

func (o *ListContainerImageInternalServerError) IsServerError() bool

IsServerError returns true when this list container image internal server error response has a 5xx status code

func (*ListContainerImageInternalServerError) IsSuccess

IsSuccess returns true when this list container image internal server error response has a 2xx status code

func (*ListContainerImageInternalServerError) String

type ListContainerImageInternalServerErrorBody

type ListContainerImageInternalServerErrorBody struct {

	// errors
	// Example: [{"detail":"Permission denied for this resource","status":"403"}]
	// Required: true
	// Min Items: 1
	Errors []*ListContainerImageInternalServerErrorBodyErrorsItems0 `json:"errors"`

	// jsonapi
	// Required: true
	Jsonapi *ListContainerImageInternalServerErrorBodyJsonapi `json:"jsonapi"`
}

ListContainerImageInternalServerErrorBody list container image internal server error body // Example: {"errors":[{"detail":"Permission denied for this resource","status":"403"}],"jsonapi":{"version":"1.0"}} swagger:model ListContainerImageInternalServerErrorBody

func (*ListContainerImageInternalServerErrorBody) ContextValidate

ContextValidate validate this list container image internal server error body based on the context it is used

func (*ListContainerImageInternalServerErrorBody) MarshalBinary

func (o *ListContainerImageInternalServerErrorBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListContainerImageInternalServerErrorBody) UnmarshalBinary

func (o *ListContainerImageInternalServerErrorBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListContainerImageInternalServerErrorBody) Validate

Validate validates this list container image internal server error body

type ListContainerImageInternalServerErrorBodyErrorsItems0

type ListContainerImageInternalServerErrorBodyErrorsItems0 struct {

	// An application-specific error code, expressed as a string value.
	// Example: entity-not-found
	Code string `json:"code,omitempty"`

	// A human-readable explanation specific to this occurrence of the problem.
	// Example: The request was missing these required fields: ...
	// Required: true
	Detail *string `json:"detail"`

	// A unique identifier for this particular occurrence of the problem.
	// Example: f16c31b5-6129-4571-add8-d589da9be524
	// Format: uuid
	ID strfmt.UUID `json:"id,omitempty"`

	// links
	Links *ListContainerImageInternalServerErrorBodyErrorsItems0Links `json:"links,omitempty"`

	// meta
	// Example: {"key":"value"}
	Meta interface{} `json:"meta,omitempty"`

	// source
	Source *ListContainerImageInternalServerErrorBodyErrorsItems0Source `json:"source,omitempty"`

	// The HTTP status code applicable to this problem, expressed as a string value.
	// Example: 400
	// Required: true
	// Pattern: ^[45]\d\d$
	Status *string `json:"status"`

	// A short, human-readable summary of the problem that SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization.
	// Example: Bad request
	Title string `json:"title,omitempty"`
}

ListContainerImageInternalServerErrorBodyErrorsItems0 list container image internal server error body errors items0 // Example: {"detail":"Not Found","status":"404"} swagger:model ListContainerImageInternalServerErrorBodyErrorsItems0

func (*ListContainerImageInternalServerErrorBodyErrorsItems0) ContextValidate

ContextValidate validate this list container image internal server error body errors items0 based on the context it is used

func (*ListContainerImageInternalServerErrorBodyErrorsItems0) MarshalBinary

MarshalBinary interface implementation

func (*ListContainerImageInternalServerErrorBodyErrorsItems0) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListContainerImageInternalServerErrorBodyErrorsItems0) Validate

Validate validates this list container image internal server error body errors items0

type ListContainerImageInternalServerErrorBodyErrorsItems0Links struct {

	// about
	// Example: https://example.com/api/resource
	About interface{} `json:"about,omitempty"`
}

ListContainerImageInternalServerErrorBodyErrorsItems0Links A link that leads to further details about this particular occurrance of the problem. // Example: {"about":"https://example.com/about_this_error"} swagger:model ListContainerImageInternalServerErrorBodyErrorsItems0Links

func (*ListContainerImageInternalServerErrorBodyErrorsItems0Links) ContextValidate

ContextValidate validates this list container image internal server error body errors items0 links based on context it is used

func (*ListContainerImageInternalServerErrorBodyErrorsItems0Links) MarshalBinary

MarshalBinary interface implementation

func (*ListContainerImageInternalServerErrorBodyErrorsItems0Links) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListContainerImageInternalServerErrorBodyErrorsItems0Links) Validate

Validate validates this list container image internal server error body errors items0 links

type ListContainerImageInternalServerErrorBodyErrorsItems0Source

type ListContainerImageInternalServerErrorBodyErrorsItems0Source struct {

	// A string indicating which URI query parameter caused the error.
	// Example: param1
	Parameter string `json:"parameter,omitempty"`

	// A JSON Pointer [RFC6901] to the associated entity in the request document.
	// Example: /data/attributes
	Pointer string `json:"pointer,omitempty"`
}

ListContainerImageInternalServerErrorBodyErrorsItems0Source list container image internal server error body errors items0 source // Example: {"pointer":"/data/attributes"} swagger:model ListContainerImageInternalServerErrorBodyErrorsItems0Source

func (*ListContainerImageInternalServerErrorBodyErrorsItems0Source) ContextValidate

ContextValidate validates this list container image internal server error body errors items0 source based on context it is used

func (*ListContainerImageInternalServerErrorBodyErrorsItems0Source) MarshalBinary

MarshalBinary interface implementation

func (*ListContainerImageInternalServerErrorBodyErrorsItems0Source) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListContainerImageInternalServerErrorBodyErrorsItems0Source) Validate

Validate validates this list container image internal server error body errors items0 source

type ListContainerImageInternalServerErrorBodyJsonapi

type ListContainerImageInternalServerErrorBodyJsonapi struct {

	// Version of the JSON API specification this server supports.
	// Example: 1.0
	// Required: true
	// Pattern: ^(0|[1-9]\d*)\.(0|[1-9]\d*)$
	Version *string `json:"version"`
}

ListContainerImageInternalServerErrorBodyJsonapi list container image internal server error body jsonapi // Example: {"version":"1.0"} swagger:model ListContainerImageInternalServerErrorBodyJsonapi

func (*ListContainerImageInternalServerErrorBodyJsonapi) ContextValidate

ContextValidate validates this list container image internal server error body jsonapi based on context it is used

func (*ListContainerImageInternalServerErrorBodyJsonapi) MarshalBinary

MarshalBinary interface implementation

func (*ListContainerImageInternalServerErrorBodyJsonapi) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListContainerImageInternalServerErrorBodyJsonapi) Validate

Validate validates this list container image internal server error body jsonapi

type ListContainerImageNotFound

type ListContainerImageNotFound struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *ListContainerImageNotFoundBody
}

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

Not Found: The resource being operated on could not be found.

func NewListContainerImageNotFound

func NewListContainerImageNotFound() *ListContainerImageNotFound

NewListContainerImageNotFound creates a ListContainerImageNotFound with default headers values

func (*ListContainerImageNotFound) Code

func (o *ListContainerImageNotFound) Code() int

Code gets the status code for the list container image not found response

func (*ListContainerImageNotFound) Error

func (*ListContainerImageNotFound) GetPayload

func (*ListContainerImageNotFound) IsClientError

func (o *ListContainerImageNotFound) IsClientError() bool

IsClientError returns true when this list container image not found response has a 4xx status code

func (*ListContainerImageNotFound) IsCode

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

IsCode returns true when this list container image not found response a status code equal to that given

func (*ListContainerImageNotFound) IsRedirect

func (o *ListContainerImageNotFound) IsRedirect() bool

IsRedirect returns true when this list container image not found response has a 3xx status code

func (*ListContainerImageNotFound) IsServerError

func (o *ListContainerImageNotFound) IsServerError() bool

IsServerError returns true when this list container image not found response has a 5xx status code

func (*ListContainerImageNotFound) IsSuccess

func (o *ListContainerImageNotFound) IsSuccess() bool

IsSuccess returns true when this list container image not found response has a 2xx status code

func (*ListContainerImageNotFound) String

func (o *ListContainerImageNotFound) String() string

type ListContainerImageNotFoundBody

type ListContainerImageNotFoundBody struct {

	// errors
	// Example: [{"detail":"Permission denied for this resource","status":"403"}]
	// Required: true
	// Min Items: 1
	Errors []*ListContainerImageNotFoundBodyErrorsItems0 `json:"errors"`

	// jsonapi
	// Required: true
	Jsonapi *ListContainerImageNotFoundBodyJsonapi `json:"jsonapi"`
}

ListContainerImageNotFoundBody list container image not found body // Example: {"errors":[{"detail":"Permission denied for this resource","status":"403"}],"jsonapi":{"version":"1.0"}} swagger:model ListContainerImageNotFoundBody

func (*ListContainerImageNotFoundBody) ContextValidate

func (o *ListContainerImageNotFoundBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this list container image not found body based on the context it is used

func (*ListContainerImageNotFoundBody) MarshalBinary

func (o *ListContainerImageNotFoundBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListContainerImageNotFoundBody) UnmarshalBinary

func (o *ListContainerImageNotFoundBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListContainerImageNotFoundBody) Validate

func (o *ListContainerImageNotFoundBody) Validate(formats strfmt.Registry) error

Validate validates this list container image not found body

type ListContainerImageNotFoundBodyErrorsItems0

type ListContainerImageNotFoundBodyErrorsItems0 struct {

	// An application-specific error code, expressed as a string value.
	// Example: entity-not-found
	Code string `json:"code,omitempty"`

	// A human-readable explanation specific to this occurrence of the problem.
	// Example: The request was missing these required fields: ...
	// Required: true
	Detail *string `json:"detail"`

	// A unique identifier for this particular occurrence of the problem.
	// Example: f16c31b5-6129-4571-add8-d589da9be524
	// Format: uuid
	ID strfmt.UUID `json:"id,omitempty"`

	// links
	Links *ListContainerImageNotFoundBodyErrorsItems0Links `json:"links,omitempty"`

	// meta
	// Example: {"key":"value"}
	Meta interface{} `json:"meta,omitempty"`

	// source
	Source *ListContainerImageNotFoundBodyErrorsItems0Source `json:"source,omitempty"`

	// The HTTP status code applicable to this problem, expressed as a string value.
	// Example: 400
	// Required: true
	// Pattern: ^[45]\d\d$
	Status *string `json:"status"`

	// A short, human-readable summary of the problem that SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization.
	// Example: Bad request
	Title string `json:"title,omitempty"`
}

ListContainerImageNotFoundBodyErrorsItems0 list container image not found body errors items0 // Example: {"detail":"Not Found","status":"404"} swagger:model ListContainerImageNotFoundBodyErrorsItems0

func (*ListContainerImageNotFoundBodyErrorsItems0) ContextValidate

ContextValidate validate this list container image not found body errors items0 based on the context it is used

func (*ListContainerImageNotFoundBodyErrorsItems0) MarshalBinary

func (o *ListContainerImageNotFoundBodyErrorsItems0) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListContainerImageNotFoundBodyErrorsItems0) UnmarshalBinary

func (o *ListContainerImageNotFoundBodyErrorsItems0) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListContainerImageNotFoundBodyErrorsItems0) Validate

Validate validates this list container image not found body errors items0

type ListContainerImageNotFoundBodyErrorsItems0Links struct {

	// about
	// Example: https://example.com/api/resource
	About interface{} `json:"about,omitempty"`
}

ListContainerImageNotFoundBodyErrorsItems0Links A link that leads to further details about this particular occurrance of the problem. // Example: {"about":"https://example.com/about_this_error"} swagger:model ListContainerImageNotFoundBodyErrorsItems0Links

func (*ListContainerImageNotFoundBodyErrorsItems0Links) ContextValidate

ContextValidate validates this list container image not found body errors items0 links based on context it is used

func (*ListContainerImageNotFoundBodyErrorsItems0Links) MarshalBinary

MarshalBinary interface implementation

func (*ListContainerImageNotFoundBodyErrorsItems0Links) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListContainerImageNotFoundBodyErrorsItems0Links) Validate

Validate validates this list container image not found body errors items0 links

type ListContainerImageNotFoundBodyErrorsItems0Source

type ListContainerImageNotFoundBodyErrorsItems0Source struct {

	// A string indicating which URI query parameter caused the error.
	// Example: param1
	Parameter string `json:"parameter,omitempty"`

	// A JSON Pointer [RFC6901] to the associated entity in the request document.
	// Example: /data/attributes
	Pointer string `json:"pointer,omitempty"`
}

ListContainerImageNotFoundBodyErrorsItems0Source list container image not found body errors items0 source // Example: {"pointer":"/data/attributes"} swagger:model ListContainerImageNotFoundBodyErrorsItems0Source

func (*ListContainerImageNotFoundBodyErrorsItems0Source) ContextValidate

ContextValidate validates this list container image not found body errors items0 source based on context it is used

func (*ListContainerImageNotFoundBodyErrorsItems0Source) MarshalBinary

MarshalBinary interface implementation

func (*ListContainerImageNotFoundBodyErrorsItems0Source) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListContainerImageNotFoundBodyErrorsItems0Source) Validate

Validate validates this list container image not found body errors items0 source

type ListContainerImageNotFoundBodyJsonapi

type ListContainerImageNotFoundBodyJsonapi struct {

	// Version of the JSON API specification this server supports.
	// Example: 1.0
	// Required: true
	// Pattern: ^(0|[1-9]\d*)\.(0|[1-9]\d*)$
	Version *string `json:"version"`
}

ListContainerImageNotFoundBodyJsonapi list container image not found body jsonapi // Example: {"version":"1.0"} swagger:model ListContainerImageNotFoundBodyJsonapi

func (*ListContainerImageNotFoundBodyJsonapi) ContextValidate

func (o *ListContainerImageNotFoundBodyJsonapi) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this list container image not found body jsonapi based on context it is used

func (*ListContainerImageNotFoundBodyJsonapi) MarshalBinary

func (o *ListContainerImageNotFoundBodyJsonapi) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListContainerImageNotFoundBodyJsonapi) UnmarshalBinary

func (o *ListContainerImageNotFoundBodyJsonapi) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListContainerImageNotFoundBodyJsonapi) Validate

Validate validates this list container image not found body jsonapi

type ListContainerImageOK

type ListContainerImageOK struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *ListContainerImageOKBody
}

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

Returns a list of container image instances

func NewListContainerImageOK

func NewListContainerImageOK() *ListContainerImageOK

NewListContainerImageOK creates a ListContainerImageOK with default headers values

func (*ListContainerImageOK) Code

func (o *ListContainerImageOK) Code() int

Code gets the status code for the list container image o k response

func (*ListContainerImageOK) Error

func (o *ListContainerImageOK) Error() string

func (*ListContainerImageOK) GetPayload

func (*ListContainerImageOK) IsClientError

func (o *ListContainerImageOK) IsClientError() bool

IsClientError returns true when this list container image o k response has a 4xx status code

func (*ListContainerImageOK) IsCode

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

IsCode returns true when this list container image o k response a status code equal to that given

func (*ListContainerImageOK) IsRedirect

func (o *ListContainerImageOK) IsRedirect() bool

IsRedirect returns true when this list container image o k response has a 3xx status code

func (*ListContainerImageOK) IsServerError

func (o *ListContainerImageOK) IsServerError() bool

IsServerError returns true when this list container image o k response has a 5xx status code

func (*ListContainerImageOK) IsSuccess

func (o *ListContainerImageOK) IsSuccess() bool

IsSuccess returns true when this list container image o k response has a 2xx status code

func (*ListContainerImageOK) String

func (o *ListContainerImageOK) String() string

type ListContainerImageOKBody

type ListContainerImageOKBody struct {

	// data
	Data []*models.Image `json:"data"`

	// jsonapi
	Jsonapi *models.JSONAPI `json:"jsonapi,omitempty"`

	// links
	Links *models.PaginatedLinks `json:"links,omitempty"`
}

ListContainerImageOKBody list container image o k body swagger:model ListContainerImageOKBody

func (*ListContainerImageOKBody) ContextValidate

func (o *ListContainerImageOKBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this list container image o k body based on the context it is used

func (*ListContainerImageOKBody) MarshalBinary

func (o *ListContainerImageOKBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListContainerImageOKBody) UnmarshalBinary

func (o *ListContainerImageOKBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListContainerImageOKBody) Validate

func (o *ListContainerImageOKBody) Validate(formats strfmt.Registry) error

Validate validates this list container image o k body

type ListContainerImageParams

type ListContainerImageParams struct {

	/* EndingBefore.

	   Return the page of results immediately before this cursor
	*/
	EndingBefore *string

	/* ImageIds.

	   A comma-separated list of Image IDs
	*/
	ImageIds []strfmt.URI

	/* Limit.

	   Number of results to return per page

	   Format: int32
	   Default: 10
	*/
	Limit *int32

	/* Names.

	   The container registry names
	*/
	Names []string

	/* OrgID.

	   Org ID

	   Format: uuid
	*/
	OrgID strfmt.UUID

	/* Platform.

	   The image Operating System and processor architecture
	*/
	Platform *string

	/* StartingAfter.

	   Return the page of results immediately after this cursor
	*/
	StartingAfter *string

	/* Version.

	   The requested version of the endpoint to process the request
	*/
	Version string

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

ListContainerImageParams contains all the parameters to send to the API endpoint

for the list container image operation.

Typically these are written to a http.Request.

func NewListContainerImageParams

func NewListContainerImageParams() *ListContainerImageParams

NewListContainerImageParams creates a new ListContainerImageParams 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 NewListContainerImageParamsWithContext

func NewListContainerImageParamsWithContext(ctx context.Context) *ListContainerImageParams

NewListContainerImageParamsWithContext creates a new ListContainerImageParams object with the ability to set a context for a request.

func NewListContainerImageParamsWithHTTPClient

func NewListContainerImageParamsWithHTTPClient(client *http.Client) *ListContainerImageParams

NewListContainerImageParamsWithHTTPClient creates a new ListContainerImageParams object with the ability to set a custom HTTPClient for a request.

func NewListContainerImageParamsWithTimeout

func NewListContainerImageParamsWithTimeout(timeout time.Duration) *ListContainerImageParams

NewListContainerImageParamsWithTimeout creates a new ListContainerImageParams object with the ability to set a timeout on a request.

func (*ListContainerImageParams) SetContext

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

SetContext adds the context to the list container image params

func (*ListContainerImageParams) SetDefaults

func (o *ListContainerImageParams) SetDefaults()

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

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

func (*ListContainerImageParams) SetEndingBefore

func (o *ListContainerImageParams) SetEndingBefore(endingBefore *string)

SetEndingBefore adds the endingBefore to the list container image params

func (*ListContainerImageParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the list container image params

func (*ListContainerImageParams) SetImageIds

func (o *ListContainerImageParams) SetImageIds(imageIds []strfmt.URI)

SetImageIds adds the imageIds to the list container image params

func (*ListContainerImageParams) SetLimit

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

SetLimit adds the limit to the list container image params

func (*ListContainerImageParams) SetNames

func (o *ListContainerImageParams) SetNames(names []string)

SetNames adds the names to the list container image params

func (*ListContainerImageParams) SetOrgID

func (o *ListContainerImageParams) SetOrgID(orgID strfmt.UUID)

SetOrgID adds the orgId to the list container image params

func (*ListContainerImageParams) SetPlatform

func (o *ListContainerImageParams) SetPlatform(platform *string)

SetPlatform adds the platform to the list container image params

func (*ListContainerImageParams) SetStartingAfter

func (o *ListContainerImageParams) SetStartingAfter(startingAfter *string)

SetStartingAfter adds the startingAfter to the list container image params

func (*ListContainerImageParams) SetTimeout

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

SetTimeout adds the timeout to the list container image params

func (*ListContainerImageParams) SetVersion

func (o *ListContainerImageParams) SetVersion(version string)

SetVersion adds the version to the list container image params

func (*ListContainerImageParams) WithContext

WithContext adds the context to the list container image params

func (*ListContainerImageParams) WithDefaults

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

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

func (*ListContainerImageParams) WithEndingBefore

func (o *ListContainerImageParams) WithEndingBefore(endingBefore *string) *ListContainerImageParams

WithEndingBefore adds the endingBefore to the list container image params

func (*ListContainerImageParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the list container image params

func (*ListContainerImageParams) WithImageIds

func (o *ListContainerImageParams) WithImageIds(imageIds []strfmt.URI) *ListContainerImageParams

WithImageIds adds the imageIds to the list container image params

func (*ListContainerImageParams) WithLimit

WithLimit adds the limit to the list container image params

func (*ListContainerImageParams) WithNames

WithNames adds the names to the list container image params

func (*ListContainerImageParams) WithOrgID

WithOrgID adds the orgID to the list container image params

func (*ListContainerImageParams) WithPlatform

func (o *ListContainerImageParams) WithPlatform(platform *string) *ListContainerImageParams

WithPlatform adds the platform to the list container image params

func (*ListContainerImageParams) WithStartingAfter

func (o *ListContainerImageParams) WithStartingAfter(startingAfter *string) *ListContainerImageParams

WithStartingAfter adds the startingAfter to the list container image params

func (*ListContainerImageParams) WithTimeout

WithTimeout adds the timeout to the list container image params

func (*ListContainerImageParams) WithVersion

func (o *ListContainerImageParams) WithVersion(version string) *ListContainerImageParams

WithVersion adds the version to the list container image params

func (*ListContainerImageParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ListContainerImageReader

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

ListContainerImageReader is a Reader for the ListContainerImage structure.

func (*ListContainerImageReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ListContainerImageUnauthorized

type ListContainerImageUnauthorized struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *ListContainerImageUnauthorizedBody
}

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

Unauthorized: the request requires an authentication token.

func NewListContainerImageUnauthorized

func NewListContainerImageUnauthorized() *ListContainerImageUnauthorized

NewListContainerImageUnauthorized creates a ListContainerImageUnauthorized with default headers values

func (*ListContainerImageUnauthorized) Code

Code gets the status code for the list container image unauthorized response

func (*ListContainerImageUnauthorized) Error

func (*ListContainerImageUnauthorized) GetPayload

func (*ListContainerImageUnauthorized) IsClientError

func (o *ListContainerImageUnauthorized) IsClientError() bool

IsClientError returns true when this list container image unauthorized response has a 4xx status code

func (*ListContainerImageUnauthorized) IsCode

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

IsCode returns true when this list container image unauthorized response a status code equal to that given

func (*ListContainerImageUnauthorized) IsRedirect

func (o *ListContainerImageUnauthorized) IsRedirect() bool

IsRedirect returns true when this list container image unauthorized response has a 3xx status code

func (*ListContainerImageUnauthorized) IsServerError

func (o *ListContainerImageUnauthorized) IsServerError() bool

IsServerError returns true when this list container image unauthorized response has a 5xx status code

func (*ListContainerImageUnauthorized) IsSuccess

func (o *ListContainerImageUnauthorized) IsSuccess() bool

IsSuccess returns true when this list container image unauthorized response has a 2xx status code

func (*ListContainerImageUnauthorized) String

type ListContainerImageUnauthorizedBody

type ListContainerImageUnauthorizedBody struct {

	// errors
	// Example: [{"detail":"Permission denied for this resource","status":"403"}]
	// Required: true
	// Min Items: 1
	Errors []*ListContainerImageUnauthorizedBodyErrorsItems0 `json:"errors"`

	// jsonapi
	// Required: true
	Jsonapi *ListContainerImageUnauthorizedBodyJsonapi `json:"jsonapi"`
}

ListContainerImageUnauthorizedBody list container image unauthorized body // Example: {"errors":[{"detail":"Permission denied for this resource","status":"403"}],"jsonapi":{"version":"1.0"}} swagger:model ListContainerImageUnauthorizedBody

func (*ListContainerImageUnauthorizedBody) ContextValidate

func (o *ListContainerImageUnauthorizedBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this list container image unauthorized body based on the context it is used

func (*ListContainerImageUnauthorizedBody) MarshalBinary

func (o *ListContainerImageUnauthorizedBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListContainerImageUnauthorizedBody) UnmarshalBinary

func (o *ListContainerImageUnauthorizedBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListContainerImageUnauthorizedBody) Validate

Validate validates this list container image unauthorized body

type ListContainerImageUnauthorizedBodyErrorsItems0

type ListContainerImageUnauthorizedBodyErrorsItems0 struct {

	// An application-specific error code, expressed as a string value.
	// Example: entity-not-found
	Code string `json:"code,omitempty"`

	// A human-readable explanation specific to this occurrence of the problem.
	// Example: The request was missing these required fields: ...
	// Required: true
	Detail *string `json:"detail"`

	// A unique identifier for this particular occurrence of the problem.
	// Example: f16c31b5-6129-4571-add8-d589da9be524
	// Format: uuid
	ID strfmt.UUID `json:"id,omitempty"`

	// links
	Links *ListContainerImageUnauthorizedBodyErrorsItems0Links `json:"links,omitempty"`

	// meta
	// Example: {"key":"value"}
	Meta interface{} `json:"meta,omitempty"`

	// source
	Source *ListContainerImageUnauthorizedBodyErrorsItems0Source `json:"source,omitempty"`

	// The HTTP status code applicable to this problem, expressed as a string value.
	// Example: 400
	// Required: true
	// Pattern: ^[45]\d\d$
	Status *string `json:"status"`

	// A short, human-readable summary of the problem that SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization.
	// Example: Bad request
	Title string `json:"title,omitempty"`
}

ListContainerImageUnauthorizedBodyErrorsItems0 list container image unauthorized body errors items0 // Example: {"detail":"Not Found","status":"404"} swagger:model ListContainerImageUnauthorizedBodyErrorsItems0

func (*ListContainerImageUnauthorizedBodyErrorsItems0) ContextValidate

ContextValidate validate this list container image unauthorized body errors items0 based on the context it is used

func (*ListContainerImageUnauthorizedBodyErrorsItems0) MarshalBinary

MarshalBinary interface implementation

func (*ListContainerImageUnauthorizedBodyErrorsItems0) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListContainerImageUnauthorizedBodyErrorsItems0) Validate

Validate validates this list container image unauthorized body errors items0

type ListContainerImageUnauthorizedBodyErrorsItems0Links struct {

	// about
	// Example: https://example.com/api/resource
	About interface{} `json:"about,omitempty"`
}

ListContainerImageUnauthorizedBodyErrorsItems0Links A link that leads to further details about this particular occurrance of the problem. // Example: {"about":"https://example.com/about_this_error"} swagger:model ListContainerImageUnauthorizedBodyErrorsItems0Links

func (*ListContainerImageUnauthorizedBodyErrorsItems0Links) ContextValidate

ContextValidate validates this list container image unauthorized body errors items0 links based on context it is used

func (*ListContainerImageUnauthorizedBodyErrorsItems0Links) MarshalBinary

MarshalBinary interface implementation

func (*ListContainerImageUnauthorizedBodyErrorsItems0Links) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListContainerImageUnauthorizedBodyErrorsItems0Links) Validate

Validate validates this list container image unauthorized body errors items0 links

type ListContainerImageUnauthorizedBodyErrorsItems0Source

type ListContainerImageUnauthorizedBodyErrorsItems0Source struct {

	// A string indicating which URI query parameter caused the error.
	// Example: param1
	Parameter string `json:"parameter,omitempty"`

	// A JSON Pointer [RFC6901] to the associated entity in the request document.
	// Example: /data/attributes
	Pointer string `json:"pointer,omitempty"`
}

ListContainerImageUnauthorizedBodyErrorsItems0Source list container image unauthorized body errors items0 source // Example: {"pointer":"/data/attributes"} swagger:model ListContainerImageUnauthorizedBodyErrorsItems0Source

func (*ListContainerImageUnauthorizedBodyErrorsItems0Source) ContextValidate

ContextValidate validates this list container image unauthorized body errors items0 source based on context it is used

func (*ListContainerImageUnauthorizedBodyErrorsItems0Source) MarshalBinary

MarshalBinary interface implementation

func (*ListContainerImageUnauthorizedBodyErrorsItems0Source) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListContainerImageUnauthorizedBodyErrorsItems0Source) Validate

Validate validates this list container image unauthorized body errors items0 source

type ListContainerImageUnauthorizedBodyJsonapi

type ListContainerImageUnauthorizedBodyJsonapi struct {

	// Version of the JSON API specification this server supports.
	// Example: 1.0
	// Required: true
	// Pattern: ^(0|[1-9]\d*)\.(0|[1-9]\d*)$
	Version *string `json:"version"`
}

ListContainerImageUnauthorizedBodyJsonapi list container image unauthorized body jsonapi // Example: {"version":"1.0"} swagger:model ListContainerImageUnauthorizedBodyJsonapi

func (*ListContainerImageUnauthorizedBodyJsonapi) ContextValidate

ContextValidate validates this list container image unauthorized body jsonapi based on context it is used

func (*ListContainerImageUnauthorizedBodyJsonapi) MarshalBinary

func (o *ListContainerImageUnauthorizedBodyJsonapi) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListContainerImageUnauthorizedBodyJsonapi) UnmarshalBinary

func (o *ListContainerImageUnauthorizedBodyJsonapi) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListContainerImageUnauthorizedBodyJsonapi) Validate

Validate validates this list container image unauthorized body jsonapi

type ListImageTargetRefsBadRequest

type ListImageTargetRefsBadRequest struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *ListImageTargetRefsBadRequestBody
}

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

Bad Request: A parameter provided as a part of the request was invalid.

func NewListImageTargetRefsBadRequest

func NewListImageTargetRefsBadRequest() *ListImageTargetRefsBadRequest

NewListImageTargetRefsBadRequest creates a ListImageTargetRefsBadRequest with default headers values

func (*ListImageTargetRefsBadRequest) Code

Code gets the status code for the list image target refs bad request response

func (*ListImageTargetRefsBadRequest) Error

func (*ListImageTargetRefsBadRequest) GetPayload

func (*ListImageTargetRefsBadRequest) IsClientError

func (o *ListImageTargetRefsBadRequest) IsClientError() bool

IsClientError returns true when this list image target refs bad request response has a 4xx status code

func (*ListImageTargetRefsBadRequest) IsCode

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

IsCode returns true when this list image target refs bad request response a status code equal to that given

func (*ListImageTargetRefsBadRequest) IsRedirect

func (o *ListImageTargetRefsBadRequest) IsRedirect() bool

IsRedirect returns true when this list image target refs bad request response has a 3xx status code

func (*ListImageTargetRefsBadRequest) IsServerError

func (o *ListImageTargetRefsBadRequest) IsServerError() bool

IsServerError returns true when this list image target refs bad request response has a 5xx status code

func (*ListImageTargetRefsBadRequest) IsSuccess

func (o *ListImageTargetRefsBadRequest) IsSuccess() bool

IsSuccess returns true when this list image target refs bad request response has a 2xx status code

func (*ListImageTargetRefsBadRequest) String

type ListImageTargetRefsBadRequestBody

type ListImageTargetRefsBadRequestBody struct {

	// errors
	// Example: [{"detail":"Permission denied for this resource","status":"403"}]
	// Required: true
	// Min Items: 1
	Errors []*ListImageTargetRefsBadRequestBodyErrorsItems0 `json:"errors"`

	// jsonapi
	// Required: true
	Jsonapi *ListImageTargetRefsBadRequestBodyJsonapi `json:"jsonapi"`
}

ListImageTargetRefsBadRequestBody list image target refs bad request body // Example: {"errors":[{"detail":"Permission denied for this resource","status":"403"}],"jsonapi":{"version":"1.0"}} swagger:model ListImageTargetRefsBadRequestBody

func (*ListImageTargetRefsBadRequestBody) ContextValidate

func (o *ListImageTargetRefsBadRequestBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this list image target refs bad request body based on the context it is used

func (*ListImageTargetRefsBadRequestBody) MarshalBinary

func (o *ListImageTargetRefsBadRequestBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListImageTargetRefsBadRequestBody) UnmarshalBinary

func (o *ListImageTargetRefsBadRequestBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListImageTargetRefsBadRequestBody) Validate

Validate validates this list image target refs bad request body

type ListImageTargetRefsBadRequestBodyErrorsItems0

type ListImageTargetRefsBadRequestBodyErrorsItems0 struct {

	// An application-specific error code, expressed as a string value.
	// Example: entity-not-found
	Code string `json:"code,omitempty"`

	// A human-readable explanation specific to this occurrence of the problem.
	// Example: The request was missing these required fields: ...
	// Required: true
	Detail *string `json:"detail"`

	// A unique identifier for this particular occurrence of the problem.
	// Example: f16c31b5-6129-4571-add8-d589da9be524
	// Format: uuid
	ID strfmt.UUID `json:"id,omitempty"`

	// links
	Links *ListImageTargetRefsBadRequestBodyErrorsItems0Links `json:"links,omitempty"`

	// meta
	// Example: {"key":"value"}
	Meta interface{} `json:"meta,omitempty"`

	// source
	Source *ListImageTargetRefsBadRequestBodyErrorsItems0Source `json:"source,omitempty"`

	// The HTTP status code applicable to this problem, expressed as a string value.
	// Example: 400
	// Required: true
	// Pattern: ^[45]\d\d$
	Status *string `json:"status"`

	// A short, human-readable summary of the problem that SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization.
	// Example: Bad request
	Title string `json:"title,omitempty"`
}

ListImageTargetRefsBadRequestBodyErrorsItems0 list image target refs bad request body errors items0 // Example: {"detail":"Not Found","status":"404"} swagger:model ListImageTargetRefsBadRequestBodyErrorsItems0

func (*ListImageTargetRefsBadRequestBodyErrorsItems0) ContextValidate

ContextValidate validate this list image target refs bad request body errors items0 based on the context it is used

func (*ListImageTargetRefsBadRequestBodyErrorsItems0) MarshalBinary

MarshalBinary interface implementation

func (*ListImageTargetRefsBadRequestBodyErrorsItems0) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListImageTargetRefsBadRequestBodyErrorsItems0) Validate

Validate validates this list image target refs bad request body errors items0

type ListImageTargetRefsBadRequestBodyErrorsItems0Links struct {

	// about
	// Example: https://example.com/api/resource
	About interface{} `json:"about,omitempty"`
}

ListImageTargetRefsBadRequestBodyErrorsItems0Links A link that leads to further details about this particular occurrance of the problem. // Example: {"about":"https://example.com/about_this_error"} swagger:model ListImageTargetRefsBadRequestBodyErrorsItems0Links

func (*ListImageTargetRefsBadRequestBodyErrorsItems0Links) ContextValidate

ContextValidate validates this list image target refs bad request body errors items0 links based on context it is used

func (*ListImageTargetRefsBadRequestBodyErrorsItems0Links) MarshalBinary

MarshalBinary interface implementation

func (*ListImageTargetRefsBadRequestBodyErrorsItems0Links) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListImageTargetRefsBadRequestBodyErrorsItems0Links) Validate

Validate validates this list image target refs bad request body errors items0 links

type ListImageTargetRefsBadRequestBodyErrorsItems0Source

type ListImageTargetRefsBadRequestBodyErrorsItems0Source struct {

	// A string indicating which URI query parameter caused the error.
	// Example: param1
	Parameter string `json:"parameter,omitempty"`

	// A JSON Pointer [RFC6901] to the associated entity in the request document.
	// Example: /data/attributes
	Pointer string `json:"pointer,omitempty"`
}

ListImageTargetRefsBadRequestBodyErrorsItems0Source list image target refs bad request body errors items0 source // Example: {"pointer":"/data/attributes"} swagger:model ListImageTargetRefsBadRequestBodyErrorsItems0Source

func (*ListImageTargetRefsBadRequestBodyErrorsItems0Source) ContextValidate

ContextValidate validates this list image target refs bad request body errors items0 source based on context it is used

func (*ListImageTargetRefsBadRequestBodyErrorsItems0Source) MarshalBinary

MarshalBinary interface implementation

func (*ListImageTargetRefsBadRequestBodyErrorsItems0Source) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListImageTargetRefsBadRequestBodyErrorsItems0Source) Validate

Validate validates this list image target refs bad request body errors items0 source

type ListImageTargetRefsBadRequestBodyJsonapi

type ListImageTargetRefsBadRequestBodyJsonapi struct {

	// Version of the JSON API specification this server supports.
	// Example: 1.0
	// Required: true
	// Pattern: ^(0|[1-9]\d*)\.(0|[1-9]\d*)$
	Version *string `json:"version"`
}

ListImageTargetRefsBadRequestBodyJsonapi list image target refs bad request body jsonapi // Example: {"version":"1.0"} swagger:model ListImageTargetRefsBadRequestBodyJsonapi

func (*ListImageTargetRefsBadRequestBodyJsonapi) ContextValidate

ContextValidate validates this list image target refs bad request body jsonapi based on context it is used

func (*ListImageTargetRefsBadRequestBodyJsonapi) MarshalBinary

func (o *ListImageTargetRefsBadRequestBodyJsonapi) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListImageTargetRefsBadRequestBodyJsonapi) UnmarshalBinary

func (o *ListImageTargetRefsBadRequestBodyJsonapi) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListImageTargetRefsBadRequestBodyJsonapi) Validate

Validate validates this list image target refs bad request body jsonapi

type ListImageTargetRefsConflict

type ListImageTargetRefsConflict struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *ListImageTargetRefsConflictBody
}

ListImageTargetRefsConflict describes a response with status code 409, with default header values.

Conflict: The requested operation conflicts with the current state of the resource in some way.

func NewListImageTargetRefsConflict

func NewListImageTargetRefsConflict() *ListImageTargetRefsConflict

NewListImageTargetRefsConflict creates a ListImageTargetRefsConflict with default headers values

func (*ListImageTargetRefsConflict) Code

func (o *ListImageTargetRefsConflict) Code() int

Code gets the status code for the list image target refs conflict response

func (*ListImageTargetRefsConflict) Error

func (*ListImageTargetRefsConflict) GetPayload

func (*ListImageTargetRefsConflict) IsClientError

func (o *ListImageTargetRefsConflict) IsClientError() bool

IsClientError returns true when this list image target refs conflict response has a 4xx status code

func (*ListImageTargetRefsConflict) IsCode

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

IsCode returns true when this list image target refs conflict response a status code equal to that given

func (*ListImageTargetRefsConflict) IsRedirect

func (o *ListImageTargetRefsConflict) IsRedirect() bool

IsRedirect returns true when this list image target refs conflict response has a 3xx status code

func (*ListImageTargetRefsConflict) IsServerError

func (o *ListImageTargetRefsConflict) IsServerError() bool

IsServerError returns true when this list image target refs conflict response has a 5xx status code

func (*ListImageTargetRefsConflict) IsSuccess

func (o *ListImageTargetRefsConflict) IsSuccess() bool

IsSuccess returns true when this list image target refs conflict response has a 2xx status code

func (*ListImageTargetRefsConflict) String

func (o *ListImageTargetRefsConflict) String() string

type ListImageTargetRefsConflictBody

type ListImageTargetRefsConflictBody struct {

	// errors
	// Example: [{"detail":"Permission denied for this resource","status":"403"}]
	// Required: true
	// Min Items: 1
	Errors []*ListImageTargetRefsConflictBodyErrorsItems0 `json:"errors"`

	// jsonapi
	// Required: true
	Jsonapi *ListImageTargetRefsConflictBodyJsonapi `json:"jsonapi"`
}

ListImageTargetRefsConflictBody list image target refs conflict body // Example: {"errors":[{"detail":"Permission denied for this resource","status":"403"}],"jsonapi":{"version":"1.0"}} swagger:model ListImageTargetRefsConflictBody

func (*ListImageTargetRefsConflictBody) ContextValidate

func (o *ListImageTargetRefsConflictBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this list image target refs conflict body based on the context it is used

func (*ListImageTargetRefsConflictBody) MarshalBinary

func (o *ListImageTargetRefsConflictBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListImageTargetRefsConflictBody) UnmarshalBinary

func (o *ListImageTargetRefsConflictBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListImageTargetRefsConflictBody) Validate

Validate validates this list image target refs conflict body

type ListImageTargetRefsConflictBodyErrorsItems0

type ListImageTargetRefsConflictBodyErrorsItems0 struct {

	// An application-specific error code, expressed as a string value.
	// Example: entity-not-found
	Code string `json:"code,omitempty"`

	// A human-readable explanation specific to this occurrence of the problem.
	// Example: The request was missing these required fields: ...
	// Required: true
	Detail *string `json:"detail"`

	// A unique identifier for this particular occurrence of the problem.
	// Example: f16c31b5-6129-4571-add8-d589da9be524
	// Format: uuid
	ID strfmt.UUID `json:"id,omitempty"`

	// links
	Links *ListImageTargetRefsConflictBodyErrorsItems0Links `json:"links,omitempty"`

	// meta
	// Example: {"key":"value"}
	Meta interface{} `json:"meta,omitempty"`

	// source
	Source *ListImageTargetRefsConflictBodyErrorsItems0Source `json:"source,omitempty"`

	// The HTTP status code applicable to this problem, expressed as a string value.
	// Example: 400
	// Required: true
	// Pattern: ^[45]\d\d$
	Status *string `json:"status"`

	// A short, human-readable summary of the problem that SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization.
	// Example: Bad request
	Title string `json:"title,omitempty"`
}

ListImageTargetRefsConflictBodyErrorsItems0 list image target refs conflict body errors items0 // Example: {"detail":"Not Found","status":"404"} swagger:model ListImageTargetRefsConflictBodyErrorsItems0

func (*ListImageTargetRefsConflictBodyErrorsItems0) ContextValidate

ContextValidate validate this list image target refs conflict body errors items0 based on the context it is used

func (*ListImageTargetRefsConflictBodyErrorsItems0) MarshalBinary

func (o *ListImageTargetRefsConflictBodyErrorsItems0) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListImageTargetRefsConflictBodyErrorsItems0) UnmarshalBinary

func (o *ListImageTargetRefsConflictBodyErrorsItems0) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListImageTargetRefsConflictBodyErrorsItems0) Validate

Validate validates this list image target refs conflict body errors items0

type ListImageTargetRefsConflictBodyErrorsItems0Links struct {

	// about
	// Example: https://example.com/api/resource
	About interface{} `json:"about,omitempty"`
}

ListImageTargetRefsConflictBodyErrorsItems0Links A link that leads to further details about this particular occurrance of the problem. // Example: {"about":"https://example.com/about_this_error"} swagger:model ListImageTargetRefsConflictBodyErrorsItems0Links

func (*ListImageTargetRefsConflictBodyErrorsItems0Links) ContextValidate

ContextValidate validates this list image target refs conflict body errors items0 links based on context it is used

func (*ListImageTargetRefsConflictBodyErrorsItems0Links) MarshalBinary

MarshalBinary interface implementation

func (*ListImageTargetRefsConflictBodyErrorsItems0Links) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListImageTargetRefsConflictBodyErrorsItems0Links) Validate

Validate validates this list image target refs conflict body errors items0 links

type ListImageTargetRefsConflictBodyErrorsItems0Source

type ListImageTargetRefsConflictBodyErrorsItems0Source struct {

	// A string indicating which URI query parameter caused the error.
	// Example: param1
	Parameter string `json:"parameter,omitempty"`

	// A JSON Pointer [RFC6901] to the associated entity in the request document.
	// Example: /data/attributes
	Pointer string `json:"pointer,omitempty"`
}

ListImageTargetRefsConflictBodyErrorsItems0Source list image target refs conflict body errors items0 source // Example: {"pointer":"/data/attributes"} swagger:model ListImageTargetRefsConflictBodyErrorsItems0Source

func (*ListImageTargetRefsConflictBodyErrorsItems0Source) ContextValidate

ContextValidate validates this list image target refs conflict body errors items0 source based on context it is used

func (*ListImageTargetRefsConflictBodyErrorsItems0Source) MarshalBinary

MarshalBinary interface implementation

func (*ListImageTargetRefsConflictBodyErrorsItems0Source) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListImageTargetRefsConflictBodyErrorsItems0Source) Validate

Validate validates this list image target refs conflict body errors items0 source

type ListImageTargetRefsConflictBodyJsonapi

type ListImageTargetRefsConflictBodyJsonapi struct {

	// Version of the JSON API specification this server supports.
	// Example: 1.0
	// Required: true
	// Pattern: ^(0|[1-9]\d*)\.(0|[1-9]\d*)$
	Version *string `json:"version"`
}

ListImageTargetRefsConflictBodyJsonapi list image target refs conflict body jsonapi // Example: {"version":"1.0"} swagger:model ListImageTargetRefsConflictBodyJsonapi

func (*ListImageTargetRefsConflictBodyJsonapi) ContextValidate

ContextValidate validates this list image target refs conflict body jsonapi based on context it is used

func (*ListImageTargetRefsConflictBodyJsonapi) MarshalBinary

func (o *ListImageTargetRefsConflictBodyJsonapi) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListImageTargetRefsConflictBodyJsonapi) UnmarshalBinary

func (o *ListImageTargetRefsConflictBodyJsonapi) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListImageTargetRefsConflictBodyJsonapi) Validate

Validate validates this list image target refs conflict body jsonapi

type ListImageTargetRefsForbidden

type ListImageTargetRefsForbidden struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *ListImageTargetRefsForbiddenBody
}

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

Forbidden: the request requires an authentication token with more or different permissions.

func NewListImageTargetRefsForbidden

func NewListImageTargetRefsForbidden() *ListImageTargetRefsForbidden

NewListImageTargetRefsForbidden creates a ListImageTargetRefsForbidden with default headers values

func (*ListImageTargetRefsForbidden) Code

Code gets the status code for the list image target refs forbidden response

func (*ListImageTargetRefsForbidden) Error

func (*ListImageTargetRefsForbidden) GetPayload

func (*ListImageTargetRefsForbidden) IsClientError

func (o *ListImageTargetRefsForbidden) IsClientError() bool

IsClientError returns true when this list image target refs forbidden response has a 4xx status code

func (*ListImageTargetRefsForbidden) IsCode

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

IsCode returns true when this list image target refs forbidden response a status code equal to that given

func (*ListImageTargetRefsForbidden) IsRedirect

func (o *ListImageTargetRefsForbidden) IsRedirect() bool

IsRedirect returns true when this list image target refs forbidden response has a 3xx status code

func (*ListImageTargetRefsForbidden) IsServerError

func (o *ListImageTargetRefsForbidden) IsServerError() bool

IsServerError returns true when this list image target refs forbidden response has a 5xx status code

func (*ListImageTargetRefsForbidden) IsSuccess

func (o *ListImageTargetRefsForbidden) IsSuccess() bool

IsSuccess returns true when this list image target refs forbidden response has a 2xx status code

func (*ListImageTargetRefsForbidden) String

type ListImageTargetRefsForbiddenBody

type ListImageTargetRefsForbiddenBody struct {

	// errors
	// Example: [{"detail":"Permission denied for this resource","status":"403"}]
	// Required: true
	// Min Items: 1
	Errors []*ListImageTargetRefsForbiddenBodyErrorsItems0 `json:"errors"`

	// jsonapi
	// Required: true
	Jsonapi *ListImageTargetRefsForbiddenBodyJsonapi `json:"jsonapi"`
}

ListImageTargetRefsForbiddenBody list image target refs forbidden body // Example: {"errors":[{"detail":"Permission denied for this resource","status":"403"}],"jsonapi":{"version":"1.0"}} swagger:model ListImageTargetRefsForbiddenBody

func (*ListImageTargetRefsForbiddenBody) ContextValidate

func (o *ListImageTargetRefsForbiddenBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this list image target refs forbidden body based on the context it is used

func (*ListImageTargetRefsForbiddenBody) MarshalBinary

func (o *ListImageTargetRefsForbiddenBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListImageTargetRefsForbiddenBody) UnmarshalBinary

func (o *ListImageTargetRefsForbiddenBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListImageTargetRefsForbiddenBody) Validate

Validate validates this list image target refs forbidden body

type ListImageTargetRefsForbiddenBodyErrorsItems0

type ListImageTargetRefsForbiddenBodyErrorsItems0 struct {

	// An application-specific error code, expressed as a string value.
	// Example: entity-not-found
	Code string `json:"code,omitempty"`

	// A human-readable explanation specific to this occurrence of the problem.
	// Example: The request was missing these required fields: ...
	// Required: true
	Detail *string `json:"detail"`

	// A unique identifier for this particular occurrence of the problem.
	// Example: f16c31b5-6129-4571-add8-d589da9be524
	// Format: uuid
	ID strfmt.UUID `json:"id,omitempty"`

	// links
	Links *ListImageTargetRefsForbiddenBodyErrorsItems0Links `json:"links,omitempty"`

	// meta
	// Example: {"key":"value"}
	Meta interface{} `json:"meta,omitempty"`

	// source
	Source *ListImageTargetRefsForbiddenBodyErrorsItems0Source `json:"source,omitempty"`

	// The HTTP status code applicable to this problem, expressed as a string value.
	// Example: 400
	// Required: true
	// Pattern: ^[45]\d\d$
	Status *string `json:"status"`

	// A short, human-readable summary of the problem that SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization.
	// Example: Bad request
	Title string `json:"title,omitempty"`
}

ListImageTargetRefsForbiddenBodyErrorsItems0 list image target refs forbidden body errors items0 // Example: {"detail":"Not Found","status":"404"} swagger:model ListImageTargetRefsForbiddenBodyErrorsItems0

func (*ListImageTargetRefsForbiddenBodyErrorsItems0) ContextValidate

ContextValidate validate this list image target refs forbidden body errors items0 based on the context it is used

func (*ListImageTargetRefsForbiddenBodyErrorsItems0) MarshalBinary

MarshalBinary interface implementation

func (*ListImageTargetRefsForbiddenBodyErrorsItems0) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListImageTargetRefsForbiddenBodyErrorsItems0) Validate

Validate validates this list image target refs forbidden body errors items0

type ListImageTargetRefsForbiddenBodyErrorsItems0Links struct {

	// about
	// Example: https://example.com/api/resource
	About interface{} `json:"about,omitempty"`
}

ListImageTargetRefsForbiddenBodyErrorsItems0Links A link that leads to further details about this particular occurrance of the problem. // Example: {"about":"https://example.com/about_this_error"} swagger:model ListImageTargetRefsForbiddenBodyErrorsItems0Links

func (*ListImageTargetRefsForbiddenBodyErrorsItems0Links) ContextValidate

ContextValidate validates this list image target refs forbidden body errors items0 links based on context it is used

func (*ListImageTargetRefsForbiddenBodyErrorsItems0Links) MarshalBinary

MarshalBinary interface implementation

func (*ListImageTargetRefsForbiddenBodyErrorsItems0Links) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListImageTargetRefsForbiddenBodyErrorsItems0Links) Validate

Validate validates this list image target refs forbidden body errors items0 links

type ListImageTargetRefsForbiddenBodyErrorsItems0Source

type ListImageTargetRefsForbiddenBodyErrorsItems0Source struct {

	// A string indicating which URI query parameter caused the error.
	// Example: param1
	Parameter string `json:"parameter,omitempty"`

	// A JSON Pointer [RFC6901] to the associated entity in the request document.
	// Example: /data/attributes
	Pointer string `json:"pointer,omitempty"`
}

ListImageTargetRefsForbiddenBodyErrorsItems0Source list image target refs forbidden body errors items0 source // Example: {"pointer":"/data/attributes"} swagger:model ListImageTargetRefsForbiddenBodyErrorsItems0Source

func (*ListImageTargetRefsForbiddenBodyErrorsItems0Source) ContextValidate

ContextValidate validates this list image target refs forbidden body errors items0 source based on context it is used

func (*ListImageTargetRefsForbiddenBodyErrorsItems0Source) MarshalBinary

MarshalBinary interface implementation

func (*ListImageTargetRefsForbiddenBodyErrorsItems0Source) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListImageTargetRefsForbiddenBodyErrorsItems0Source) Validate

Validate validates this list image target refs forbidden body errors items0 source

type ListImageTargetRefsForbiddenBodyJsonapi

type ListImageTargetRefsForbiddenBodyJsonapi struct {

	// Version of the JSON API specification this server supports.
	// Example: 1.0
	// Required: true
	// Pattern: ^(0|[1-9]\d*)\.(0|[1-9]\d*)$
	Version *string `json:"version"`
}

ListImageTargetRefsForbiddenBodyJsonapi list image target refs forbidden body jsonapi // Example: {"version":"1.0"} swagger:model ListImageTargetRefsForbiddenBodyJsonapi

func (*ListImageTargetRefsForbiddenBodyJsonapi) ContextValidate

ContextValidate validates this list image target refs forbidden body jsonapi based on context it is used

func (*ListImageTargetRefsForbiddenBodyJsonapi) MarshalBinary

func (o *ListImageTargetRefsForbiddenBodyJsonapi) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListImageTargetRefsForbiddenBodyJsonapi) UnmarshalBinary

func (o *ListImageTargetRefsForbiddenBodyJsonapi) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListImageTargetRefsForbiddenBodyJsonapi) Validate

Validate validates this list image target refs forbidden body jsonapi

type ListImageTargetRefsInternalServerError

type ListImageTargetRefsInternalServerError struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *ListImageTargetRefsInternalServerErrorBody
}

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

Internal Server Error: An error was encountered while attempting to process the request.

func NewListImageTargetRefsInternalServerError

func NewListImageTargetRefsInternalServerError() *ListImageTargetRefsInternalServerError

NewListImageTargetRefsInternalServerError creates a ListImageTargetRefsInternalServerError with default headers values

func (*ListImageTargetRefsInternalServerError) Code

Code gets the status code for the list image target refs internal server error response

func (*ListImageTargetRefsInternalServerError) Error

func (*ListImageTargetRefsInternalServerError) GetPayload

func (*ListImageTargetRefsInternalServerError) IsClientError

func (o *ListImageTargetRefsInternalServerError) IsClientError() bool

IsClientError returns true when this list image target refs internal server error response has a 4xx status code

func (*ListImageTargetRefsInternalServerError) IsCode

IsCode returns true when this list image target refs internal server error response a status code equal to that given

func (*ListImageTargetRefsInternalServerError) IsRedirect

IsRedirect returns true when this list image target refs internal server error response has a 3xx status code

func (*ListImageTargetRefsInternalServerError) IsServerError

func (o *ListImageTargetRefsInternalServerError) IsServerError() bool

IsServerError returns true when this list image target refs internal server error response has a 5xx status code

func (*ListImageTargetRefsInternalServerError) IsSuccess

IsSuccess returns true when this list image target refs internal server error response has a 2xx status code

func (*ListImageTargetRefsInternalServerError) String

type ListImageTargetRefsInternalServerErrorBody

type ListImageTargetRefsInternalServerErrorBody struct {

	// errors
	// Example: [{"detail":"Permission denied for this resource","status":"403"}]
	// Required: true
	// Min Items: 1
	Errors []*ListImageTargetRefsInternalServerErrorBodyErrorsItems0 `json:"errors"`

	// jsonapi
	// Required: true
	Jsonapi *ListImageTargetRefsInternalServerErrorBodyJsonapi `json:"jsonapi"`
}

ListImageTargetRefsInternalServerErrorBody list image target refs internal server error body // Example: {"errors":[{"detail":"Permission denied for this resource","status":"403"}],"jsonapi":{"version":"1.0"}} swagger:model ListImageTargetRefsInternalServerErrorBody

func (*ListImageTargetRefsInternalServerErrorBody) ContextValidate

ContextValidate validate this list image target refs internal server error body based on the context it is used

func (*ListImageTargetRefsInternalServerErrorBody) MarshalBinary

func (o *ListImageTargetRefsInternalServerErrorBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListImageTargetRefsInternalServerErrorBody) UnmarshalBinary

func (o *ListImageTargetRefsInternalServerErrorBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListImageTargetRefsInternalServerErrorBody) Validate

Validate validates this list image target refs internal server error body

type ListImageTargetRefsInternalServerErrorBodyErrorsItems0

type ListImageTargetRefsInternalServerErrorBodyErrorsItems0 struct {

	// An application-specific error code, expressed as a string value.
	// Example: entity-not-found
	Code string `json:"code,omitempty"`

	// A human-readable explanation specific to this occurrence of the problem.
	// Example: The request was missing these required fields: ...
	// Required: true
	Detail *string `json:"detail"`

	// A unique identifier for this particular occurrence of the problem.
	// Example: f16c31b5-6129-4571-add8-d589da9be524
	// Format: uuid
	ID strfmt.UUID `json:"id,omitempty"`

	// links
	Links *ListImageTargetRefsInternalServerErrorBodyErrorsItems0Links `json:"links,omitempty"`

	// meta
	// Example: {"key":"value"}
	Meta interface{} `json:"meta,omitempty"`

	// source
	Source *ListImageTargetRefsInternalServerErrorBodyErrorsItems0Source `json:"source,omitempty"`

	// The HTTP status code applicable to this problem, expressed as a string value.
	// Example: 400
	// Required: true
	// Pattern: ^[45]\d\d$
	Status *string `json:"status"`

	// A short, human-readable summary of the problem that SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization.
	// Example: Bad request
	Title string `json:"title,omitempty"`
}

ListImageTargetRefsInternalServerErrorBodyErrorsItems0 list image target refs internal server error body errors items0 // Example: {"detail":"Not Found","status":"404"} swagger:model ListImageTargetRefsInternalServerErrorBodyErrorsItems0

func (*ListImageTargetRefsInternalServerErrorBodyErrorsItems0) ContextValidate

ContextValidate validate this list image target refs internal server error body errors items0 based on the context it is used

func (*ListImageTargetRefsInternalServerErrorBodyErrorsItems0) MarshalBinary

MarshalBinary interface implementation

func (*ListImageTargetRefsInternalServerErrorBodyErrorsItems0) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListImageTargetRefsInternalServerErrorBodyErrorsItems0) Validate

Validate validates this list image target refs internal server error body errors items0

type ListImageTargetRefsInternalServerErrorBodyErrorsItems0Links struct {

	// about
	// Example: https://example.com/api/resource
	About interface{} `json:"about,omitempty"`
}

ListImageTargetRefsInternalServerErrorBodyErrorsItems0Links A link that leads to further details about this particular occurrance of the problem. // Example: {"about":"https://example.com/about_this_error"} swagger:model ListImageTargetRefsInternalServerErrorBodyErrorsItems0Links

func (*ListImageTargetRefsInternalServerErrorBodyErrorsItems0Links) ContextValidate

ContextValidate validates this list image target refs internal server error body errors items0 links based on context it is used

func (*ListImageTargetRefsInternalServerErrorBodyErrorsItems0Links) MarshalBinary

MarshalBinary interface implementation

func (*ListImageTargetRefsInternalServerErrorBodyErrorsItems0Links) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListImageTargetRefsInternalServerErrorBodyErrorsItems0Links) Validate

Validate validates this list image target refs internal server error body errors items0 links

type ListImageTargetRefsInternalServerErrorBodyErrorsItems0Source

type ListImageTargetRefsInternalServerErrorBodyErrorsItems0Source struct {

	// A string indicating which URI query parameter caused the error.
	// Example: param1
	Parameter string `json:"parameter,omitempty"`

	// A JSON Pointer [RFC6901] to the associated entity in the request document.
	// Example: /data/attributes
	Pointer string `json:"pointer,omitempty"`
}

ListImageTargetRefsInternalServerErrorBodyErrorsItems0Source list image target refs internal server error body errors items0 source // Example: {"pointer":"/data/attributes"} swagger:model ListImageTargetRefsInternalServerErrorBodyErrorsItems0Source

func (*ListImageTargetRefsInternalServerErrorBodyErrorsItems0Source) ContextValidate

ContextValidate validates this list image target refs internal server error body errors items0 source based on context it is used

func (*ListImageTargetRefsInternalServerErrorBodyErrorsItems0Source) MarshalBinary

MarshalBinary interface implementation

func (*ListImageTargetRefsInternalServerErrorBodyErrorsItems0Source) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListImageTargetRefsInternalServerErrorBodyErrorsItems0Source) Validate

Validate validates this list image target refs internal server error body errors items0 source

type ListImageTargetRefsInternalServerErrorBodyJsonapi

type ListImageTargetRefsInternalServerErrorBodyJsonapi struct {

	// Version of the JSON API specification this server supports.
	// Example: 1.0
	// Required: true
	// Pattern: ^(0|[1-9]\d*)\.(0|[1-9]\d*)$
	Version *string `json:"version"`
}

ListImageTargetRefsInternalServerErrorBodyJsonapi list image target refs internal server error body jsonapi // Example: {"version":"1.0"} swagger:model ListImageTargetRefsInternalServerErrorBodyJsonapi

func (*ListImageTargetRefsInternalServerErrorBodyJsonapi) ContextValidate

ContextValidate validates this list image target refs internal server error body jsonapi based on context it is used

func (*ListImageTargetRefsInternalServerErrorBodyJsonapi) MarshalBinary

MarshalBinary interface implementation

func (*ListImageTargetRefsInternalServerErrorBodyJsonapi) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListImageTargetRefsInternalServerErrorBodyJsonapi) Validate

Validate validates this list image target refs internal server error body jsonapi

type ListImageTargetRefsNotFound

type ListImageTargetRefsNotFound struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *ListImageTargetRefsNotFoundBody
}

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

Not Found: The resource being operated on could not be found.

func NewListImageTargetRefsNotFound

func NewListImageTargetRefsNotFound() *ListImageTargetRefsNotFound

NewListImageTargetRefsNotFound creates a ListImageTargetRefsNotFound with default headers values

func (*ListImageTargetRefsNotFound) Code

func (o *ListImageTargetRefsNotFound) Code() int

Code gets the status code for the list image target refs not found response

func (*ListImageTargetRefsNotFound) Error

func (*ListImageTargetRefsNotFound) GetPayload

func (*ListImageTargetRefsNotFound) IsClientError

func (o *ListImageTargetRefsNotFound) IsClientError() bool

IsClientError returns true when this list image target refs not found response has a 4xx status code

func (*ListImageTargetRefsNotFound) IsCode

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

IsCode returns true when this list image target refs not found response a status code equal to that given

func (*ListImageTargetRefsNotFound) IsRedirect

func (o *ListImageTargetRefsNotFound) IsRedirect() bool

IsRedirect returns true when this list image target refs not found response has a 3xx status code

func (*ListImageTargetRefsNotFound) IsServerError

func (o *ListImageTargetRefsNotFound) IsServerError() bool

IsServerError returns true when this list image target refs not found response has a 5xx status code

func (*ListImageTargetRefsNotFound) IsSuccess

func (o *ListImageTargetRefsNotFound) IsSuccess() bool

IsSuccess returns true when this list image target refs not found response has a 2xx status code

func (*ListImageTargetRefsNotFound) String

func (o *ListImageTargetRefsNotFound) String() string

type ListImageTargetRefsNotFoundBody

type ListImageTargetRefsNotFoundBody struct {

	// errors
	// Example: [{"detail":"Permission denied for this resource","status":"403"}]
	// Required: true
	// Min Items: 1
	Errors []*ListImageTargetRefsNotFoundBodyErrorsItems0 `json:"errors"`

	// jsonapi
	// Required: true
	Jsonapi *ListImageTargetRefsNotFoundBodyJsonapi `json:"jsonapi"`
}

ListImageTargetRefsNotFoundBody list image target refs not found body // Example: {"errors":[{"detail":"Permission denied for this resource","status":"403"}],"jsonapi":{"version":"1.0"}} swagger:model ListImageTargetRefsNotFoundBody

func (*ListImageTargetRefsNotFoundBody) ContextValidate

func (o *ListImageTargetRefsNotFoundBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this list image target refs not found body based on the context it is used

func (*ListImageTargetRefsNotFoundBody) MarshalBinary

func (o *ListImageTargetRefsNotFoundBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListImageTargetRefsNotFoundBody) UnmarshalBinary

func (o *ListImageTargetRefsNotFoundBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListImageTargetRefsNotFoundBody) Validate

Validate validates this list image target refs not found body

type ListImageTargetRefsNotFoundBodyErrorsItems0

type ListImageTargetRefsNotFoundBodyErrorsItems0 struct {

	// An application-specific error code, expressed as a string value.
	// Example: entity-not-found
	Code string `json:"code,omitempty"`

	// A human-readable explanation specific to this occurrence of the problem.
	// Example: The request was missing these required fields: ...
	// Required: true
	Detail *string `json:"detail"`

	// A unique identifier for this particular occurrence of the problem.
	// Example: f16c31b5-6129-4571-add8-d589da9be524
	// Format: uuid
	ID strfmt.UUID `json:"id,omitempty"`

	// links
	Links *ListImageTargetRefsNotFoundBodyErrorsItems0Links `json:"links,omitempty"`

	// meta
	// Example: {"key":"value"}
	Meta interface{} `json:"meta,omitempty"`

	// source
	Source *ListImageTargetRefsNotFoundBodyErrorsItems0Source `json:"source,omitempty"`

	// The HTTP status code applicable to this problem, expressed as a string value.
	// Example: 400
	// Required: true
	// Pattern: ^[45]\d\d$
	Status *string `json:"status"`

	// A short, human-readable summary of the problem that SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization.
	// Example: Bad request
	Title string `json:"title,omitempty"`
}

ListImageTargetRefsNotFoundBodyErrorsItems0 list image target refs not found body errors items0 // Example: {"detail":"Not Found","status":"404"} swagger:model ListImageTargetRefsNotFoundBodyErrorsItems0

func (*ListImageTargetRefsNotFoundBodyErrorsItems0) ContextValidate

ContextValidate validate this list image target refs not found body errors items0 based on the context it is used

func (*ListImageTargetRefsNotFoundBodyErrorsItems0) MarshalBinary

func (o *ListImageTargetRefsNotFoundBodyErrorsItems0) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListImageTargetRefsNotFoundBodyErrorsItems0) UnmarshalBinary

func (o *ListImageTargetRefsNotFoundBodyErrorsItems0) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListImageTargetRefsNotFoundBodyErrorsItems0) Validate

Validate validates this list image target refs not found body errors items0

type ListImageTargetRefsNotFoundBodyErrorsItems0Links struct {

	// about
	// Example: https://example.com/api/resource
	About interface{} `json:"about,omitempty"`
}

ListImageTargetRefsNotFoundBodyErrorsItems0Links A link that leads to further details about this particular occurrance of the problem. // Example: {"about":"https://example.com/about_this_error"} swagger:model ListImageTargetRefsNotFoundBodyErrorsItems0Links

func (*ListImageTargetRefsNotFoundBodyErrorsItems0Links) ContextValidate

ContextValidate validates this list image target refs not found body errors items0 links based on context it is used

func (*ListImageTargetRefsNotFoundBodyErrorsItems0Links) MarshalBinary

MarshalBinary interface implementation

func (*ListImageTargetRefsNotFoundBodyErrorsItems0Links) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListImageTargetRefsNotFoundBodyErrorsItems0Links) Validate

Validate validates this list image target refs not found body errors items0 links

type ListImageTargetRefsNotFoundBodyErrorsItems0Source

type ListImageTargetRefsNotFoundBodyErrorsItems0Source struct {

	// A string indicating which URI query parameter caused the error.
	// Example: param1
	Parameter string `json:"parameter,omitempty"`

	// A JSON Pointer [RFC6901] to the associated entity in the request document.
	// Example: /data/attributes
	Pointer string `json:"pointer,omitempty"`
}

ListImageTargetRefsNotFoundBodyErrorsItems0Source list image target refs not found body errors items0 source // Example: {"pointer":"/data/attributes"} swagger:model ListImageTargetRefsNotFoundBodyErrorsItems0Source

func (*ListImageTargetRefsNotFoundBodyErrorsItems0Source) ContextValidate

ContextValidate validates this list image target refs not found body errors items0 source based on context it is used

func (*ListImageTargetRefsNotFoundBodyErrorsItems0Source) MarshalBinary

MarshalBinary interface implementation

func (*ListImageTargetRefsNotFoundBodyErrorsItems0Source) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListImageTargetRefsNotFoundBodyErrorsItems0Source) Validate

Validate validates this list image target refs not found body errors items0 source

type ListImageTargetRefsNotFoundBodyJsonapi

type ListImageTargetRefsNotFoundBodyJsonapi struct {

	// Version of the JSON API specification this server supports.
	// Example: 1.0
	// Required: true
	// Pattern: ^(0|[1-9]\d*)\.(0|[1-9]\d*)$
	Version *string `json:"version"`
}

ListImageTargetRefsNotFoundBodyJsonapi list image target refs not found body jsonapi // Example: {"version":"1.0"} swagger:model ListImageTargetRefsNotFoundBodyJsonapi

func (*ListImageTargetRefsNotFoundBodyJsonapi) ContextValidate

ContextValidate validates this list image target refs not found body jsonapi based on context it is used

func (*ListImageTargetRefsNotFoundBodyJsonapi) MarshalBinary

func (o *ListImageTargetRefsNotFoundBodyJsonapi) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListImageTargetRefsNotFoundBodyJsonapi) UnmarshalBinary

func (o *ListImageTargetRefsNotFoundBodyJsonapi) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListImageTargetRefsNotFoundBodyJsonapi) Validate

Validate validates this list image target refs not found body jsonapi

type ListImageTargetRefsOK

type ListImageTargetRefsOK struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *ListImageTargetRefsOKBody
}

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

Returns a list of image target references for a container image

func NewListImageTargetRefsOK

func NewListImageTargetRefsOK() *ListImageTargetRefsOK

NewListImageTargetRefsOK creates a ListImageTargetRefsOK with default headers values

func (*ListImageTargetRefsOK) Code

func (o *ListImageTargetRefsOK) Code() int

Code gets the status code for the list image target refs o k response

func (*ListImageTargetRefsOK) Error

func (o *ListImageTargetRefsOK) Error() string

func (*ListImageTargetRefsOK) GetPayload

func (*ListImageTargetRefsOK) IsClientError

func (o *ListImageTargetRefsOK) IsClientError() bool

IsClientError returns true when this list image target refs o k response has a 4xx status code

func (*ListImageTargetRefsOK) IsCode

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

IsCode returns true when this list image target refs o k response a status code equal to that given

func (*ListImageTargetRefsOK) IsRedirect

func (o *ListImageTargetRefsOK) IsRedirect() bool

IsRedirect returns true when this list image target refs o k response has a 3xx status code

func (*ListImageTargetRefsOK) IsServerError

func (o *ListImageTargetRefsOK) IsServerError() bool

IsServerError returns true when this list image target refs o k response has a 5xx status code

func (*ListImageTargetRefsOK) IsSuccess

func (o *ListImageTargetRefsOK) IsSuccess() bool

IsSuccess returns true when this list image target refs o k response has a 2xx status code

func (*ListImageTargetRefsOK) String

func (o *ListImageTargetRefsOK) String() string

type ListImageTargetRefsOKBody

type ListImageTargetRefsOKBody struct {

	// data
	Data []*models.ImageTargetRef `json:"data"`

	// jsonapi
	Jsonapi *models.JSONAPI `json:"jsonapi,omitempty"`

	// links
	Links *models.PaginatedLinks `json:"links,omitempty"`
}

ListImageTargetRefsOKBody list image target refs o k body swagger:model ListImageTargetRefsOKBody

func (*ListImageTargetRefsOKBody) ContextValidate

func (o *ListImageTargetRefsOKBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this list image target refs o k body based on the context it is used

func (*ListImageTargetRefsOKBody) MarshalBinary

func (o *ListImageTargetRefsOKBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListImageTargetRefsOKBody) UnmarshalBinary

func (o *ListImageTargetRefsOKBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListImageTargetRefsOKBody) Validate

func (o *ListImageTargetRefsOKBody) Validate(formats strfmt.Registry) error

Validate validates this list image target refs o k body

type ListImageTargetRefsParams

type ListImageTargetRefsParams struct {

	/* EndingBefore.

	   Return the page of results immediately before this cursor
	*/
	EndingBefore *string

	/* ImageID.

	   Image ID

	   Format: uri
	*/
	ImageID strfmt.URI

	/* Limit.

	   Number of results to return per page

	   Format: int32
	   Default: 10
	*/
	Limit *int32

	/* OrgID.

	   Org ID

	   Format: uuid
	*/
	OrgID strfmt.UUID

	/* StartingAfter.

	   Return the page of results immediately after this cursor
	*/
	StartingAfter *string

	/* Version.

	   The requested version of the endpoint to process the request
	*/
	Version string

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

ListImageTargetRefsParams contains all the parameters to send to the API endpoint

for the list image target refs operation.

Typically these are written to a http.Request.

func NewListImageTargetRefsParams

func NewListImageTargetRefsParams() *ListImageTargetRefsParams

NewListImageTargetRefsParams creates a new ListImageTargetRefsParams 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 NewListImageTargetRefsParamsWithContext

func NewListImageTargetRefsParamsWithContext(ctx context.Context) *ListImageTargetRefsParams

NewListImageTargetRefsParamsWithContext creates a new ListImageTargetRefsParams object with the ability to set a context for a request.

func NewListImageTargetRefsParamsWithHTTPClient

func NewListImageTargetRefsParamsWithHTTPClient(client *http.Client) *ListImageTargetRefsParams

NewListImageTargetRefsParamsWithHTTPClient creates a new ListImageTargetRefsParams object with the ability to set a custom HTTPClient for a request.

func NewListImageTargetRefsParamsWithTimeout

func NewListImageTargetRefsParamsWithTimeout(timeout time.Duration) *ListImageTargetRefsParams

NewListImageTargetRefsParamsWithTimeout creates a new ListImageTargetRefsParams object with the ability to set a timeout on a request.

func (*ListImageTargetRefsParams) SetContext

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

SetContext adds the context to the list image target refs params

func (*ListImageTargetRefsParams) SetDefaults

func (o *ListImageTargetRefsParams) SetDefaults()

SetDefaults hydrates default values in the list image target refs params (not the query body).

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

func (*ListImageTargetRefsParams) SetEndingBefore

func (o *ListImageTargetRefsParams) SetEndingBefore(endingBefore *string)

SetEndingBefore adds the endingBefore to the list image target refs params

func (*ListImageTargetRefsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the list image target refs params

func (*ListImageTargetRefsParams) SetImageID

func (o *ListImageTargetRefsParams) SetImageID(imageID strfmt.URI)

SetImageID adds the imageId to the list image target refs params

func (*ListImageTargetRefsParams) SetLimit

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

SetLimit adds the limit to the list image target refs params

func (*ListImageTargetRefsParams) SetOrgID

func (o *ListImageTargetRefsParams) SetOrgID(orgID strfmt.UUID)

SetOrgID adds the orgId to the list image target refs params

func (*ListImageTargetRefsParams) SetStartingAfter

func (o *ListImageTargetRefsParams) SetStartingAfter(startingAfter *string)

SetStartingAfter adds the startingAfter to the list image target refs params

func (*ListImageTargetRefsParams) SetTimeout

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

SetTimeout adds the timeout to the list image target refs params

func (*ListImageTargetRefsParams) SetVersion

func (o *ListImageTargetRefsParams) SetVersion(version string)

SetVersion adds the version to the list image target refs params

func (*ListImageTargetRefsParams) WithContext

WithContext adds the context to the list image target refs params

func (*ListImageTargetRefsParams) WithDefaults

WithDefaults hydrates default values in the list image target refs params (not the query body).

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

func (*ListImageTargetRefsParams) WithEndingBefore

func (o *ListImageTargetRefsParams) WithEndingBefore(endingBefore *string) *ListImageTargetRefsParams

WithEndingBefore adds the endingBefore to the list image target refs params

func (*ListImageTargetRefsParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the list image target refs params

func (*ListImageTargetRefsParams) WithImageID

WithImageID adds the imageID to the list image target refs params

func (*ListImageTargetRefsParams) WithLimit

WithLimit adds the limit to the list image target refs params

func (*ListImageTargetRefsParams) WithOrgID

WithOrgID adds the orgID to the list image target refs params

func (*ListImageTargetRefsParams) WithStartingAfter

func (o *ListImageTargetRefsParams) WithStartingAfter(startingAfter *string) *ListImageTargetRefsParams

WithStartingAfter adds the startingAfter to the list image target refs params

func (*ListImageTargetRefsParams) WithTimeout

WithTimeout adds the timeout to the list image target refs params

func (*ListImageTargetRefsParams) WithVersion

WithVersion adds the version to the list image target refs params

func (*ListImageTargetRefsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ListImageTargetRefsReader

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

ListImageTargetRefsReader is a Reader for the ListImageTargetRefs structure.

func (*ListImageTargetRefsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ListImageTargetRefsUnauthorized

type ListImageTargetRefsUnauthorized struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *ListImageTargetRefsUnauthorizedBody
}

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

Unauthorized: the request requires an authentication token.

func NewListImageTargetRefsUnauthorized

func NewListImageTargetRefsUnauthorized() *ListImageTargetRefsUnauthorized

NewListImageTargetRefsUnauthorized creates a ListImageTargetRefsUnauthorized with default headers values

func (*ListImageTargetRefsUnauthorized) Code

Code gets the status code for the list image target refs unauthorized response

func (*ListImageTargetRefsUnauthorized) Error

func (*ListImageTargetRefsUnauthorized) GetPayload

func (*ListImageTargetRefsUnauthorized) IsClientError

func (o *ListImageTargetRefsUnauthorized) IsClientError() bool

IsClientError returns true when this list image target refs unauthorized response has a 4xx status code

func (*ListImageTargetRefsUnauthorized) IsCode

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

IsCode returns true when this list image target refs unauthorized response a status code equal to that given

func (*ListImageTargetRefsUnauthorized) IsRedirect

func (o *ListImageTargetRefsUnauthorized) IsRedirect() bool

IsRedirect returns true when this list image target refs unauthorized response has a 3xx status code

func (*ListImageTargetRefsUnauthorized) IsServerError

func (o *ListImageTargetRefsUnauthorized) IsServerError() bool

IsServerError returns true when this list image target refs unauthorized response has a 5xx status code

func (*ListImageTargetRefsUnauthorized) IsSuccess

func (o *ListImageTargetRefsUnauthorized) IsSuccess() bool

IsSuccess returns true when this list image target refs unauthorized response has a 2xx status code

func (*ListImageTargetRefsUnauthorized) String

type ListImageTargetRefsUnauthorizedBody

type ListImageTargetRefsUnauthorizedBody struct {

	// errors
	// Example: [{"detail":"Permission denied for this resource","status":"403"}]
	// Required: true
	// Min Items: 1
	Errors []*ListImageTargetRefsUnauthorizedBodyErrorsItems0 `json:"errors"`

	// jsonapi
	// Required: true
	Jsonapi *ListImageTargetRefsUnauthorizedBodyJsonapi `json:"jsonapi"`
}

ListImageTargetRefsUnauthorizedBody list image target refs unauthorized body // Example: {"errors":[{"detail":"Permission denied for this resource","status":"403"}],"jsonapi":{"version":"1.0"}} swagger:model ListImageTargetRefsUnauthorizedBody

func (*ListImageTargetRefsUnauthorizedBody) ContextValidate

func (o *ListImageTargetRefsUnauthorizedBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this list image target refs unauthorized body based on the context it is used

func (*ListImageTargetRefsUnauthorizedBody) MarshalBinary

func (o *ListImageTargetRefsUnauthorizedBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListImageTargetRefsUnauthorizedBody) UnmarshalBinary

func (o *ListImageTargetRefsUnauthorizedBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListImageTargetRefsUnauthorizedBody) Validate

Validate validates this list image target refs unauthorized body

type ListImageTargetRefsUnauthorizedBodyErrorsItems0

type ListImageTargetRefsUnauthorizedBodyErrorsItems0 struct {

	// An application-specific error code, expressed as a string value.
	// Example: entity-not-found
	Code string `json:"code,omitempty"`

	// A human-readable explanation specific to this occurrence of the problem.
	// Example: The request was missing these required fields: ...
	// Required: true
	Detail *string `json:"detail"`

	// A unique identifier for this particular occurrence of the problem.
	// Example: f16c31b5-6129-4571-add8-d589da9be524
	// Format: uuid
	ID strfmt.UUID `json:"id,omitempty"`

	// links
	Links *ListImageTargetRefsUnauthorizedBodyErrorsItems0Links `json:"links,omitempty"`

	// meta
	// Example: {"key":"value"}
	Meta interface{} `json:"meta,omitempty"`

	// source
	Source *ListImageTargetRefsUnauthorizedBodyErrorsItems0Source `json:"source,omitempty"`

	// The HTTP status code applicable to this problem, expressed as a string value.
	// Example: 400
	// Required: true
	// Pattern: ^[45]\d\d$
	Status *string `json:"status"`

	// A short, human-readable summary of the problem that SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization.
	// Example: Bad request
	Title string `json:"title,omitempty"`
}

ListImageTargetRefsUnauthorizedBodyErrorsItems0 list image target refs unauthorized body errors items0 // Example: {"detail":"Not Found","status":"404"} swagger:model ListImageTargetRefsUnauthorizedBodyErrorsItems0

func (*ListImageTargetRefsUnauthorizedBodyErrorsItems0) ContextValidate

ContextValidate validate this list image target refs unauthorized body errors items0 based on the context it is used

func (*ListImageTargetRefsUnauthorizedBodyErrorsItems0) MarshalBinary

MarshalBinary interface implementation

func (*ListImageTargetRefsUnauthorizedBodyErrorsItems0) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListImageTargetRefsUnauthorizedBodyErrorsItems0) Validate

Validate validates this list image target refs unauthorized body errors items0

type ListImageTargetRefsUnauthorizedBodyErrorsItems0Links struct {

	// about
	// Example: https://example.com/api/resource
	About interface{} `json:"about,omitempty"`
}

ListImageTargetRefsUnauthorizedBodyErrorsItems0Links A link that leads to further details about this particular occurrance of the problem. // Example: {"about":"https://example.com/about_this_error"} swagger:model ListImageTargetRefsUnauthorizedBodyErrorsItems0Links

func (*ListImageTargetRefsUnauthorizedBodyErrorsItems0Links) ContextValidate

ContextValidate validates this list image target refs unauthorized body errors items0 links based on context it is used

func (*ListImageTargetRefsUnauthorizedBodyErrorsItems0Links) MarshalBinary

MarshalBinary interface implementation

func (*ListImageTargetRefsUnauthorizedBodyErrorsItems0Links) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListImageTargetRefsUnauthorizedBodyErrorsItems0Links) Validate

Validate validates this list image target refs unauthorized body errors items0 links

type ListImageTargetRefsUnauthorizedBodyErrorsItems0Source

type ListImageTargetRefsUnauthorizedBodyErrorsItems0Source struct {

	// A string indicating which URI query parameter caused the error.
	// Example: param1
	Parameter string `json:"parameter,omitempty"`

	// A JSON Pointer [RFC6901] to the associated entity in the request document.
	// Example: /data/attributes
	Pointer string `json:"pointer,omitempty"`
}

ListImageTargetRefsUnauthorizedBodyErrorsItems0Source list image target refs unauthorized body errors items0 source // Example: {"pointer":"/data/attributes"} swagger:model ListImageTargetRefsUnauthorizedBodyErrorsItems0Source

func (*ListImageTargetRefsUnauthorizedBodyErrorsItems0Source) ContextValidate

ContextValidate validates this list image target refs unauthorized body errors items0 source based on context it is used

func (*ListImageTargetRefsUnauthorizedBodyErrorsItems0Source) MarshalBinary

MarshalBinary interface implementation

func (*ListImageTargetRefsUnauthorizedBodyErrorsItems0Source) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListImageTargetRefsUnauthorizedBodyErrorsItems0Source) Validate

Validate validates this list image target refs unauthorized body errors items0 source

type ListImageTargetRefsUnauthorizedBodyJsonapi

type ListImageTargetRefsUnauthorizedBodyJsonapi struct {

	// Version of the JSON API specification this server supports.
	// Example: 1.0
	// Required: true
	// Pattern: ^(0|[1-9]\d*)\.(0|[1-9]\d*)$
	Version *string `json:"version"`
}

ListImageTargetRefsUnauthorizedBodyJsonapi list image target refs unauthorized body jsonapi // Example: {"version":"1.0"} swagger:model ListImageTargetRefsUnauthorizedBodyJsonapi

func (*ListImageTargetRefsUnauthorizedBodyJsonapi) ContextValidate

ContextValidate validates this list image target refs unauthorized body jsonapi based on context it is used

func (*ListImageTargetRefsUnauthorizedBodyJsonapi) MarshalBinary

func (o *ListImageTargetRefsUnauthorizedBodyJsonapi) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListImageTargetRefsUnauthorizedBodyJsonapi) UnmarshalBinary

func (o *ListImageTargetRefsUnauthorizedBodyJsonapi) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListImageTargetRefsUnauthorizedBodyJsonapi) Validate

Validate validates this list image target refs unauthorized body jsonapi

Jump to

Keyboard shortcuts

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