images

package
v0.73.0 Latest Latest
Warning

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

Go to latest
Published: Sep 6, 2024 License: MIT Imports: 15 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 images API

func (*Client) ImageGet deprecated

Deprecated: 2022-08-10 - Use ImageGetShort instead.

ImageGet get image details. Required Permission: ADMIN:NAMESPACE:{namespace}:AMS:IMAGE [READ]

func (*Client) ImageGetShort

func (a *Client) ImageGetShort(params *ImageGetParams, authInfo runtime.ClientAuthInfoWriter) (*ImageGetOK, error)

ImageGetShort get image details. Required Permission: ADMIN:NAMESPACE:{namespace}:AMS:IMAGE [READ]

func (*Client) ImageList deprecated

Deprecated: 2022-08-10 - Use ImageListShort instead.

ImageList get a list of existing images Returns images which exist (uploaded, uploading, or building) in the linked account. This route fails if no account is linked

Required Permission: ADMIN:NAMESPACE:{namespace}:AMS:IMAGE [READ]

func (*Client) ImageListShort

func (a *Client) ImageListShort(params *ImageListParams, authInfo runtime.ClientAuthInfoWriter) (*ImageListOK, error)

ImageListShort get a list of existing images Returns images which exist (uploaded, uploading, or building) in the linked account. This route fails if no account is linked

Required Permission: ADMIN:NAMESPACE:{namespace}:AMS:IMAGE [READ]

func (*Client) ImageMarkForDeletion deprecated added in v0.71.0

Deprecated: 2022-08-10 - Use ImageMarkForDeletionShort instead.

ImageMarkForDeletion mark the image for deletion Marks an image for deletion. The image will stop being available for fleets and will eventually be deleted.

Required Permission: ADMIN:NAMESPACE:{namespace}:AMS:IMAGE [DELETE]

func (*Client) ImageMarkForDeletionShort added in v0.71.0

func (a *Client) ImageMarkForDeletionShort(params *ImageMarkForDeletionParams, authInfo runtime.ClientAuthInfoWriter) (*ImageMarkForDeletionAccepted, error)

ImageMarkForDeletionShort mark the image for deletion Marks an image for deletion. The image will stop being available for fleets and will eventually be deleted.

Required Permission: ADMIN:NAMESPACE:{namespace}:AMS:IMAGE [DELETE]

func (*Client) ImagePatch deprecated

Deprecated: 2022-08-10 - Use ImagePatchShort instead.

ImagePatch edit the image This allows editing of the image name, toggling `IsProtected`, or adding & removal of tags

Required Permission: ADMIN:NAMESPACE:{namespace}:AMS:IMAGE [UPDATE]

func (*Client) ImagePatchShort

func (a *Client) ImagePatchShort(params *ImagePatchParams, authInfo runtime.ClientAuthInfoWriter) (*ImagePatchOK, error)

ImagePatchShort edit the image This allows editing of the image name, toggling `IsProtected`, or adding & removal of tags

Required Permission: ADMIN:NAMESPACE:{namespace}:AMS:IMAGE [UPDATE]

func (*Client) ImageUnmarkForDeletion deprecated added in v0.71.0

Deprecated: 2022-08-10 - Use ImageUnmarkForDeletionShort instead.

ImageUnmarkForDeletion unmarks the image for deletion Unmarks an image for deletion. The image will be available for fleets.

Required Permission: ADMIN:NAMESPACE:{namespace}:AMS:IMAGE [DELETE]

func (*Client) ImageUnmarkForDeletionShort added in v0.71.0

func (a *Client) ImageUnmarkForDeletionShort(params *ImageUnmarkForDeletionParams, authInfo runtime.ClientAuthInfoWriter) (*ImageUnmarkForDeletionAccepted, error)

ImageUnmarkForDeletionShort unmarks the image for deletion Unmarks an image for deletion. The image will be available for fleets.

Required Permission: ADMIN:NAMESPACE:{namespace}:AMS:IMAGE [DELETE]

func (*Client) ImagesStorage deprecated added in v0.72.0

Deprecated: 2022-08-10 - Use ImagesStorageShort instead.

ImagesStorage get current usage for images storage Returns information regarding the account's usage for images storage including the free tier quota

Required Permission: ADMIN:NAMESPACE:{namespace}:AMS:IMAGE [READ]

func (*Client) ImagesStorageShort added in v0.72.0

func (a *Client) ImagesStorageShort(params *ImagesStorageParams, authInfo runtime.ClientAuthInfoWriter) (*ImagesStorageOK, error)

ImagesStorageShort get current usage for images storage Returns information regarding the account's usage for images storage including the free tier quota

Required Permission: ADMIN:NAMESPACE:{namespace}:AMS:IMAGE [READ]

func (*Client) SetTransport

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

SetTransport changes the transport on the client

type ClientService

