app_ui

package
v0.89.0 Latest Latest
Warning

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

Go to latest
Published: Jul 9, 2026 License: MIT Imports: 16 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 app ui API

func (*Client) CreateAppUI deprecated

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

CreateAppUI create a new app ui instance Creates a new App UI configuration. The App UI can be hosted either by AccelByte (default) or externally.

func (*Client) CreateAppUIShort

func (a *Client) CreateAppUIShort(params *CreateAppUIParams, authInfo runtime.ClientAuthInfoWriter) (*CreateAppUICreated, error)

CreateAppUIShort create a new app ui instance Creates a new App UI configuration. The App UI can be hosted either by AccelByte (default) or externally.

func (*Client) DeleteAppUI deprecated

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

DeleteAppUI delete an app ui instance Permanently deletes an App UI instance and schedules cleanup of associated S3 assets.

func (*Client) DeleteAppUIShort

func (a *Client) DeleteAppUIShort(params *DeleteAppUIParams, authInfo runtime.ClientAuthInfoWriter) (*DeleteAppUINoContent, error)

DeleteAppUIShort delete an app ui instance Permanently deletes an App UI instance and schedules cleanup of associated S3 assets.

func (*Client) ListAppUI deprecated

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

ListAppUI list all app ui instances in the namespace Retrieves a paginated list of App UI instances. Supports filtering by name and pagination using limit/offset.

func (*Client) ListAppUIShort

func (a *Client) ListAppUIShort(params *ListAppUIParams, authInfo runtime.ClientAuthInfoWriter) (*ListAppUIOK, error)

ListAppUIShort list all app ui instances in the namespace Retrieves a paginated list of App UI instances. Supports filtering by name and pagination using limit/offset.

func (*Client) SetTransport

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

SetTransport changes the transport on the client

func (*Client) UploadAppUIFile deprecated

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

UploadAppUIFile upload app ui assets as a zip file Uploads a ZIP archive containing App UI static assets (HTML, CSS, JS, etc.). Files are stored in S3 and served with immutable caching.

func (*Client) UploadAppUIFileShort

func (a *Client) UploadAppUIFileShort(params *UploadAppUIFileParams, authInfo runtime.ClientAuthInfoWriter) (*UploadAppUIFileOK, error)

UploadAppUIFileShort upload app ui assets as a zip file Uploads a ZIP archive containing App UI static assets (HTML, CSS, JS, etc.). Files are stored in S3 and served with immutable caching.

type CreateAppUIBadRequest

type CreateAppUIBadRequest struct {
	Payload *csmclientmodels.ResponseErrorResponse
}

CreateAppUIBadRequest handles this case with default header values.

Bad Request

func NewCreateAppUIBadRequest

func NewCreateAppUIBadRequest() *CreateAppUIBadRequest

NewCreateAppUIBadRequest creates a CreateAppUIBadRequest with default headers values

func (*CreateAppUIBadRequest) Error

func (o *CreateAppUIBadRequest) Error() string

func (*CreateAppUIBadRequest) GetPayload

func (*CreateAppUIBadRequest) ToJSONString

func (o *CreateAppUIBadRequest) ToJSONString() string

type CreateAppUIConflict

type CreateAppUIConflict struct {
	Payload *csmclientmodels.ResponseErrorResponse
}

CreateAppUIConflict handles this case with default header values.

Conflict

func NewCreateAppUIConflict

func NewCreateAppUIConflict() *CreateAppUIConflict

NewCreateAppUIConflict creates a CreateAppUIConflict with default headers values

func (*CreateAppUIConflict) Error

func (o *CreateAppUIConflict) Error() string

func (*CreateAppUIConflict) GetPayload

func (*CreateAppUIConflict) ToJSONString

func (o *CreateAppUIConflict) ToJSONString() string

type CreateAppUICreated

type CreateAppUICreated struct {
	Payload *csmclientmodels.ApimodelAppUIResponse
}

CreateAppUICreated handles this case with default header values.

Created

func NewCreateAppUICreated

func NewCreateAppUICreated() *CreateAppUICreated

NewCreateAppUICreated creates a CreateAppUICreated with default headers values

