file_upload

package
v0.0.0-...-f573b6e Latest Latest
Warning

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

Go to latest
Published: Jul 16, 2021 License: MIT Imports: 12 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 file upload API

func (*Client) GeneratedUploadURL

GeneratedUploadURL generates upload URL

Generate an upload URL. It's valid for 10 minutes.<br/>Other detail info: <ul><li><i>Required permission</i>: resource = <b>"ADMIN:NAMESPACE:{namespace}:FILEUPLOAD"</b>, action=1 <b>(CREATE)</b></li><li><i>Action code</i>: 11101</li><li><i>Returns</i>: URL data</li></ul>

func (*Client) GeneratedUserUploadContentURL

GeneratedUserUploadContentURL generates upload URL for user content

Generate an upload URL for user content. It's valid for 10 minutes.<br/>There are 2 kinds of storage limitation per user : maximum file count and maximum file size.<br/>Other detail info: <ul><li><i>Required permission</i>: resource = <b>"ADMIN:NAMESPACE:{namespace}:USER:{userId}:FILEUPLOAD"</b>, action=1 <b>(CREATE)</b></li><li><i>Action code</i>: 11102</li><li><i>Default maximum file count per user</i>: 10 files</li><li><i>Default maximum file size per user</i>: 104857600 bytes</li><li><i>Returns</i>: URL data</li></ul>

func (*Client) PublicGeneratedUploadURL

PublicGeneratedUploadURL generates upload URL

Generate an upload URL. It's valid for 10 minutes.<br/>Other detail info: <ul><li><i>Required permission</i>: resource = <b>"NAMESPACE:{namespace}:FILEUPLOAD"</b>, action=1 <b>(CREATE)</b></li><li><i>Action code</i>: 11101</li><li><i>Returns</i>: URL data</li></ul>

func (*Client) PublicGeneratedUserUploadContentURL

PublicGeneratedUserUploadContentURL generates upload URL for user content

Generate an upload URL for user content. It's valid for 10 minutes.<br/>There are 2 kinds of storage limitation per user : maximum file count and maximum file size.<br/>Other detail info: <ul><li><i>Required permission</i>: resource = <b>"NAMESPACE:{namespace}:USER:{userId}:FILEUPLOAD"</b>, action=1 <b>(CREATE)</b></li><li><i>Action code</i>: 11102</li><li><i>Default maximum file count per user</i>: 10 files</li><li><i>Default maximum file size per user</i>: 104857600 bytes</li><li><i>Returns</i>: URL data</li></ul>

func (*Client) SetTransport

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

SetTransport changes the transport on the client

type ClientService

ClientService is the interface for Client methods

func New

func New(transport runtime.ClientTransport, formats strfmt.Registry) ClientService

New creates a new file upload API client.

type GeneratedUploadURLBadRequest

type GeneratedUploadURLBadRequest struct {
	Payload *basicclientmodels.ValidationErrorEntity
}

GeneratedUploadURLBadRequest handles this case with default header values.

<table><tr><td>errorCode</td><td>errorMessage</td></tr><tr><td>20002</td><td>validation error</td></tr><tr><td>11131</td><td>file type not supported</td></tr></table>

func NewGeneratedUploadURLBadRequest

func NewGeneratedUploadURLBadRequest() *GeneratedUploadURLBadRequest

NewGeneratedUploadURLBadRequest creates a GeneratedUploadURLBadRequest with default headers values

func (*GeneratedUploadURLBadRequest) Error

func (*GeneratedUploadURLBadRequest) GetPayload

type GeneratedUploadURLForbidden

type GeneratedUploadURLForbidden struct {
	Payload *basicclientmodels.ErrorEntity
}

GeneratedUploadURLForbidden handles this case with default header values.

<table><tr><td>errorCode</td><td>errorMessage</td></tr><tr><td>20013</td><td>insufficient permission</td></tr></table>

func NewGeneratedUploadURLForbidden

func NewGeneratedUploadURLForbidden() *GeneratedUploadURLForbidden

NewGeneratedUploadURLForbidden creates a GeneratedUploadURLForbidden with default headers values

func (*GeneratedUploadURLForbidden) Error

