Documentation ¶
Index ¶
- type Client
- func (c *Client) CreateBucket(bucket string, params map[string]string) CreateBucketResponse
- func (c *Client) Delete(bucket, key string) DeleteResponse
- func (c *Client) Get(bucket, key string) GetResponse
- func (c *Client) Put(bucket, key string, payload goja.ArrayBuffer) PutResponse
- func (c *Client) VerifyHash(bucket, key, expectedHash string) VerifyHashResponse
- type CreateBucketResponse
- type DeleteResponse
- type GetResponse
- type PutResponse
- type RootModule
- type S3
- type VerifyHashResponse
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
}
func (*Client) CreateBucket ¶
func (c *Client) CreateBucket(bucket string, params map[string]string) CreateBucketResponse
func (*Client) Delete ¶
func (c *Client) Delete(bucket, key string) DeleteResponse
func (*Client) Get ¶
func (c *Client) Get(bucket, key string) GetResponse
func (*Client) Put ¶
func (c *Client) Put(bucket, key string, payload goja.ArrayBuffer) PutResponse
func (*Client) VerifyHash ¶
func (c *Client) VerifyHash(bucket, key, expectedHash string) VerifyHashResponse
type CreateBucketResponse ¶
type DeleteResponse ¶
type GetResponse ¶
type PutResponse ¶
type RootModule ¶
type RootModule struct{}
RootModule is the global module object type. It is instantiated once per test run and will be used to create k6/x/neofs/s3 module instances for each VU.
func (*RootModule) NewModuleInstance ¶
func (r *RootModule) NewModuleInstance(vu modules.VU) modules.Instance
NewModuleInstance implements the modules.Module interface and returns a new instance for each VU.
type S3 ¶
type S3 struct {
// contains filtered or unexported fields
}
S3 represents an instance of the module for every VU.
type VerifyHashResponse ¶
Click to show internal directories.
Click to hide internal directories.