type ClientService interface {
	ImageList(params *ImageListParams, authInfo runtime.ClientAuthInfoWriter) (*ImageListOK, *ImageListUnauthorized, *ImageListForbidden, *ImageListNotFound, *ImageListInternalServerError, error)
	ImageListShort(params *ImageListParams, authInfo runtime.ClientAuthInfoWriter) (*ImageListOK, error)
	ImagesStorage(params *ImagesStorageParams, authInfo runtime.ClientAuthInfoWriter) (*ImagesStorageOK, *ImagesStorageUnauthorized, *ImagesStorageForbidden, *ImagesStorageNotFound, *ImagesStorageInternalServerError, error)
	ImagesStorageShort(params *ImagesStorageParams, authInfo runtime.ClientAuthInfoWriter) (*ImagesStorageOK, error)
	ImageGet(params *ImageGetParams, authInfo runtime.ClientAuthInfoWriter) (*ImageGetOK, *ImageGetUnauthorized, *ImageGetForbidden, *ImageGetNotFound, *ImageGetInternalServerError, error)
	ImageGetShort(params *ImageGetParams, authInfo runtime.ClientAuthInfoWriter) (*ImageGetOK, error)
	ImageMarkForDeletion(params *ImageMarkForDeletionParams, authInfo runtime.ClientAuthInfoWriter) (*ImageMarkForDeletionAccepted, *ImageMarkForDeletionUnauthorized, *ImageMarkForDeletionForbidden, *ImageMarkForDeletionNotFound, *ImageMarkForDeletionPreconditionFailed, *ImageMarkForDeletionInternalServerError, error)
	ImageMarkForDeletionShort(params *ImageMarkForDeletionParams, authInfo runtime.ClientAuthInfoWriter) (*ImageMarkForDeletionAccepted, error)
	ImagePatch(params *ImagePatchParams, authInfo runtime.ClientAuthInfoWriter) (*ImagePatchOK, *ImagePatchUnauthorized, *ImagePatchForbidden, *ImagePatchNotFound, *ImagePatchInternalServerError, error)
	ImagePatchShort(params *ImagePatchParams, authInfo runtime.ClientAuthInfoWriter) (*ImagePatchOK, error)
	ImageUnmarkForDeletion(params *ImageUnmarkForDeletionParams, authInfo runtime.ClientAuthInfoWriter) (*ImageUnmarkForDeletionAccepted, *ImageUnmarkForDeletionUnauthorized, *ImageUnmarkForDeletionForbidden, *ImageUnmarkForDeletionNotFound, *ImageUnmarkForDeletionPreconditionFailed, *ImageUnmarkForDeletionInternalServerError, error)
	ImageUnmarkForDeletionShort(params *ImageUnmarkForDeletionParams, authInfo runtime.ClientAuthInfoWriter) (*ImageUnmarkForDeletionAccepted, 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 images API client.

type ImageGetForbidden

type ImageGetForbidden struct {
	Payload *amsclientmodels.ResponseErrorResponse
}

ImageGetForbidden handles this case with default header values.

insufficient permissions

func NewImageGetForbidden

func NewImageGetForbidden() *ImageGetForbidden

NewImageGetForbidden creates a ImageGetForbidden with default headers values

func (*ImageGetForbidden) Error

func (o *ImageGetForbidden) Error() string

func (*ImageGetForbidden) GetPayload

func (*ImageGetForbidden) ToJSONString

func (o *ImageGetForbidden) ToJSONString() string

type ImageGetInternalServerError

type ImageGetInternalServerError struct {
	Payload *amsclientmodels.ResponseErrorResponse
}

ImageGetInternalServerError handles this case with default header values.

internal server error

func NewImageGetInternalServerError

func NewImageGetInternalServerError() *ImageGetInternalServerError

NewImageGetInternalServerError creates a ImageGetInternalServerError with default headers values

func (*ImageGetInternalServerError) Error

func (*ImageGetInternalServerError) GetPayload

func (*ImageGetInternalServerError) ToJSONString

func (o *ImageGetInternalServerError) ToJSONString() string

type ImageGetNotFound

type ImageGetNotFound struct {
	Payload *amsclientmodels.ResponseErrorResponse
}

ImageGetNotFound handles this case with default header values.

account not linked

func NewImageGetNotFound

func NewImageGetNotFound() *ImageGetNotFound

NewImageGetNotFound creates a ImageGetNotFound with default headers values

func (*ImageGetNotFound) Error

func (o *ImageGetNotFound) Error() string

func (*ImageGetNotFound) GetPayload

func (*ImageGetNotFound) ToJSONString

func (o *ImageGetNotFound) ToJSONString() string

type ImageGetOK

type ImageGetOK struct {
	Payload *amsclientmodels.APIImageDetails
}

ImageGetOK handles this case with default header values.

success

func NewImageGetOK

func NewImageGetOK() *ImageGetOK

NewImageGetOK creates a ImageGetOK with default headers values

func (*ImageGetOK) Error

func (o *ImageGetOK) Error() string

func (*ImageGetOK) GetPayload

func (o *ImageGetOK) GetPayload() *amsclientmodels.APIImageDetails

func (*ImageGetOK) ToJSONString

func (o *ImageGetOK) ToJSONString() string

type ImageGetParams

type ImageGetParams struct {

	/*RetryPolicy*/
	RetryPolicy *utils.Retry
	/*ImageID
	  the id of the image

	*/
	ImageID string
	/*Namespace
	  namespace of the game

	*/
	Namespace string

	AuthInfoWriter runtime.ClientAuthInfoWriter
	Context        context.Context
	HTTPClient     *http.Client

	// XFlightId is an optional parameter from this SDK
	XFlightId *string
	// contains filtered or unexported fields
}

ImageGetParams contains all the parameters to send to the API endpoint for the image get operation typically these are written to a http.Request

func NewImageGetParams

func NewImageGetParams() *ImageGetParams

NewImageGetParams creates a new ImageGetParams object with the default values initialized.

func NewImageGetParamsWithContext

func NewImageGetParamsWithContext(ctx context.Context) *ImageGetParams

NewImageGetParamsWithContext creates a new ImageGetParams object with the default values initialized, and the ability to set a context for a request

func NewImageGetParamsWithHTTPClient

func NewImageGetParamsWithHTTPClient(client *http.Client) *ImageGetParams

NewImageGetParamsWithHTTPClient creates a new ImageGetParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewImageGetParamsWithTimeout

func NewImageGetParamsWithTimeout(timeout time.Duration) *ImageGetParams

NewImageGetParamsWithTimeout creates a new ImageGetParams object with the default values initialized, and the ability to set a timeout on a request

func (*ImageGetParams) SetAuthInfoWriter

func (o *ImageGetParams) SetAuthInfoWriter(authInfoWriter runtime.ClientAuthInfoWriter)

SetAuthInfoWriter adds the authInfoWriter to the image get params

func (*ImageGetParams) SetContext

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

SetContext adds the context to the image get params

func (*ImageGetParams) SetFlightId added in v0.63.0

func (o *ImageGetParams) SetFlightId(flightId string)

SetFlightId adds the flightId as the header value for this specific endpoint

func (*ImageGetParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the image get params

func (*ImageGetParams) SetHTTPClientTransport

func (o *ImageGetParams) SetHTTPClientTransport(roundTripper http.RoundTripper)

SetHTTPClient adds the HTTPClient Transport to the image get params

func (*ImageGetParams) SetImageID

func (o *ImageGetParams) SetImageID(imageID string)

SetImageID adds the imageId to the image get params

func (*ImageGetParams) SetNamespace

func (o *ImageGetParams) SetNamespace(namespace string)

SetNamespace adds the namespace to the image get params

func (*ImageGetParams) SetTimeout

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

SetTimeout adds the timeout to the image get params

func (*ImageGetParams) WithContext

func (o *ImageGetParams) WithContext(ctx context.Context) *ImageGetParams

WithContext adds the context to the image get params

func (*ImageGetParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the image get params

func (*ImageGetParams) WithImageID

func (o *ImageGetParams) WithImageID(imageID string) *ImageGetParams

WithImageID adds the imageID to the image get params

func (*ImageGetParams) WithNamespace

func (o *ImageGetParams) WithNamespace(namespace string) *ImageGetParams

WithNamespace adds the namespace to the image get params

func (*ImageGetParams) WithTimeout

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

WithTimeout adds the timeout to the image get params

func (*ImageGetParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type ImageGetReader

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

ImageGetReader is a Reader for the ImageGet structure.

func (*ImageGetReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ImageGetUnauthorized

type ImageGetUnauthorized struct {
	Payload *amsclientmodels.ResponseErrorResponse
}

ImageGetUnauthorized handles this case with default header values.

no authorization provided

func NewImageGetUnauthorized

func NewImageGetUnauthorized() *ImageGetUnauthorized

NewImageGetUnauthorized creates a ImageGetUnauthorized with default headers values

func (*ImageGetUnauthorized) Error

func (o *ImageGetUnauthorized) Error() string

func (*ImageGetUnauthorized) GetPayload

func (*ImageGetUnauthorized) ToJSONString

func (o *ImageGetUnauthorized) ToJSONString() string

type ImageListForbidden

type ImageListForbidden struct {
	Payload *amsclientmodels.ResponseErrorResponse
}

ImageListForbidden handles this case with default header values.

insufficient permissions

func NewImageListForbidden

func NewImageListForbidden() *ImageListForbidden

NewImageListForbidden creates a ImageListForbidden with default headers values

func (*ImageListForbidden) Error

func (o *ImageListForbidden) Error() string

func (*ImageListForbidden) GetPayload

func (*ImageListForbidden) ToJSONString

func (o *ImageListForbidden) ToJSONString() string

type ImageListInternalServerError

type ImageListInternalServerError struct {
	Payload *amsclientmodels.ResponseErrorResponse
}

ImageListInternalServerError handles this case with default header values.

internal server error

func NewImageListInternalServerError

func NewImageListInternalServerError() *ImageListInternalServerError

NewImageListInternalServerError creates a ImageListInternalServerError with default headers values

func (*ImageListInternalServerError) Error

func (*ImageListInternalServerError) GetPayload

func (*ImageListInternalServerError) ToJSONString

func (o *ImageListInternalServerError) ToJSONString() string

type ImageListNotFound

type ImageListNotFound struct {
	Payload *amsclientmodels.ResponseErrorResponse
}

ImageListNotFound handles this case with default header values.

account not linked

func NewImageListNotFound

func NewImageListNotFound() *ImageListNotFound

NewImageListNotFound creates a ImageListNotFound with default headers values

func (*ImageListNotFound) Error

func (o *ImageListNotFound) Error() string

func (*ImageListNotFound) GetPayload

func (*ImageListNotFound) ToJSONString

func (o *ImageListNotFound) ToJSONString() string

type ImageListOK

type ImageListOK struct {
	Payload *amsclientmodels.APIImageList
}

ImageListOK handles this case with default header values.

success

func NewImageListOK

func NewImageListOK() *ImageListOK

NewImageListOK creates a ImageListOK with default headers values

func (*ImageListOK) Error

func (o *ImageListOK) Error() string

func (*ImageListOK) GetPayload

func (o *ImageListOK) GetPayload() *amsclientmodels.APIImageList

func (*ImageListOK) ToJSONString

func (o *ImageListOK) ToJSONString() string

type ImageListParams

type ImageListParams struct {

	/*RetryPolicy*/
	RetryPolicy *utils.Retry
	/*Namespace
	  namespace of the game

	*/
	Namespace string

	AuthInfoWriter runtime.ClientAuthInfoWriter
	Context        context.Context
	HTTPClient     *http.Client

	// XFlightId is an optional parameter from this SDK
	XFlightId *string
	// contains filtered or unexported fields
}

ImageListParams contains all the parameters to send to the API endpoint for the image list operation typically these are written to a http.Request

func NewImageListParams

func NewImageListParams() *ImageListParams

NewImageListParams creates a new ImageListParams object with the default values initialized.

func NewImageListParamsWithContext

func NewImageListParamsWithContext(ctx context.Context) *ImageListParams

NewImageListParamsWithContext creates a new ImageListParams object with the default values initialized, and the ability to set a context for a request

func NewImageListParamsWithHTTPClient

func NewImageListParamsWithHTTPClient(client *http.Client) *ImageListParams

NewImageListParamsWithHTTPClient creates a new ImageListParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewImageListParamsWithTimeout

func NewImageListParamsWithTimeout(timeout time.Duration) *ImageListParams

NewImageListParamsWithTimeout creates a new ImageListParams object with the default values initialized, and the ability to set a timeout on a request

func (*ImageListParams) SetAuthInfoWriter

func (o *ImageListParams) SetAuthInfoWriter(authInfoWriter runtime.ClientAuthInfoWriter)

SetAuthInfoWriter adds the authInfoWriter to the image list params

func (*ImageListParams) SetContext

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

SetContext adds the context to the image list params

func (*ImageListParams) SetFlightId added in v0.63.0

func (o *ImageListParams) SetFlightId(flightId string)

SetFlightId adds the flightId as the header value for this specific endpoint

func (*ImageListParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the image list params

func (*ImageListParams) SetHTTPClientTransport

func (o *ImageListParams) SetHTTPClientTransport(roundTripper http.RoundTripper)

SetHTTPClient adds the HTTPClient Transport to the image list params

func (*ImageListParams) SetNamespace

func (o *ImageListParams) SetNamespace(namespace string)

SetNamespace adds the namespace to the image list params

func (*ImageListParams) SetTimeout

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

SetTimeout adds the timeout to the image list params

func (*ImageListParams) WithContext

func (o *ImageListParams) WithContext(ctx context.Context) *ImageListParams

WithContext adds the context to the image list params

func (*ImageListParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the image list params

func (*ImageListParams) WithNamespace

func (o *ImageListParams) WithNamespace(namespace string) *ImageListParams

WithNamespace adds the namespace to the image list params

func (*ImageListParams) WithTimeout

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

WithTimeout adds the timeout to the image list params

func (*ImageListParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type ImageListReader

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

ImageListReader is a Reader for the ImageList structure.

func (*ImageListReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ImageListUnauthorized

type ImageListUnauthorized struct {
	Payload *amsclientmodels.ResponseErrorResponse
}

ImageListUnauthorized handles this case with default header values.

no authorization provided

func NewImageListUnauthorized

func NewImageListUnauthorized() *ImageListUnauthorized

NewImageListUnauthorized creates a ImageListUnauthorized with default headers values

func (*ImageListUnauthorized) Error

func (o *ImageListUnauthorized) Error() string

func (*ImageListUnauthorized) GetPayload

func (*ImageListUnauthorized) ToJSONString

func (o *ImageListUnauthorized) ToJSONString() string

type ImageMarkForDeletionAccepted added in v0.71.0

type ImageMarkForDeletionAccepted struct {
}

ImageMarkForDeletionAccepted handles this case with default header values.

success

func NewImageMarkForDeletionAccepted added in v0.71.0

func NewImageMarkForDeletionAccepted() *ImageMarkForDeletionAccepted

NewImageMarkForDeletionAccepted creates a ImageMarkForDeletionAccepted with default headers values

func (*ImageMarkForDeletionAccepted) Error added in v0.71.0

type ImageMarkForDeletionForbidden added in v0.71.0

type ImageMarkForDeletionForbidden struct {
	Payload *amsclientmodels.ResponseErrorResponse
}

ImageMarkForDeletionForbidden handles this case with default header values.

insufficient permissions

func NewImageMarkForDeletionForbidden added in v0.71.0

func NewImageMarkForDeletionForbidden() *ImageMarkForDeletionForbidden

NewImageMarkForDeletionForbidden creates a ImageMarkForDeletionForbidden with default headers values

func (*ImageMarkForDeletionForbidden) Error added in v0.71.0

func (*ImageMarkForDeletionForbidden) GetPayload added in v0.71.0

func (*ImageMarkForDeletionForbidden) ToJSONString added in v0.71.0

func (o *ImageMarkForDeletionForbidden) ToJSONString() string

type ImageMarkForDeletionInternalServerError added in v0.71.0

type ImageMarkForDeletionInternalServerError struct {
	Payload *amsclientmodels.ResponseErrorResponse
}

ImageMarkForDeletionInternalServerError handles this case with default header values.

internal server error

func NewImageMarkForDeletionInternalServerError added in v0.71.0

func NewImageMarkForDeletionInternalServerError() *ImageMarkForDeletionInternalServerError

NewImageMarkForDeletionInternalServerError creates a ImageMarkForDeletionInternalServerError with default headers values

func (*ImageMarkForDeletionInternalServerError) Error added in v0.71.0

func (*ImageMarkForDeletionInternalServerError) GetPayload added in v0.71.0

func (*ImageMarkForDeletionInternalServerError) ToJSONString added in v0.71.0

type ImageMarkForDeletionNotFound added in v0.71.0

type ImageMarkForDeletionNotFound struct {
	Payload *amsclientmodels.ResponseErrorResponse
}

ImageMarkForDeletionNotFound handles this case with default header values.

image doesn't exist

func NewImageMarkForDeletionNotFound added in v0.71.0

func NewImageMarkForDeletionNotFound() *ImageMarkForDeletionNotFound

NewImageMarkForDeletionNotFound creates a ImageMarkForDeletionNotFound with default headers values

func (*ImageMarkForDeletionNotFound) Error added in v0.71.0

func (*ImageMarkForDeletionNotFound) GetPayload added in v0.71.0

func (*ImageMarkForDeletionNotFound) ToJSONString added in v0.71.0

func (o *ImageMarkForDeletionNotFound) ToJSONString() string

type ImageMarkForDeletionParams added in v0.71.0

type ImageMarkForDeletionParams struct {

	/*RetryPolicy*/
	RetryPolicy *utils.Retry
	/*ImageID
	  the id of the image

	*/
	ImageID string
	/*Namespace
	  namespace of the game

	*/
	Namespace string

	AuthInfoWriter runtime.ClientAuthInfoWriter
	Context        context.Context
	HTTPClient     *http.Client

	// XFlightId is an optional parameter from this SDK
	XFlightId *string
	// contains filtered or unexported fields
}

ImageMarkForDeletionParams contains all the parameters to send to the API endpoint for the image mark for deletion operation typically these are written to a http.Request

func NewImageMarkForDeletionParams added in v0.71.0

func NewImageMarkForDeletionParams() *ImageMarkForDeletionParams

NewImageMarkForDeletionParams creates a new ImageMarkForDeletionParams object with the default values initialized.

func NewImageMarkForDeletionParamsWithContext added in v0.71.0

func NewImageMarkForDeletionParamsWithContext(ctx context.Context) *ImageMarkForDeletionParams

NewImageMarkForDeletionParamsWithContext creates a new ImageMarkForDeletionParams object with the default values initialized, and the ability to set a context for a request

func NewImageMarkForDeletionParamsWithHTTPClient added in v0.71.0

func NewImageMarkForDeletionParamsWithHTTPClient(client *http.Client) *ImageMarkForDeletionParams

NewImageMarkForDeletionParamsWithHTTPClient creates a new ImageMarkForDeletionParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewImageMarkForDeletionParamsWithTimeout added in v0.71.0

func NewImageMarkForDeletionParamsWithTimeout(timeout time.Duration) *ImageMarkForDeletionParams

NewImageMarkForDeletionParamsWithTimeout creates a new ImageMarkForDeletionParams object with the default values initialized, and the ability to set a timeout on a request

func (*ImageMarkForDeletionParams) SetAuthInfoWriter added in v0.71.0

func (o *ImageMarkForDeletionParams) SetAuthInfoWriter(authInfoWriter runtime.ClientAuthInfoWriter)

SetAuthInfoWriter adds the authInfoWriter to the image mark for deletion params

func (*ImageMarkForDeletionParams) SetContext added in v0.71.0

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

SetContext adds the context to the image mark for deletion params

func (*ImageMarkForDeletionParams) SetFlightId added in v0.71.0

func (o *ImageMarkForDeletionParams) SetFlightId(flightId string)

SetFlightId adds the flightId as the header value for this specific endpoint

func (*ImageMarkForDeletionParams) SetHTTPClient added in v0.71.0

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

SetHTTPClient adds the HTTPClient to the image mark for deletion params

func (*ImageMarkForDeletionParams) SetHTTPClientTransport added in v0.71.0

func (o *ImageMarkForDeletionParams) SetHTTPClientTransport(roundTripper http.RoundTripper)

SetHTTPClient adds the HTTPClient Transport to the image mark for deletion params

func (*ImageMarkForDeletionParams) SetImageID added in v0.71.0

func (o *ImageMarkForDeletionParams) SetImageID(imageID string)

SetImageID adds the imageId to the image mark for deletion params

func (*ImageMarkForDeletionParams) SetNamespace added in v0.71.0

func (o *ImageMarkForDeletionParams) SetNamespace(namespace string)

SetNamespace adds the namespace to the image mark for deletion params

func (*ImageMarkForDeletionParams) SetTimeout added in v0.71.0

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

SetTimeout adds the timeout to the image mark for deletion params

func (*ImageMarkForDeletionParams) WithContext added in v0.71.0

WithContext adds the context to the image mark for deletion params

func (*ImageMarkForDeletionParams) WithHTTPClient added in v0.71.0

WithHTTPClient adds the HTTPClient to the image mark for deletion params

func (*ImageMarkForDeletionParams) WithImageID added in v0.71.0

WithImageID adds the imageID to the image mark for deletion params

func (*ImageMarkForDeletionParams) WithNamespace added in v0.71.0

func (o *ImageMarkForDeletionParams) WithNamespace(namespace string) *ImageMarkForDeletionParams

WithNamespace adds the namespace to the image mark for deletion params

func (*ImageMarkForDeletionParams) WithTimeout added in v0.71.0

WithTimeout adds the timeout to the image mark for deletion params

func (*ImageMarkForDeletionParams) WriteToRequest added in v0.71.0

WriteToRequest writes these params to a swagger request

type ImageMarkForDeletionPreconditionFailed added in v0.71.0

type ImageMarkForDeletionPreconditionFailed struct {
	Payload *amsclientmodels.ResponseErrorResponse
}

ImageMarkForDeletionPreconditionFailed handles this case with default header values.

image is being used by 1 or more fleets

func NewImageMarkForDeletionPreconditionFailed added in v0.71.0

func NewImageMarkForDeletionPreconditionFailed() *ImageMarkForDeletionPreconditionFailed

NewImageMarkForDeletionPreconditionFailed creates a ImageMarkForDeletionPreconditionFailed with default headers values

func (*ImageMarkForDeletionPreconditionFailed) Error added in v0.71.0

func (*ImageMarkForDeletionPreconditionFailed) GetPayload added in v0.71.0

func (*ImageMarkForDeletionPreconditionFailed) ToJSONString added in v0.71.0

type ImageMarkForDeletionReader added in v0.71.0

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

ImageMarkForDeletionReader is a Reader for the ImageMarkForDeletion structure.

func (*ImageMarkForDeletionReader) ReadResponse added in v0.71.0

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

ReadResponse reads a server response into the received o.

type ImageMarkForDeletionUnauthorized added in v0.71.0

type ImageMarkForDeletionUnauthorized struct {
	Payload *amsclientmodels.ResponseErrorResponse
}

ImageMarkForDeletionUnauthorized handles this case with default header values.

no authorization provided

func NewImageMarkForDeletionUnauthorized added in v0.71.0

func NewImageMarkForDeletionUnauthorized() *ImageMarkForDeletionUnauthorized

NewImageMarkForDeletionUnauthorized creates a ImageMarkForDeletionUnauthorized with default headers values

func (*ImageMarkForDeletionUnauthorized) Error added in v0.71.0

func (*ImageMarkForDeletionUnauthorized) GetPayload added in v0.71.0

func (*ImageMarkForDeletionUnauthorized) ToJSONString added in v0.71.0

func (o *ImageMarkForDeletionUnauthorized) ToJSONString() string

type ImagePatchForbidden

type ImagePatchForbidden struct {
	Payload *amsclientmodels.ResponseErrorResponse
}

ImagePatchForbidden handles this case with default header values.

insufficient permissions

func NewImagePatchForbidden

func NewImagePatchForbidden() *ImagePatchForbidden

NewImagePatchForbidden creates a ImagePatchForbidden with default headers values

func (*ImagePatchForbidden) Error

func (o *ImagePatchForbidden) Error() string

func (*ImagePatchForbidden) GetPayload

func (*ImagePatchForbidden) ToJSONString

func (o *ImagePatchForbidden) ToJSONString() string

type ImagePatchInternalServerError

type ImagePatchInternalServerError struct {
	Payload *amsclientmodels.ResponseErrorResponse
}

ImagePatchInternalServerError handles this case with default header values.

internal server error

func NewImagePatchInternalServerError

func NewImagePatchInternalServerError() *ImagePatchInternalServerError

NewImagePatchInternalServerError creates a ImagePatchInternalServerError with default headers values

func (*ImagePatchInternalServerError) Error

func (*ImagePatchInternalServerError) GetPayload

func (*ImagePatchInternalServerError) ToJSONString

func (o *ImagePatchInternalServerError) ToJSONString() string

type ImagePatchNotFound

type ImagePatchNotFound struct {
	Payload *amsclientmodels.ResponseErrorResponse
}

ImagePatchNotFound handles this case with default header values.

account not linked

func NewImagePatchNotFound

func NewImagePatchNotFound() *ImagePatchNotFound

NewImagePatchNotFound creates a ImagePatchNotFound with default headers values

func (*ImagePatchNotFound) Error

func (o *ImagePatchNotFound) Error() string

func (*ImagePatchNotFound) GetPayload

func (*ImagePatchNotFound) ToJSONString

func (o *ImagePatchNotFound) ToJSONString() string

type ImagePatchOK

type ImagePatchOK struct {
	Payload *amsclientmodels.APIImageDetails
}

ImagePatchOK handles this case with default header values.

success

func NewImagePatchOK

func NewImagePatchOK() *ImagePatchOK

NewImagePatchOK creates a ImagePatchOK with default headers values

func (*ImagePatchOK) Error

func (o *ImagePatchOK) Error() string

func (*ImagePatchOK) GetPayload

func (o *ImagePatchOK) GetPayload() *amsclientmodels.APIImageDetails

func (*ImagePatchOK) ToJSONString

func (o *ImagePatchOK) ToJSONString() string

type ImagePatchParams

type ImagePatchParams struct {

	/*RetryPolicy*/
	RetryPolicy *utils.Retry
	/*Body*/
	Body *amsclientmodels.APIImageUpdate
	/*ImageID
	  the id of the image

	*/
	ImageID string
	/*Namespace
	  namespace of the game

	*/
	Namespace string

	AuthInfoWriter runtime.ClientAuthInfoWriter
	Context        context.Context
	HTTPClient     *http.Client

	// XFlightId is an optional parameter from this SDK
	XFlightId *string
	// contains filtered or unexported fields
}

ImagePatchParams contains all the parameters to send to the API endpoint for the image patch operation typically these are written to a http.Request

func NewImagePatchParams

func NewImagePatchParams() *ImagePatchParams

NewImagePatchParams creates a new ImagePatchParams object with the default values initialized.

func NewImagePatchParamsWithContext

func NewImagePatchParamsWithContext(ctx context.Context) *ImagePatchParams

NewImagePatchParamsWithContext creates a new ImagePatchParams object with the default values initialized, and the ability to set a context for a request

func NewImagePatchParamsWithHTTPClient

func NewImagePatchParamsWithHTTPClient(client *http.Client) *ImagePatchParams

NewImagePatchParamsWithHTTPClient creates a new ImagePatchParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewImagePatchParamsWithTimeout

func NewImagePatchParamsWithTimeout(timeout time.Duration) *ImagePatchParams

NewImagePatchParamsWithTimeout creates a new ImagePatchParams object with the default values initialized, and the ability to set a timeout on a request

func (*ImagePatchParams) SetAuthInfoWriter

func (o *ImagePatchParams) SetAuthInfoWriter(authInfoWriter runtime.ClientAuthInfoWriter)

SetAuthInfoWriter adds the authInfoWriter to the image patch params

func (*ImagePatchParams) SetBody

SetBody adds the body to the image patch params

func (*ImagePatchParams) SetContext

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

SetContext adds the context to the image patch params

func (*ImagePatchParams) SetFlightId added in v0.63.0

func (o *ImagePatchParams) SetFlightId(flightId string)

SetFlightId adds the flightId as the header value for this specific endpoint

func (*ImagePatchParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the image patch params

func (*ImagePatchParams) SetHTTPClientTransport

func (o *ImagePatchParams) SetHTTPClientTransport(roundTripper http.RoundTripper)

SetHTTPClient adds the HTTPClient Transport to the image patch params

func (*ImagePatchParams) SetImageID

func (o *ImagePatchParams) SetImageID(imageID string)

SetImageID adds the imageId to the image patch params

func (*ImagePatchParams) SetNamespace

func (o *ImagePatchParams) SetNamespace(namespace string)

SetNamespace adds the namespace to the image patch params

func (*ImagePatchParams) SetTimeout

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

SetTimeout adds the timeout to the image patch params

func (*ImagePatchParams) WithBody

WithBody adds the body to the image patch params

func (*ImagePatchParams) WithContext

func (o *ImagePatchParams) WithContext(ctx context.Context) *ImagePatchParams

WithContext adds the context to the image patch params

func (*ImagePatchParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the image patch params

func (*ImagePatchParams) WithImageID

func (o *ImagePatchParams) WithImageID(imageID string) *ImagePatchParams

WithImageID adds the imageID to the image patch params

func (*ImagePatchParams) WithNamespace

func (o *ImagePatchParams) WithNamespace(namespace string) *ImagePatchParams

WithNamespace adds the namespace to the image patch params

func (*ImagePatchParams) WithTimeout

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

WithTimeout adds the timeout to the image patch params

func (*ImagePatchParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type ImagePatchReader

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

ImagePatchReader is a Reader for the ImagePatch structure.

func (*ImagePatchReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ImagePatchUnauthorized

type ImagePatchUnauthorized struct {
	Payload *amsclientmodels.ResponseErrorResponse
}

ImagePatchUnauthorized handles this case with default header values.

no authorization provided

func NewImagePatchUnauthorized

func NewImagePatchUnauthorized() *ImagePatchUnauthorized

NewImagePatchUnauthorized creates a ImagePatchUnauthorized with default headers values

func (*ImagePatchUnauthorized) Error

func (o *ImagePatchUnauthorized) Error() string

func (*ImagePatchUnauthorized) GetPayload

func (*ImagePatchUnauthorized) ToJSONString

func (o *ImagePatchUnauthorized) ToJSONString() string

type ImageUnmarkForDeletionAccepted added in v0.71.0

type ImageUnmarkForDeletionAccepted struct {
}

ImageUnmarkForDeletionAccepted handles this case with default header values.

success

func NewImageUnmarkForDeletionAccepted added in v0.71.0

func NewImageUnmarkForDeletionAccepted() *ImageUnmarkForDeletionAccepted

NewImageUnmarkForDeletionAccepted creates a ImageUnmarkForDeletionAccepted with default headers values

func (*ImageUnmarkForDeletionAccepted) Error added in v0.71.0

type ImageUnmarkForDeletionForbidden added in v0.71.0

type ImageUnmarkForDeletionForbidden struct {
	Payload *amsclientmodels.ResponseErrorResponse
}

ImageUnmarkForDeletionForbidden handles this case with default header values.

insufficient permissions

func NewImageUnmarkForDeletionForbidden added in v0.71.0

func NewImageUnmarkForDeletionForbidden() *ImageUnmarkForDeletionForbidden

NewImageUnmarkForDeletionForbidden creates a ImageUnmarkForDeletionForbidden with default headers values

func (*ImageUnmarkForDeletionForbidden) Error added in v0.71.0

func (*ImageUnmarkForDeletionForbidden) GetPayload added in v0.71.0

func (*ImageUnmarkForDeletionForbidden) ToJSONString added in v0.71.0

func (o *ImageUnmarkForDeletionForbidden) ToJSONString() string

type ImageUnmarkForDeletionInternalServerError added in v0.71.0

type ImageUnmarkForDeletionInternalServerError struct {
	Payload *amsclientmodels.ResponseErrorResponse
}

ImageUnmarkForDeletionInternalServerError handles this case with default header values.

internal server error

func NewImageUnmarkForDeletionInternalServerError added in v0.71.0

func NewImageUnmarkForDeletionInternalServerError() *ImageUnmarkForDeletionInternalServerError

NewImageUnmarkForDeletionInternalServerError creates a ImageUnmarkForDeletionInternalServerError with default headers values

func (*ImageUnmarkForDeletionInternalServerError) Error added in v0.71.0

func (*ImageUnmarkForDeletionInternalServerError) GetPayload added in v0.71.0

func (*ImageUnmarkForDeletionInternalServerError) ToJSONString added in v0.71.0

type ImageUnmarkForDeletionNotFound added in v0.71.0

type ImageUnmarkForDeletionNotFound struct {
	Payload *amsclientmodels.ResponseErrorResponse
}

ImageUnmarkForDeletionNotFound handles this case with default header values.

image doesn't exist

func NewImageUnmarkForDeletionNotFound added in v0.71.0

func NewImageUnmarkForDeletionNotFound() *ImageUnmarkForDeletionNotFound

NewImageUnmarkForDeletionNotFound creates a ImageUnmarkForDeletionNotFound with default headers values

func (*ImageUnmarkForDeletionNotFound) Error added in v0.71.0

func (*ImageUnmarkForDeletionNotFound) GetPayload added in v0.71.0

func (*ImageUnmarkForDeletionNotFound) ToJSONString added in v0.71.0

func (o *ImageUnmarkForDeletionNotFound) ToJSONString() string

type ImageUnmarkForDeletionParams added in v0.71.0

type ImageUnmarkForDeletionParams struct {

	/*RetryPolicy*/
	RetryPolicy *utils.Retry
	/*ImageID
	  the id of the image

	*/
	ImageID string
	/*Namespace
	  namespace of the game

	*/
	Namespace string

	AuthInfoWriter runtime.ClientAuthInfoWriter
	Context        context.Context
	HTTPClient     *http.Client

	// XFlightId is an optional parameter from this SDK
	XFlightId *string
	// contains filtered or unexported fields
}

ImageUnmarkForDeletionParams contains all the parameters to send to the API endpoint for the image unmark for deletion operation typically these are written to a http.Request

func NewImageUnmarkForDeletionParams added in v0.71.0

func NewImageUnmarkForDeletionParams() *ImageUnmarkForDeletionParams

NewImageUnmarkForDeletionParams creates a new ImageUnmarkForDeletionParams object with the default values initialized.

func NewImageUnmarkForDeletionParamsWithContext added in v0.71.0

func NewImageUnmarkForDeletionParamsWithContext(ctx context.Context) *ImageUnmarkForDeletionParams

NewImageUnmarkForDeletionParamsWithContext creates a new ImageUnmarkForDeletionParams object with the default values initialized, and the ability to set a context for a request

func NewImageUnmarkForDeletionParamsWithHTTPClient added in v0.71.0

func NewImageUnmarkForDeletionParamsWithHTTPClient(client *http.Client) *ImageUnmarkForDeletionParams

NewImageUnmarkForDeletionParamsWithHTTPClient creates a new ImageUnmarkForDeletionParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewImageUnmarkForDeletionParamsWithTimeout added in v0.71.0

func NewImageUnmarkForDeletionParamsWithTimeout(timeout time.Duration) *ImageUnmarkForDeletionParams

NewImageUnmarkForDeletionParamsWithTimeout creates a new ImageUnmarkForDeletionParams object with the default values initialized, and the ability to set a timeout on a request

func (*ImageUnmarkForDeletionParams) SetAuthInfoWriter added in v0.71.0

func (o *ImageUnmarkForDeletionParams) SetAuthInfoWriter(authInfoWriter runtime.ClientAuthInfoWriter)

SetAuthInfoWriter adds the authInfoWriter to the image unmark for deletion params

func (*ImageUnmarkForDeletionParams) SetContext added in v0.71.0

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

SetContext adds the context to the image unmark for deletion params

func (*ImageUnmarkForDeletionParams) SetFlightId added in v0.71.0

func (o *ImageUnmarkForDeletionParams) SetFlightId(flightId string)

SetFlightId adds the flightId as the header value for this specific endpoint

func (*ImageUnmarkForDeletionParams) SetHTTPClient added in v0.71.0

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

SetHTTPClient adds the HTTPClient to the image unmark for deletion params

func (*ImageUnmarkForDeletionParams) SetHTTPClientTransport added in v0.71.0

func (o *ImageUnmarkForDeletionParams) SetHTTPClientTransport(roundTripper http.RoundTripper)

SetHTTPClient adds the HTTPClient Transport to the image unmark for deletion params

func (*ImageUnmarkForDeletionParams) SetImageID added in v0.71.0

func (o *ImageUnmarkForDeletionParams) SetImageID(imageID string)

SetImageID adds the imageId to the image unmark for deletion params

func (*ImageUnmarkForDeletionParams) SetNamespace added in v0.71.0

func (o *ImageUnmarkForDeletionParams) SetNamespace(namespace string)

SetNamespace adds the namespace to the image unmark for deletion params

func (*ImageUnmarkForDeletionParams) SetTimeout added in v0.71.0

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

SetTimeout adds the timeout to the image unmark for deletion params

func (*ImageUnmarkForDeletionParams) WithContext added in v0.71.0

WithContext adds the context to the image unmark for deletion params

func (*ImageUnmarkForDeletionParams) WithHTTPClient added in v0.71.0

WithHTTPClient adds the HTTPClient to the image unmark for deletion params

func (*ImageUnmarkForDeletionParams) WithImageID added in v0.71.0

WithImageID adds the imageID to the image unmark for deletion params

func (*ImageUnmarkForDeletionParams) WithNamespace added in v0.71.0

WithNamespace adds the namespace to the image unmark for deletion params

func (*ImageUnmarkForDeletionParams) WithTimeout added in v0.71.0

WithTimeout adds the timeout to the image unmark for deletion params

func (*ImageUnmarkForDeletionParams) WriteToRequest added in v0.71.0

WriteToRequest writes these params to a swagger request

type ImageUnmarkForDeletionPreconditionFailed added in v0.71.0

type ImageUnmarkForDeletionPreconditionFailed struct {
	Payload *amsclientmodels.ResponseErrorResponse
}

ImageUnmarkForDeletionPreconditionFailed handles this case with default header values.

image wasn't marked for deletion

func NewImageUnmarkForDeletionPreconditionFailed added in v0.71.0

func NewImageUnmarkForDeletionPreconditionFailed() *ImageUnmarkForDeletionPreconditionFailed

NewImageUnmarkForDeletionPreconditionFailed creates a ImageUnmarkForDeletionPreconditionFailed with default headers values

func (*ImageUnmarkForDeletionPreconditionFailed) Error added in v0.71.0

func (*ImageUnmarkForDeletionPreconditionFailed) GetPayload added in v0.71.0

func (*ImageUnmarkForDeletionPreconditionFailed) ToJSONString added in v0.71.0

type ImageUnmarkForDeletionReader added in v0.71.0

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

ImageUnmarkForDeletionReader is a Reader for the ImageUnmarkForDeletion structure.

func (*ImageUnmarkForDeletionReader) ReadResponse added in v0.71.0

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

ReadResponse reads a server response into the received o.

type ImageUnmarkForDeletionUnauthorized added in v0.71.0

type ImageUnmarkForDeletionUnauthorized struct {
	Payload *amsclientmodels.ResponseErrorResponse
}

ImageUnmarkForDeletionUnauthorized handles this case with default header values.

no authorization provided

func NewImageUnmarkForDeletionUnauthorized added in v0.71.0

func NewImageUnmarkForDeletionUnauthorized() *ImageUnmarkForDeletionUnauthorized

NewImageUnmarkForDeletionUnauthorized creates a ImageUnmarkForDeletionUnauthorized with default headers values

func (*ImageUnmarkForDeletionUnauthorized) Error added in v0.71.0

func (*ImageUnmarkForDeletionUnauthorized) GetPayload added in v0.71.0

func (*ImageUnmarkForDeletionUnauthorized) ToJSONString added in v0.71.0

func (o *ImageUnmarkForDeletionUnauthorized) ToJSONString() string

type ImagesStorageForbidden added in v0.72.0

type ImagesStorageForbidden struct {
	Payload *amsclientmodels.ResponseErrorResponse
}

ImagesStorageForbidden handles this case with default header values.

insufficient permissions

func NewImagesStorageForbidden added in v0.72.0

func NewImagesStorageForbidden() *ImagesStorageForbidden

NewImagesStorageForbidden creates a ImagesStorageForbidden with default headers values

func (*ImagesStorageForbidden) Error added in v0.72.0

func (o *ImagesStorageForbidden) Error() string

func (*ImagesStorageForbidden) GetPayload added in v0.72.0

func (*ImagesStorageForbidden) ToJSONString added in v0.72.0

func (o *ImagesStorageForbidden) ToJSONString() string

type ImagesStorageInternalServerError added in v0.72.0

type ImagesStorageInternalServerError struct {
	Payload *amsclientmodels.ResponseErrorResponse
}

ImagesStorageInternalServerError handles this case with default header values.

internal server error

func NewImagesStorageInternalServerError added in v0.72.0

func NewImagesStorageInternalServerError() *ImagesStorageInternalServerError

NewImagesStorageInternalServerError creates a ImagesStorageInternalServerError with default headers values

func (*ImagesStorageInternalServerError) Error added in v0.72.0

func (*ImagesStorageInternalServerError) GetPayload added in v0.72.0

func (*ImagesStorageInternalServerError) ToJSONString added in v0.72.0

func (o *ImagesStorageInternalServerError) ToJSONString() string

type ImagesStorageNotFound added in v0.72.0

type ImagesStorageNotFound struct {
	Payload *amsclientmodels.ResponseErrorResponse
}

ImagesStorageNotFound handles this case with default header values.

account not linked

func NewImagesStorageNotFound added in v0.72.0

func NewImagesStorageNotFound() *ImagesStorageNotFound

NewImagesStorageNotFound creates a ImagesStorageNotFound with default headers values

func (*ImagesStorageNotFound) Error added in v0.72.0

func (o *ImagesStorageNotFound) Error() string

func (*ImagesStorageNotFound) GetPayload added in v0.72.0

func (*ImagesStorageNotFound) ToJSONString added in v0.72.0

func (o *ImagesStorageNotFound) ToJSONString() string

type ImagesStorageOK added in v0.72.0

type ImagesStorageOK struct {
	Payload *amsclientmodels.APIImageStorage
}

ImagesStorageOK handles this case with default header values.

success

func NewImagesStorageOK added in v0.72.0

func NewImagesStorageOK() *ImagesStorageOK

NewImagesStorageOK creates a ImagesStorageOK with default headers values

func (*ImagesStorageOK) Error added in v0.72.0

func (o *ImagesStorageOK) Error() string

func (*ImagesStorageOK) GetPayload added in v0.72.0

func (*ImagesStorageOK) ToJSONString added in v0.72.0

func (o *ImagesStorageOK) ToJSONString() string

type ImagesStorageParams added in v0.72.0

type ImagesStorageParams struct {

	/*RetryPolicy*/
	RetryPolicy *utils.Retry
	/*Namespace
	  namespace of the game

	*/
	Namespace string

	AuthInfoWriter runtime.ClientAuthInfoWriter
	Context        context.Context
	HTTPClient     *http.Client

	// XFlightId is an optional parameter from this SDK
	XFlightId *string
	// contains filtered or unexported fields
}

ImagesStorageParams contains all the parameters to send to the API endpoint for the images storage operation typically these are written to a http.Request

func NewImagesStorageParams added in v0.72.0

func NewImagesStorageParams() *ImagesStorageParams

NewImagesStorageParams creates a new ImagesStorageParams object with the default values initialized.

func NewImagesStorageParamsWithContext added in v0.72.0

func NewImagesStorageParamsWithContext(ctx context.Context) *ImagesStorageParams

NewImagesStorageParamsWithContext creates a new ImagesStorageParams object with the default values initialized, and the ability to set a context for a request

func NewImagesStorageParamsWithHTTPClient added in v0.72.0

func NewImagesStorageParamsWithHTTPClient(client *http.Client) *ImagesStorageParams

NewImagesStorageParamsWithHTTPClient creates a new ImagesStorageParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewImagesStorageParamsWithTimeout added in v0.72.0

func NewImagesStorageParamsWithTimeout(timeout time.Duration) *ImagesStorageParams

NewImagesStorageParamsWithTimeout creates a new ImagesStorageParams object with the default values initialized, and the ability to set a timeout on a request

func (*ImagesStorageParams) SetAuthInfoWriter added in v0.72.0

func (o *ImagesStorageParams) SetAuthInfoWriter(authInfoWriter runtime.ClientAuthInfoWriter)

SetAuthInfoWriter adds the authInfoWriter to the images storage params

func (*ImagesStorageParams) SetContext added in v0.72.0

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

SetContext adds the context to the images storage params

func (*ImagesStorageParams) SetFlightId added in v0.72.0

func (o *ImagesStorageParams) SetFlightId(flightId string)

SetFlightId adds the flightId as the header value for this specific endpoint

func (*ImagesStorageParams) SetHTTPClient added in v0.72.0

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

SetHTTPClient adds the HTTPClient to the images storage params

func (*ImagesStorageParams) SetHTTPClientTransport added in v0.72.0

func (o *ImagesStorageParams) SetHTTPClientTransport(roundTripper http.RoundTripper)

SetHTTPClient adds the HTTPClient Transport to the images storage params

func (*ImagesStorageParams) SetNamespace added in v0.72.0

func (o *ImagesStorageParams) SetNamespace(namespace string)

SetNamespace adds the namespace to the images storage params

func (*ImagesStorageParams) SetTimeout added in v0.72.0

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

SetTimeout adds the timeout to the images storage params

func (*ImagesStorageParams) WithContext added in v0.72.0

WithContext adds the context to the images storage params

func (*ImagesStorageParams) WithHTTPClient added in v0.72.0

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

WithHTTPClient adds the HTTPClient to the images storage params

func (*ImagesStorageParams) WithNamespace added in v0.72.0

func (o *ImagesStorageParams) WithNamespace(namespace string) *ImagesStorageParams

WithNamespace adds the namespace to the images storage params

func (*ImagesStorageParams) WithTimeout added in v0.72.0

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

WithTimeout adds the timeout to the images storage params

func (*ImagesStorageParams) WriteToRequest added in v0.72.0

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

WriteToRequest writes these params to a swagger request

type ImagesStorageReader added in v0.72.0

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

ImagesStorageReader is a Reader for the ImagesStorage structure.

func (*ImagesStorageReader) ReadResponse added in v0.72.0

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

ReadResponse reads a server response into the received o.

type ImagesStorageUnauthorized added in v0.72.0

type ImagesStorageUnauthorized struct {
	Payload *amsclientmodels.ResponseErrorResponse
}

ImagesStorageUnauthorized handles this case with default header values.

no authorization provided

func NewImagesStorageUnauthorized added in v0.72.0

func NewImagesStorageUnauthorized() *ImagesStorageUnauthorized

NewImagesStorageUnauthorized creates a ImagesStorageUnauthorized with default headers values

func (*ImagesStorageUnauthorized) Error added in v0.72.0

func (o *ImagesStorageUnauthorized) Error() string

func (*ImagesStorageUnauthorized) GetPayload added in v0.72.0

func (*ImagesStorageUnauthorized) ToJSONString added in v0.72.0

func (o *ImagesStorageUnauthorized) ToJSONString() string

Jump to

Keyboard shortcuts

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