func (*GeneratedUploadURLForbidden) GetPayload

type GeneratedUploadURLInternalServerError

type GeneratedUploadURLInternalServerError struct {
	Payload *basicclientmodels.ErrorEntity
}

GeneratedUploadURLInternalServerError handles this case with default header values.

<table><tr><td>errorCode</td><td>errorMessage</td></tr><tr><td>20000</td><td>internal server error</td></tr></table>

func NewGeneratedUploadURLInternalServerError

func NewGeneratedUploadURLInternalServerError() *GeneratedUploadURLInternalServerError

NewGeneratedUploadURLInternalServerError creates a GeneratedUploadURLInternalServerError with default headers values

func (*GeneratedUploadURLInternalServerError) Error

func (*GeneratedUploadURLInternalServerError) GetPayload

type GeneratedUploadURLOK

type GeneratedUploadURLOK struct {
	Payload *basicclientmodels.FileUploadURLInfo
}

GeneratedUploadURLOK handles this case with default header values.

Successful operation

func NewGeneratedUploadURLOK

func NewGeneratedUploadURLOK() *GeneratedUploadURLOK

NewGeneratedUploadURLOK creates a GeneratedUploadURLOK with default headers values

func (*GeneratedUploadURLOK) Error

func (o *GeneratedUploadURLOK) Error() string

func (*GeneratedUploadURLOK) GetPayload

type GeneratedUploadURLParams

