@@ -100,6 +100,8 @@ put(path: string, body: string | ReadableStream | Blob | Buffer, options?: PutOp
100100 Blob based on these supported body types
101101- ` options ` : (Optional) A JSON object with the following optional parameters:
102102
103+ #### ` options `
104+
103105| ** Parameter** | ** Required** | ** Values** |
104106| ------------------ | ------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------- |
105107| access | No | The access level for the object. Possible values are ` public ` and ` private ` . |
@@ -188,6 +190,8 @@ get(path: string, format?: "string" | "file" | "stream", options?: GetOptions):
188190 values are ` string ` , ` file ` , and ` stream ` .
189191- ` options ` : (Optional) A JSON object with the following optional parameters:
190192
193+ #### ` options `
194+
191195| ** Parameter** | ** Required** | ** Values** |
192196| ------------------ | ------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------- |
193197| contentDisposition | No | Set the content disposition of the object. Possible values are ` inline ` and ` attachment ` . Default is ` inline ` . Use ` attachment ` for downloadable files. |
@@ -264,6 +268,8 @@ head(path: string, options?: HeadOptions): Promise<TigrisStorageResponse<HeadRes
264268- ` path ` : (Required) A string specifying the path to the object
265269- ` options ` : (Optional) A JSON object with the following optional parameters:
266270
271+ #### ` options `
272+
267273| ** Parameter** | ** Required** | ** Values** |
268274| ------------- | ------------ | -------------------------------------------------------------------------------- |
269275| config | No | A configuration object to override the [ default configuration] ( #authentication ) . |
@@ -316,6 +322,8 @@ remove(path: string, options?: RemoveOptions): Promise<TigrisStorageResponse<voi
316322- ` path ` : (Required) A string specifying the path to the object
317323- ` options ` : (Optional) A JSON object with the following optional parameters:
318324
325+ #### ` options `
326+
319327| ** Parameter** | ** Required** | ** Values** |
320328| ------------- | ------------ | -------------------------------------------------------------------------------- |
321329| config | No | A configuration object to override the [ default configuration] ( #authentication ) . |
@@ -353,6 +361,8 @@ getPresignedUrl(path: string, options: GetPresignedUrlOptions): Promise<TigrisSt
353361- ` path ` : (Required) A string specifying the path to the object
354362- ` options ` : (Optional) A JSON object with the following optional parameters:
355363
364+ #### ` options `
365+
356366| ** Parameter** | ** Required** | ** Values** |
357367| ------------- | ------------ | ---------------------------------------------------------------------------------------- |
358368| method | No | Specify the operation to use for the presigned URL. Possible values are ` get ` and ` put ` . |
@@ -401,6 +411,8 @@ list(options?: ListOptions): Promise<TigrisStorageResponse<ListResponse, Error>>
401411
402412- ` options ` : (Optional) A JSON object with the following optional parameters:
403413
414+ #### ` options `
415+
404416| ** Parameter** | ** Required** | ** Values** |
405417| ----------------------------------------- | ------------ | ------------------------------------------------------------------------------- |
406418| limit | No | The maximum number of objects to return. By default, returns up to 100 objects. |
0 commit comments