func (*CreateAppUICreated) Error

func (o *CreateAppUICreated) Error() string

func (*CreateAppUICreated) GetPayload

func (*CreateAppUICreated) ToJSONString

func (o *CreateAppUICreated) ToJSONString() string

type CreateAppUIInternalServerError

type CreateAppUIInternalServerError struct {
	Payload *csmclientmodels.ResponseErrorResponse
}

CreateAppUIInternalServerError handles this case with default header values.

Internal Server Error

func NewCreateAppUIInternalServerError

func NewCreateAppUIInternalServerError() *CreateAppUIInternalServerError

NewCreateAppUIInternalServerError creates a CreateAppUIInternalServerError with default headers values

func (*CreateAppUIInternalServerError) Error

func (*CreateAppUIInternalServerError) GetPayload

func (*CreateAppUIInternalServerError) ToJSONString

func (o *CreateAppUIInternalServerError) ToJSONString() string

type CreateAppUIParams

type CreateAppUIParams struct {

	/*RetryPolicy*/
	RetryPolicy *utils.Retry
	/*Body*/
	Body *csmclientmodels.ApimodelCreateAppUIRequest
	/*Namespace
	  Game Namespace

	*/
	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
}

CreateAppUIParams contains all the parameters to send to the API endpoint for the create app ui operation typically these are written to a http.Request

func NewCreateAppUIParams

func NewCreateAppUIParams() *CreateAppUIParams

NewCreateAppUIParams creates a new CreateAppUIParams object with the default values initialized.

func NewCreateAppUIParamsWithContext

func NewCreateAppUIParamsWithContext(ctx context.Context) *CreateAppUIParams

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

func NewCreateAppUIParamsWithHTTPClient

func NewCreateAppUIParamsWithHTTPClient(client *http.Client) *CreateAppUIParams

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

func NewCreateAppUIParamsWithTimeout

func NewCreateAppUIParamsWithTimeout(timeout time.Duration) *CreateAppUIParams

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

func (*CreateAppUIParams) SetAuthInfoWriter

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

SetAuthInfoWriter adds the authInfoWriter to the create app ui params

func (*CreateAppUIParams) SetBody

SetBody adds the body to the create app ui params

func (*CreateAppUIParams) SetContext

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

SetContext adds the context to the create app ui params

func (*CreateAppUIParams) SetFlightId

func (o *CreateAppUIParams) SetFlightId(flightId string)

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