type GeneratedUploadURLParams struct {

	/*FileType
	  one of the these types: jpeg, jpg, png, bmp, gif, mp3, bin

	*/
	FileType string
	/*Folder
	  the name of folder where the file will be uploaded, must be between 1-256 characters, all characters allowed no whitespace

	*/
	Folder string
	/*Namespace
	  namespace, only accept alphabet and numeric

	*/
	Namespace string

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

GeneratedUploadURLParams contains all the parameters to send to the API endpoint for the generated upload Url operation typically these are written to a http.Request

func NewGeneratedUploadURLParams

func NewGeneratedUploadURLParams() *GeneratedUploadURLParams

NewGeneratedUploadURLParams creates a new GeneratedUploadURLParams object with the default values initialized.

func NewGeneratedUploadURLParamsWithContext

func NewGeneratedUploadURLParamsWithContext(ctx context.Context) *GeneratedUploadURLParams

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

func NewGeneratedUploadURLParamsWithHTTPClient

func NewGeneratedUploadURLParamsWithHTTPClient(client *http.Client) *GeneratedUploadURLParams

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

func NewGeneratedUploadURLParamsWithTimeout

func NewGeneratedUploadURLParamsWithTimeout(timeout time.Duration) *GeneratedUploadURLParams

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

func (*GeneratedUploadURLParams) SetContext

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

SetContext adds the context to the generated upload Url params

func (*GeneratedUploadURLParams) SetFileType

func (o *GeneratedUploadURLParams) SetFileType(fileType string)

SetFileType adds the fileType to the generated upload Url params

func (*GeneratedUploadURLParams) SetFolder

func (o *GeneratedUploadURLParams) SetFolder(folder string)

SetFolder adds the folder to the generated upload Url params

func (*GeneratedUploadURLParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the generated upload Url params

func (*GeneratedUploadURLParams) SetNamespace

func (o *GeneratedUploadURLParams) SetNamespace(namespace string)

SetNamespace adds the namespace to the generated upload Url params

func (*GeneratedUploadURLParams) SetTimeout

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

SetTimeout adds the timeout to the generated upload Url params

func (*GeneratedUploadURLParams) WithContext

WithContext adds the context to the generated upload Url params

func (*GeneratedUploadURLParams) WithFileType

func (o *GeneratedUploadURLParams) WithFileType(fileType string) *GeneratedUploadURLParams

WithFileType adds the fileType to the generated upload Url params

func (*GeneratedUploadURLParams) WithFolder

WithFolder adds the folder to the generated upload Url params

func (*GeneratedUploadURLParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the generated upload Url params

func (*GeneratedUploadURLParams) WithNamespace

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

WithNamespace adds the namespace to the generated upload Url params

func (*GeneratedUploadURLParams) WithTimeout

WithTimeout adds the timeout to the generated upload Url params

func (*GeneratedUploadURLParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GeneratedUploadURLReader

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

GeneratedUploadURLReader is a Reader for the GeneratedUploadURL structure.

func (*GeneratedUploadURLReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GeneratedUploadURLUnauthorized

type GeneratedUploadURLUnauthorized struct {
	Payload *basicclientmodels.ErrorEntity
}

GeneratedUploadURLUnauthorized handles this case with default header values.

<table><tr><td>errorCode</td><td>errorMessage</td></tr><tr><td>20001</td><td>unauthorized</td></tr></table>

func NewGeneratedUploadURLUnauthorized

func NewGeneratedUploadURLUnauthorized() *GeneratedUploadURLUnauthorized

NewGeneratedUploadURLUnauthorized creates a GeneratedUploadURLUnauthorized with default headers values

func (*GeneratedUploadURLUnauthorized) Error

func (*GeneratedUploadURLUnauthorized) GetPayload

type GeneratedUserUploadContentURLBadRequest

type GeneratedUserUploadContentURLBadRequest struct {
	Payload *basicclientmodels.ValidationErrorEntity
}

GeneratedUserUploadContentURLBadRequest handles this case with default header values.

<table><tr><td>errorCode</td><td>errorMessage</td></tr><tr><td>20002</td><td>validation error</td></tr><tr><td>11131</td><td>file type not supported</td></tr></table>

func NewGeneratedUserUploadContentURLBadRequest

func NewGeneratedUserUploadContentURLBadRequest() *GeneratedUserUploadContentURLBadRequest

NewGeneratedUserUploadContentURLBadRequest creates a GeneratedUserUploadContentURLBadRequest with default headers values

func (*GeneratedUserUploadContentURLBadRequest) Error

func (*GeneratedUserUploadContentURLBadRequest) GetPayload

type GeneratedUserUploadContentURLConflict

type GeneratedUserUploadContentURLConflict struct {
	Payload *basicclientmodels.ErrorEntity
}

GeneratedUserUploadContentURLConflict handles this case with default header values.

<table><tr><td>errorCode</td><td>errorMessage</td></tr><tr><td>11132</td><td>storage limit exceeded</td></tr></table>

func NewGeneratedUserUploadContentURLConflict

func NewGeneratedUserUploadContentURLConflict() *GeneratedUserUploadContentURLConflict

NewGeneratedUserUploadContentURLConflict creates a GeneratedUserUploadContentURLConflict with default headers values

func (*GeneratedUserUploadContentURLConflict) Error

func (*GeneratedUserUploadContentURLConflict) GetPayload

type GeneratedUserUploadContentURLForbidden

type GeneratedUserUploadContentURLForbidden struct {
	Payload *basicclientmodels.ErrorEntity
}

GeneratedUserUploadContentURLForbidden handles this case with default header values.

<table><tr><td>errorCode</td><td>errorMessage</td></tr><tr><td>20013</td><td>insufficient permission</td></tr></table>

func NewGeneratedUserUploadContentURLForbidden

func NewGeneratedUserUploadContentURLForbidden() *GeneratedUserUploadContentURLForbidden

NewGeneratedUserUploadContentURLForbidden creates a GeneratedUserUploadContentURLForbidden with default headers values

func (*GeneratedUserUploadContentURLForbidden) Error

func (*GeneratedUserUploadContentURLForbidden) GetPayload

type GeneratedUserUploadContentURLInternalServerError

type GeneratedUserUploadContentURLInternalServerError struct {
	Payload *basicclientmodels.ErrorEntity
}

GeneratedUserUploadContentURLInternalServerError handles this case with default header values.

<table><tr><td>errorCode</td><td>errorMessage</td></tr><tr><td>20000</td><td>internal server error</td></tr></table>

func NewGeneratedUserUploadContentURLInternalServerError

func NewGeneratedUserUploadContentURLInternalServerError() *GeneratedUserUploadContentURLInternalServerError

NewGeneratedUserUploadContentURLInternalServerError creates a GeneratedUserUploadContentURLInternalServerError with default headers values

func (*GeneratedUserUploadContentURLInternalServerError) Error

func (*GeneratedUserUploadContentURLInternalServerError) GetPayload

type GeneratedUserUploadContentURLOK

type GeneratedUserUploadContentURLOK struct {
	Payload *basicclientmodels.FileUploadURLInfo
}

GeneratedUserUploadContentURLOK handles this case with default header values.

Successful operation

func NewGeneratedUserUploadContentURLOK

func NewGeneratedUserUploadContentURLOK() *GeneratedUserUploadContentURLOK

NewGeneratedUserUploadContentURLOK creates a GeneratedUserUploadContentURLOK with default headers values

func (*GeneratedUserUploadContentURLOK) Error

func (*GeneratedUserUploadContentURLOK) GetPayload

type GeneratedUserUploadContentURLParams

type GeneratedUserUploadContentURLParams struct {

	/*FileType
	  one of the these types: jpeg, jpg, png, bmp, gif, mp3, bin

	*/
	FileType string
	/*Namespace
	  namespace, only accept alphabet and numeric

	*/
	Namespace string
	/*UserID
	  user's id, should follow UUID version 4 without hyphen

	*/
	UserID string

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

GeneratedUserUploadContentURLParams contains all the parameters to send to the API endpoint for the generated user upload content Url operation typically these are written to a http.Request

func NewGeneratedUserUploadContentURLParams

func NewGeneratedUserUploadContentURLParams() *GeneratedUserUploadContentURLParams

NewGeneratedUserUploadContentURLParams creates a new GeneratedUserUploadContentURLParams object with the default values initialized.

func NewGeneratedUserUploadContentURLParamsWithContext

func NewGeneratedUserUploadContentURLParamsWithContext(ctx context.Context) *GeneratedUserUploadContentURLParams

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

func NewGeneratedUserUploadContentURLParamsWithHTTPClient

func NewGeneratedUserUploadContentURLParamsWithHTTPClient(client *http.Client) *GeneratedUserUploadContentURLParams

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

func NewGeneratedUserUploadContentURLParamsWithTimeout

func NewGeneratedUserUploadContentURLParamsWithTimeout(timeout time.Duration) *GeneratedUserUploadContentURLParams

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

func (*GeneratedUserUploadContentURLParams) SetContext

SetContext adds the context to the generated user upload content Url params

func (*GeneratedUserUploadContentURLParams) SetFileType

func (o *GeneratedUserUploadContentURLParams) SetFileType(fileType string)

SetFileType adds the fileType to the generated user upload content Url params

func (*GeneratedUserUploadContentURLParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the generated user upload content Url params

func (*GeneratedUserUploadContentURLParams) SetNamespace

func (o *GeneratedUserUploadContentURLParams) SetNamespace(namespace string)

SetNamespace adds the namespace to the generated user upload content Url params

func (*GeneratedUserUploadContentURLParams) SetTimeout

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

SetTimeout adds the timeout to the generated user upload content Url params

func (*GeneratedUserUploadContentURLParams) SetUserID

func (o *GeneratedUserUploadContentURLParams) SetUserID(userID string)

SetUserID adds the userId to the generated user upload content Url params

func (*GeneratedUserUploadContentURLParams) WithContext

WithContext adds the context to the generated user upload content Url params

func (*GeneratedUserUploadContentURLParams) WithFileType

WithFileType adds the fileType to the generated user upload content Url params

func (*GeneratedUserUploadContentURLParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the generated user upload content Url params

func (*GeneratedUserUploadContentURLParams) WithNamespace

WithNamespace adds the namespace to the generated user upload content Url params

func (*GeneratedUserUploadContentURLParams) WithTimeout

WithTimeout adds the timeout to the generated user upload content Url params

func (*GeneratedUserUploadContentURLParams) WithUserID

WithUserID adds the userID to the generated user upload content Url params

func (*GeneratedUserUploadContentURLParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GeneratedUserUploadContentURLReader

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

GeneratedUserUploadContentURLReader is a Reader for the GeneratedUserUploadContentURL structure.

func (*GeneratedUserUploadContentURLReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GeneratedUserUploadContentURLUnauthorized

type GeneratedUserUploadContentURLUnauthorized struct {
	Payload *basicclientmodels.ErrorEntity
}

GeneratedUserUploadContentURLUnauthorized handles this case with default header values.

<table><tr><td>errorCode</td><td>errorMessage</td></tr><tr><td>20001</td><td>unauthorized</td></tr></table>

func NewGeneratedUserUploadContentURLUnauthorized

func NewGeneratedUserUploadContentURLUnauthorized() *GeneratedUserUploadContentURLUnauthorized

NewGeneratedUserUploadContentURLUnauthorized creates a GeneratedUserUploadContentURLUnauthorized with default headers values

func (*GeneratedUserUploadContentURLUnauthorized) Error

func (*GeneratedUserUploadContentURLUnauthorized) GetPayload

type PublicGeneratedUploadURLBadRequest

type PublicGeneratedUploadURLBadRequest struct {
	Payload *basicclientmodels.ValidationErrorEntity
}

PublicGeneratedUploadURLBadRequest handles this case with default header values.

<table><tr><td>errorCode</td><td>errorMessage</td></tr><tr><td>20002</td><td>validation error</td></tr><tr><td>11131</td><td>file type not supported</td></tr></table>

func NewPublicGeneratedUploadURLBadRequest

func NewPublicGeneratedUploadURLBadRequest() *PublicGeneratedUploadURLBadRequest

NewPublicGeneratedUploadURLBadRequest creates a PublicGeneratedUploadURLBadRequest with default headers values

func (*PublicGeneratedUploadURLBadRequest) Error

func (*PublicGeneratedUploadURLBadRequest) GetPayload

type PublicGeneratedUploadURLForbidden

type PublicGeneratedUploadURLForbidden struct {
	Payload *basicclientmodels.ErrorEntity
}

PublicGeneratedUploadURLForbidden handles this case with default header values.

<table><tr><td>errorCode</td><td>errorMessage</td></tr><tr><td>20013</td><td>insufficient permission</td></tr></table>

func NewPublicGeneratedUploadURLForbidden

func NewPublicGeneratedUploadURLForbidden() *PublicGeneratedUploadURLForbidden

NewPublicGeneratedUploadURLForbidden creates a PublicGeneratedUploadURLForbidden with default headers values

func (*PublicGeneratedUploadURLForbidden) Error

func (*PublicGeneratedUploadURLForbidden) GetPayload

type PublicGeneratedUploadURLInternalServerError

type PublicGeneratedUploadURLInternalServerError struct {
	Payload *basicclientmodels.ErrorEntity
}

PublicGeneratedUploadURLInternalServerError handles this case with default header values.

<table><tr><td>errorCode</td><td>errorMessage</td></tr><tr><td>20000</td><td>internal server error</td></tr></table>

func NewPublicGeneratedUploadURLInternalServerError

func NewPublicGeneratedUploadURLInternalServerError() *PublicGeneratedUploadURLInternalServerError

NewPublicGeneratedUploadURLInternalServerError creates a PublicGeneratedUploadURLInternalServerError with default headers values

func (*PublicGeneratedUploadURLInternalServerError) Error

func (*PublicGeneratedUploadURLInternalServerError) GetPayload

type PublicGeneratedUploadURLOK

type PublicGeneratedUploadURLOK struct {
	Payload *basicclientmodels.FileUploadURLInfo
}

PublicGeneratedUploadURLOK handles this case with default header values.

Successful operation

func NewPublicGeneratedUploadURLOK

func NewPublicGeneratedUploadURLOK() *PublicGeneratedUploadURLOK

NewPublicGeneratedUploadURLOK creates a PublicGeneratedUploadURLOK with default headers values

func (*PublicGeneratedUploadURLOK) Error

func (*PublicGeneratedUploadURLOK) GetPayload

type PublicGeneratedUploadURLParams

type PublicGeneratedUploadURLParams struct {

	/*FileType
	  one of the these types: jpeg, jpg, png, bmp, gif, mp3, bin

	*/
	FileType string
	/*Folder
	  the name of folder where the file will be uploaded, must be between 1-256 characters, all characters allowed no whitespace

	*/
	Folder string
	/*Namespace
	  namespace, only accept alphabet and numeric

	*/
	Namespace string

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

PublicGeneratedUploadURLParams contains all the parameters to send to the API endpoint for the public generated upload Url operation typically these are written to a http.Request

func NewPublicGeneratedUploadURLParams

func NewPublicGeneratedUploadURLParams() *PublicGeneratedUploadURLParams

NewPublicGeneratedUploadURLParams creates a new PublicGeneratedUploadURLParams object with the default values initialized.

func NewPublicGeneratedUploadURLParamsWithContext

func NewPublicGeneratedUploadURLParamsWithContext(ctx context.Context) *PublicGeneratedUploadURLParams

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

func NewPublicGeneratedUploadURLParamsWithHTTPClient

func NewPublicGeneratedUploadURLParamsWithHTTPClient(client *http.Client) *PublicGeneratedUploadURLParams

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

func NewPublicGeneratedUploadURLParamsWithTimeout

func NewPublicGeneratedUploadURLParamsWithTimeout(timeout time.Duration) *PublicGeneratedUploadURLParams

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

func (*PublicGeneratedUploadURLParams) SetContext

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

SetContext adds the context to the public generated upload Url params

func (*PublicGeneratedUploadURLParams) SetFileType

func (o *PublicGeneratedUploadURLParams) SetFileType(fileType string)

SetFileType adds the fileType to the public generated upload Url params

func (*PublicGeneratedUploadURLParams) SetFolder

func (o *PublicGeneratedUploadURLParams) SetFolder(folder string)

SetFolder adds the folder to the public generated upload Url params

func (*PublicGeneratedUploadURLParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the public generated upload Url params

func (*PublicGeneratedUploadURLParams) SetNamespace

func (o *PublicGeneratedUploadURLParams) SetNamespace(namespace string)

SetNamespace adds the namespace to the public generated upload Url params

func (*PublicGeneratedUploadURLParams) SetTimeout

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

SetTimeout adds the timeout to the public generated upload Url params

func (*PublicGeneratedUploadURLParams) WithContext

WithContext adds the context to the public generated upload Url params

func (*PublicGeneratedUploadURLParams) WithFileType

WithFileType adds the fileType to the public generated upload Url params

func (*PublicGeneratedUploadURLParams) WithFolder

WithFolder adds the folder to the public generated upload Url params

func (*PublicGeneratedUploadURLParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the public generated upload Url params

func (*PublicGeneratedUploadURLParams) WithNamespace

WithNamespace adds the namespace to the public generated upload Url params

func (*PublicGeneratedUploadURLParams) WithTimeout

WithTimeout adds the timeout to the public generated upload Url params

func (*PublicGeneratedUploadURLParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PublicGeneratedUploadURLReader

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

PublicGeneratedUploadURLReader is a Reader for the PublicGeneratedUploadURL structure.

func (*PublicGeneratedUploadURLReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PublicGeneratedUploadURLUnauthorized

type PublicGeneratedUploadURLUnauthorized struct {
	Payload *basicclientmodels.ErrorEntity
}

PublicGeneratedUploadURLUnauthorized handles this case with default header values.

<table><tr><td>errorCode</td><td>errorMessage</td></tr><tr><td>20001</td><td>unauthorized</td></tr></table>

func NewPublicGeneratedUploadURLUnauthorized

func NewPublicGeneratedUploadURLUnauthorized() *PublicGeneratedUploadURLUnauthorized

NewPublicGeneratedUploadURLUnauthorized creates a PublicGeneratedUploadURLUnauthorized with default headers values

func (*PublicGeneratedUploadURLUnauthorized) Error

func (*PublicGeneratedUploadURLUnauthorized) GetPayload

type PublicGeneratedUserUploadContentURLBadRequest

type PublicGeneratedUserUploadContentURLBadRequest struct {
	Payload *basicclientmodels.ValidationErrorEntity
}

PublicGeneratedUserUploadContentURLBadRequest handles this case with default header values.

<table><tr><td>errorCode</td><td>errorMessage</td></tr><tr><td>20002</td><td>validation error</td></tr><tr><td>11131</td><td>file type not supported</td></tr></table>

func NewPublicGeneratedUserUploadContentURLBadRequest

func NewPublicGeneratedUserUploadContentURLBadRequest() *PublicGeneratedUserUploadContentURLBadRequest

NewPublicGeneratedUserUploadContentURLBadRequest creates a PublicGeneratedUserUploadContentURLBadRequest with default headers values

func (*PublicGeneratedUserUploadContentURLBadRequest) Error

func (*PublicGeneratedUserUploadContentURLBadRequest) GetPayload

type PublicGeneratedUserUploadContentURLConflict

type PublicGeneratedUserUploadContentURLConflict struct {
	Payload *basicclientmodels.ErrorEntity
}

PublicGeneratedUserUploadContentURLConflict handles this case with default header values.

<table><tr><td>errorCode</td><td>errorMessage</td></tr><tr><td>11132</td><td>storage limit exceeded</td></tr></table>

func NewPublicGeneratedUserUploadContentURLConflict

func NewPublicGeneratedUserUploadContentURLConflict() *PublicGeneratedUserUploadContentURLConflict

NewPublicGeneratedUserUploadContentURLConflict creates a PublicGeneratedUserUploadContentURLConflict with default headers values

func (*PublicGeneratedUserUploadContentURLConflict) Error

func (*PublicGeneratedUserUploadContentURLConflict) GetPayload

type PublicGeneratedUserUploadContentURLForbidden

type PublicGeneratedUserUploadContentURLForbidden struct {
	Payload *basicclientmodels.ErrorEntity
}

PublicGeneratedUserUploadContentURLForbidden handles this case with default header values.

<table><tr><td>errorCode</td><td>errorMessage</td></tr><tr><td>20013</td><td>insufficient permission</td></tr></table>

func NewPublicGeneratedUserUploadContentURLForbidden

func NewPublicGeneratedUserUploadContentURLForbidden() *PublicGeneratedUserUploadContentURLForbidden

NewPublicGeneratedUserUploadContentURLForbidden creates a PublicGeneratedUserUploadContentURLForbidden with default headers values

func (*PublicGeneratedUserUploadContentURLForbidden) Error

func (*PublicGeneratedUserUploadContentURLForbidden) GetPayload

type PublicGeneratedUserUploadContentURLInternalServerError

type PublicGeneratedUserUploadContentURLInternalServerError struct {
	Payload *basicclientmodels.ErrorEntity
}

PublicGeneratedUserUploadContentURLInternalServerError handles this case with default header values.

<table><tr><td>errorCode</td><td>errorMessage</td></tr><tr><td>20000</td><td>internal server error</td></tr></table>

func NewPublicGeneratedUserUploadContentURLInternalServerError

func NewPublicGeneratedUserUploadContentURLInternalServerError() *PublicGeneratedUserUploadContentURLInternalServerError

NewPublicGeneratedUserUploadContentURLInternalServerError creates a PublicGeneratedUserUploadContentURLInternalServerError with default headers values

func (*PublicGeneratedUserUploadContentURLInternalServerError) Error

func (*PublicGeneratedUserUploadContentURLInternalServerError) GetPayload

type PublicGeneratedUserUploadContentURLOK

type PublicGeneratedUserUploadContentURLOK struct {
	Payload *basicclientmodels.FileUploadURLInfo
}

PublicGeneratedUserUploadContentURLOK handles this case with default header values.

Successful operation

func NewPublicGeneratedUserUploadContentURLOK

func NewPublicGeneratedUserUploadContentURLOK() *PublicGeneratedUserUploadContentURLOK

NewPublicGeneratedUserUploadContentURLOK creates a PublicGeneratedUserUploadContentURLOK with default headers values

func (*PublicGeneratedUserUploadContentURLOK) Error

func (*PublicGeneratedUserUploadContentURLOK) GetPayload

type PublicGeneratedUserUploadContentURLParams

type PublicGeneratedUserUploadContentURLParams struct {

	/*FileType
	  one of the these types: jpeg, jpg, png, bmp, gif, mp3, bin

	*/
	FileType string
	/*Namespace
	  namespace, only accept alphabet and numeric

	*/
	Namespace string
	/*UserID
	  user's id, should follow UUID version 4 without hyphen

	*/
	UserID string

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

PublicGeneratedUserUploadContentURLParams contains all the parameters to send to the API endpoint for the public generated user upload content Url operation typically these are written to a http.Request

func NewPublicGeneratedUserUploadContentURLParams

func NewPublicGeneratedUserUploadContentURLParams() *PublicGeneratedUserUploadContentURLParams

NewPublicGeneratedUserUploadContentURLParams creates a new PublicGeneratedUserUploadContentURLParams object with the default values initialized.

func NewPublicGeneratedUserUploadContentURLParamsWithContext

func NewPublicGeneratedUserUploadContentURLParamsWithContext(ctx context.Context) *PublicGeneratedUserUploadContentURLParams

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

func NewPublicGeneratedUserUploadContentURLParamsWithHTTPClient

func NewPublicGeneratedUserUploadContentURLParamsWithHTTPClient(client *http.Client) *PublicGeneratedUserUploadContentURLParams

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

func NewPublicGeneratedUserUploadContentURLParamsWithTimeout

func NewPublicGeneratedUserUploadContentURLParamsWithTimeout(timeout time.Duration) *PublicGeneratedUserUploadContentURLParams

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

func (*PublicGeneratedUserUploadContentURLParams) SetContext

SetContext adds the context to the public generated user upload content Url params

func (*PublicGeneratedUserUploadContentURLParams) SetFileType

func (o *PublicGeneratedUserUploadContentURLParams) SetFileType(fileType string)

SetFileType adds the fileType to the public generated user upload content Url params

func (*PublicGeneratedUserUploadContentURLParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the public generated user upload content Url params

func (*PublicGeneratedUserUploadContentURLParams) SetNamespace

func (o *PublicGeneratedUserUploadContentURLParams) SetNamespace(namespace string)

SetNamespace adds the namespace to the public generated user upload content Url params

func (*PublicGeneratedUserUploadContentURLParams) SetTimeout

SetTimeout adds the timeout to the public generated user upload content Url params

func (*PublicGeneratedUserUploadContentURLParams) SetUserID

SetUserID adds the userId to the public generated user upload content Url params

func (*PublicGeneratedUserUploadContentURLParams) WithContext

WithContext adds the context to the public generated user upload content Url params

func (*PublicGeneratedUserUploadContentURLParams) WithFileType

WithFileType adds the fileType to the public generated user upload content Url params

func (*PublicGeneratedUserUploadContentURLParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the public generated user upload content Url params

func (*PublicGeneratedUserUploadContentURLParams) WithNamespace

WithNamespace adds the namespace to the public generated user upload content Url params

func (*PublicGeneratedUserUploadContentURLParams) WithTimeout

WithTimeout adds the timeout to the public generated user upload content Url params

func (*PublicGeneratedUserUploadContentURLParams) WithUserID

WithUserID adds the userID to the public generated user upload content Url params

func (*PublicGeneratedUserUploadContentURLParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PublicGeneratedUserUploadContentURLReader

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

PublicGeneratedUserUploadContentURLReader is a Reader for the PublicGeneratedUserUploadContentURL structure.

func (*PublicGeneratedUserUploadContentURLReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PublicGeneratedUserUploadContentURLUnauthorized

type PublicGeneratedUserUploadContentURLUnauthorized struct {
	Payload *basicclientmodels.ErrorEntity
}

PublicGeneratedUserUploadContentURLUnauthorized handles this case with default header values.

<table><tr><td>errorCode</td><td>errorMessage</td></tr><tr><td>20001</td><td>unauthorized</td></tr></table>

func NewPublicGeneratedUserUploadContentURLUnauthorized

func NewPublicGeneratedUserUploadContentURLUnauthorized() *PublicGeneratedUserUploadContentURLUnauthorized

NewPublicGeneratedUserUploadContentURLUnauthorized creates a PublicGeneratedUserUploadContentURLUnauthorized with default headers values

func (*PublicGeneratedUserUploadContentURLUnauthorized) Error

func (*PublicGeneratedUserUploadContentURLUnauthorized) GetPayload

Jump to

Keyboard shortcuts

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