func (*CreateAppUIParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the create app ui params

func (*CreateAppUIParams) SetHTTPClientTransport

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

SetHTTPClient adds the HTTPClient Transport to the create app ui params

func (*CreateAppUIParams) SetNamespace

func (o *CreateAppUIParams) SetNamespace(namespace string)

SetNamespace adds the namespace to the create app ui params

func (*CreateAppUIParams) SetTimeout

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

SetTimeout adds the timeout to the create app ui params

func (*CreateAppUIParams) WithBody

WithBody adds the body to the create app ui params

func (*CreateAppUIParams) WithContext

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

WithContext adds the context to the create app ui params

func (*CreateAppUIParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the create app ui params

func (*CreateAppUIParams) WithNamespace

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

WithNamespace adds the namespace to the create app ui params

func (*CreateAppUIParams) WithTimeout

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

WithTimeout adds the timeout to the create app ui params

func (*CreateAppUIParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type CreateAppUIReader

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

CreateAppUIReader is a Reader for the CreateAppUI structure.

func (*CreateAppUIReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteAppUIInternalServerError

type DeleteAppUIInternalServerError struct {
	Payload *csmclientmodels.ResponseErrorResponse
}

DeleteAppUIInternalServerError handles this case with default header values.

Internal Server Error

func NewDeleteAppUIInternalServerError

func NewDeleteAppUIInternalServerError() *DeleteAppUIInternalServerError

NewDeleteAppUIInternalServerError creates a DeleteAppUIInternalServerError with default headers values

func (*DeleteAppUIInternalServerError) Error

func (*DeleteAppUIInternalServerError) GetPayload

func (*DeleteAppUIInternalServerError) ToJSONString

func (o *DeleteAppUIInternalServerError) ToJSONString() string

type DeleteAppUINoContent

type DeleteAppUINoContent struct {
}

DeleteAppUINoContent handles this case with default header values.

No Content

func NewDeleteAppUINoContent

func NewDeleteAppUINoContent() *DeleteAppUINoContent

NewDeleteAppUINoContent creates a DeleteAppUINoContent with default headers values

func (*DeleteAppUINoContent) Error

func (o *DeleteAppUINoContent) Error() string

type DeleteAppUINotFound

type DeleteAppUINotFound struct {
	Payload *csmclientmodels.ResponseErrorResponse
}

DeleteAppUINotFound handles this case with default header values.

Not Found

func NewDeleteAppUINotFound

func NewDeleteAppUINotFound() *DeleteAppUINotFound

NewDeleteAppUINotFound creates a DeleteAppUINotFound with default headers values

func (*DeleteAppUINotFound) Error

func (o *DeleteAppUINotFound) Error() string

func (*DeleteAppUINotFound) GetPayload

func (*DeleteAppUINotFound) ToJSONString

func (o *DeleteAppUINotFound) ToJSONString() string

type DeleteAppUIParams

type DeleteAppUIParams struct {

	/*RetryPolicy*/
	RetryPolicy *utils.Retry
	/*AppUIName
	  App UI Name

	*/
	AppUIName string
	/*Namespace
	  Game Namespace

	*/
	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
}

DeleteAppUIParams contains all the parameters to send to the API endpoint for the delete app ui operation typically these are written to a http.Request

func NewDeleteAppUIParams

func NewDeleteAppUIParams() *DeleteAppUIParams

NewDeleteAppUIParams creates a new DeleteAppUIParams object with the default values initialized.

func NewDeleteAppUIParamsWithContext

func NewDeleteAppUIParamsWithContext(ctx context.Context) *DeleteAppUIParams

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

func NewDeleteAppUIParamsWithHTTPClient

func NewDeleteAppUIParamsWithHTTPClient(client *http.Client) *DeleteAppUIParams

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

func NewDeleteAppUIParamsWithTimeout

func NewDeleteAppUIParamsWithTimeout(timeout time.Duration) *DeleteAppUIParams

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

func (*DeleteAppUIParams) SetAppUIName

func (o *DeleteAppUIParams) SetAppUIName(appUIName string)

SetAppUIName adds the appUiName to the delete app ui params

func (*DeleteAppUIParams) SetAuthInfoWriter

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

SetAuthInfoWriter adds the authInfoWriter to the delete app ui params

func (*DeleteAppUIParams) SetContext

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

SetContext adds the context to the delete app ui params

func (*DeleteAppUIParams) SetFlightId

func (o *DeleteAppUIParams) SetFlightId(flightId string)

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

func (*DeleteAppUIParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete app ui params

func (*DeleteAppUIParams) SetHTTPClientTransport

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

SetHTTPClient adds the HTTPClient Transport to the delete app ui params

func (*DeleteAppUIParams) SetNamespace

func (o *DeleteAppUIParams) SetNamespace(namespace string)

SetNamespace adds the namespace to the delete app ui params

func (*DeleteAppUIParams) SetTimeout

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

SetTimeout adds the timeout to the delete app ui params

func (*DeleteAppUIParams) WithAppUIName

func (o *DeleteAppUIParams) WithAppUIName(appUIName string) *DeleteAppUIParams

WithAppUIName adds the appUIName to the delete app ui params

func (*DeleteAppUIParams) WithContext

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

WithContext adds the context to the delete app ui params

func (*DeleteAppUIParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the delete app ui params

func (*DeleteAppUIParams) WithNamespace

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

WithNamespace adds the namespace to the delete app ui params

func (*DeleteAppUIParams) WithTimeout

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

WithTimeout adds the timeout to the delete app ui params

func (*DeleteAppUIParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type DeleteAppUIReader

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

DeleteAppUIReader is a Reader for the DeleteAppUI structure.

func (*DeleteAppUIReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ListAppUIBadRequest

type ListAppUIBadRequest struct {
	Payload *csmclientmodels.ResponseErrorResponse
}

ListAppUIBadRequest handles this case with default header values.

Bad Request

func NewListAppUIBadRequest

func NewListAppUIBadRequest() *ListAppUIBadRequest

NewListAppUIBadRequest creates a ListAppUIBadRequest with default headers values

func (*ListAppUIBadRequest) Error

func (o *ListAppUIBadRequest) Error() string

func (*ListAppUIBadRequest) GetPayload

func (*ListAppUIBadRequest) ToJSONString

func (o *ListAppUIBadRequest) ToJSONString() string

type ListAppUIInternalServerError

type ListAppUIInternalServerError struct {
	Payload *csmclientmodels.ResponseErrorResponse
}

ListAppUIInternalServerError handles this case with default header values.

Internal Server Error

func NewListAppUIInternalServerError

func NewListAppUIInternalServerError() *ListAppUIInternalServerError

NewListAppUIInternalServerError creates a ListAppUIInternalServerError with default headers values

func (*ListAppUIInternalServerError) Error

func (*ListAppUIInternalServerError) GetPayload

func (*ListAppUIInternalServerError) ToJSONString

func (o *ListAppUIInternalServerError) ToJSONString() string

type ListAppUIOK

type ListAppUIOK struct {
	Payload *csmclientmodels.ApimodelListAppUIResponse
}

ListAppUIOK handles this case with default header values.

OK

func NewListAppUIOK

func NewListAppUIOK() *ListAppUIOK

NewListAppUIOK creates a ListAppUIOK with default headers values

func (*ListAppUIOK) Error

func (o *ListAppUIOK) Error() string

func (*ListAppUIOK) GetPayload

func (*ListAppUIOK) ToJSONString

func (o *ListAppUIOK) ToJSONString() string

type ListAppUIParams

type ListAppUIParams struct {

	/*RetryPolicy*/
	RetryPolicy *utils.Retry
	/*Namespace
	  Game Namespace

	*/
	Namespace string
	/*Limit
	  Limit for pagination

	*/
	Limit *int64
	/*Name
	  Filter by app UI name

	*/
	Name *string
	/*Offset
	  Offset for pagination

	*/
	Offset *int64

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

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

ListAppUIParams contains all the parameters to send to the API endpoint for the list app ui operation typically these are written to a http.Request

func NewListAppUIParams

func NewListAppUIParams() *ListAppUIParams

NewListAppUIParams creates a new ListAppUIParams object with the default values initialized.

func NewListAppUIParamsWithContext

func NewListAppUIParamsWithContext(ctx context.Context) *ListAppUIParams

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

func NewListAppUIParamsWithHTTPClient

func NewListAppUIParamsWithHTTPClient(client *http.Client) *ListAppUIParams

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

func NewListAppUIParamsWithTimeout

func NewListAppUIParamsWithTimeout(timeout time.Duration) *ListAppUIParams

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

func (*ListAppUIParams) SetAuthInfoWriter

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

SetAuthInfoWriter adds the authInfoWriter to the list app ui params

func (*ListAppUIParams) SetContext

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

SetContext adds the context to the list app ui params

func (*ListAppUIParams) SetFlightId

func (o *ListAppUIParams) SetFlightId(flightId string)

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

func (*ListAppUIParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the list app ui params

func (*ListAppUIParams) SetHTTPClientTransport

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

SetHTTPClient adds the HTTPClient Transport to the list app ui params

func (*ListAppUIParams) SetLimit

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

SetLimit adds the limit to the list app ui params

func (*ListAppUIParams) SetName

func (o *ListAppUIParams) SetName(name *string)

SetName adds the name to the list app ui params

func (*ListAppUIParams) SetNamespace

func (o *ListAppUIParams) SetNamespace(namespace string)

SetNamespace adds the namespace to the list app ui params

func (*ListAppUIParams) SetOffset

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

SetOffset adds the offset to the list app ui params

func (*ListAppUIParams) SetTimeout

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

SetTimeout adds the timeout to the list app ui params

func (*ListAppUIParams) WithContext

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

WithContext adds the context to the list app ui params

func (*ListAppUIParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the list app ui params

func (*ListAppUIParams) WithLimit

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

WithLimit adds the limit to the list app ui params

func (*ListAppUIParams) WithName

func (o *ListAppUIParams) WithName(name *string) *ListAppUIParams

WithName adds the name to the list app ui params

func (*ListAppUIParams) WithNamespace

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

WithNamespace adds the namespace to the list app ui params

func (*ListAppUIParams) WithOffset

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

WithOffset adds the offset to the list app ui params

func (*ListAppUIParams) WithTimeout

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

WithTimeout adds the timeout to the list app ui params

func (*ListAppUIParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type ListAppUIReader

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

ListAppUIReader is a Reader for the ListAppUI structure.

func (*ListAppUIReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UploadAppUIFileBadGateway

type UploadAppUIFileBadGateway struct {
	Payload *csmclientmodels.ResponseErrorResponse
}

UploadAppUIFileBadGateway handles this case with default header values.

Bad Gateway

func NewUploadAppUIFileBadGateway

func NewUploadAppUIFileBadGateway() *UploadAppUIFileBadGateway

NewUploadAppUIFileBadGateway creates a UploadAppUIFileBadGateway with default headers values

func (*UploadAppUIFileBadGateway) Error

func (o *UploadAppUIFileBadGateway) Error() string

func (*UploadAppUIFileBadGateway) GetPayload

func (*UploadAppUIFileBadGateway) ToJSONString

func (o *UploadAppUIFileBadGateway) ToJSONString() string

type UploadAppUIFileBadRequest

type UploadAppUIFileBadRequest struct {
	Payload *csmclientmodels.ResponseErrorResponse
}

UploadAppUIFileBadRequest handles this case with default header values.

Bad Request

func NewUploadAppUIFileBadRequest

func NewUploadAppUIFileBadRequest() *UploadAppUIFileBadRequest

NewUploadAppUIFileBadRequest creates a UploadAppUIFileBadRequest with default headers values

func (*UploadAppUIFileBadRequest) Error

func (o *UploadAppUIFileBadRequest) Error() string

func (*UploadAppUIFileBadRequest) GetPayload

func (*UploadAppUIFileBadRequest) ToJSONString

func (o *UploadAppUIFileBadRequest) ToJSONString() string

type UploadAppUIFileInternalServerError

type UploadAppUIFileInternalServerError struct {
	Payload *csmclientmodels.ResponseErrorResponse
}

UploadAppUIFileInternalServerError handles this case with default header values.

Internal Server Error

func NewUploadAppUIFileInternalServerError

func NewUploadAppUIFileInternalServerError() *UploadAppUIFileInternalServerError

NewUploadAppUIFileInternalServerError creates a UploadAppUIFileInternalServerError with default headers values

func (*UploadAppUIFileInternalServerError) Error

func (*UploadAppUIFileInternalServerError) GetPayload

func (*UploadAppUIFileInternalServerError) ToJSONString

func (o *UploadAppUIFileInternalServerError) ToJSONString() string

type UploadAppUIFileNotFound

type UploadAppUIFileNotFound struct {
	Payload *csmclientmodels.ResponseErrorResponse
}

UploadAppUIFileNotFound handles this case with default header values.

Not Found

func NewUploadAppUIFileNotFound

func NewUploadAppUIFileNotFound() *UploadAppUIFileNotFound

NewUploadAppUIFileNotFound creates a UploadAppUIFileNotFound with default headers values

func (*UploadAppUIFileNotFound) Error

func (o *UploadAppUIFileNotFound) Error() string

func (*UploadAppUIFileNotFound) GetPayload

func (*UploadAppUIFileNotFound) ToJSONString

func (o *UploadAppUIFileNotFound) ToJSONString() string

type UploadAppUIFileOK

type UploadAppUIFileOK struct {
	Payload *csmclientmodels.ApimodelUploadFileResponse
}

UploadAppUIFileOK handles this case with default header values.

OK

func NewUploadAppUIFileOK

func NewUploadAppUIFileOK() *UploadAppUIFileOK

NewUploadAppUIFileOK creates a UploadAppUIFileOK with default headers values

func (*UploadAppUIFileOK) Error

func (o *UploadAppUIFileOK) Error() string

func (*UploadAppUIFileOK) GetPayload

func (*UploadAppUIFileOK) ToJSONString

func (o *UploadAppUIFileOK) ToJSONString() string

type UploadAppUIFileParams

type UploadAppUIFileParams struct {

	/*RetryPolicy*/
	RetryPolicy *utils.Retry
	/*File
	  Zip file containing App UI assets

	*/
	File runtime.NamedReadCloser
	/*AppUIName
	  App UI Name

	*/
	AppUIName string
	/*Namespace
	  Game Namespace

	*/
	Namespace string
	/*Version
	  Version of the App UI assets, can be left empty by default is 'default'

	*/
	Version *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
}

UploadAppUIFileParams contains all the parameters to send to the API endpoint for the upload app ui file operation typically these are written to a http.Request

func NewUploadAppUIFileParams

func NewUploadAppUIFileParams() *UploadAppUIFileParams

NewUploadAppUIFileParams creates a new UploadAppUIFileParams object with the default values initialized.

func NewUploadAppUIFileParamsWithContext

func NewUploadAppUIFileParamsWithContext(ctx context.Context) *UploadAppUIFileParams

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

func NewUploadAppUIFileParamsWithHTTPClient

func NewUploadAppUIFileParamsWithHTTPClient(client *http.Client) *UploadAppUIFileParams

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

func NewUploadAppUIFileParamsWithTimeout

func NewUploadAppUIFileParamsWithTimeout(timeout time.Duration) *UploadAppUIFileParams

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

func (*UploadAppUIFileParams) SetAppUIName

func (o *UploadAppUIFileParams) SetAppUIName(appUIName string)

SetAppUIName adds the appUiName to the upload app ui file params

func (*UploadAppUIFileParams) SetAuthInfoWriter

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

SetAuthInfoWriter adds the authInfoWriter to the upload app ui file params

func (*UploadAppUIFileParams) SetContext

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

SetContext adds the context to the upload app ui file params

func (*UploadAppUIFileParams) SetFile

SetFile adds the file to the upload app ui file params

func (*UploadAppUIFileParams) SetFlightId

func (o *UploadAppUIFileParams) SetFlightId(flightId string)

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

func (*UploadAppUIFileParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the upload app ui file params

func (*UploadAppUIFileParams) SetHTTPClientTransport

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

SetHTTPClient adds the HTTPClient Transport to the upload app ui file params

func (*UploadAppUIFileParams) SetNamespace

func (o *UploadAppUIFileParams) SetNamespace(namespace string)

SetNamespace adds the namespace to the upload app ui file params

func (*UploadAppUIFileParams) SetTimeout

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

SetTimeout adds the timeout to the upload app ui file params

func (*UploadAppUIFileParams) SetVersion

func (o *UploadAppUIFileParams) SetVersion(version *string)

SetVersion adds the version to the upload app ui file params

func (*UploadAppUIFileParams) WithAppUIName

func (o *UploadAppUIFileParams) WithAppUIName(appUIName string) *UploadAppUIFileParams

WithAppUIName adds the appUIName to the upload app ui file params

func (*UploadAppUIFileParams) WithContext

WithContext adds the context to the upload app ui file params

func (*UploadAppUIFileParams) WithFile

WithFile adds the file to the upload app ui file params

func (*UploadAppUIFileParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the upload app ui file params

func (*UploadAppUIFileParams) WithNamespace

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

WithNamespace adds the namespace to the upload app ui file params

func (*UploadAppUIFileParams) WithTimeout

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

WithTimeout adds the timeout to the upload app ui file params

func (*UploadAppUIFileParams) WithVersion

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

WithVersion adds the version to the upload app ui file params

func (*UploadAppUIFileParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type UploadAppUIFileReader

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

UploadAppUIFileReader is a Reader for the UploadAppUIFile structure.

func (*UploadAppUIFileReader) ReadResponse

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

ReadResponse reads a server response into the received o.

Jump to

Keyboard shortcuts

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