Updating table to remove extra closing table row (#2725)
This commit is contained in:
parent
fde52284cc
commit
5cf9203223
1 changed files with 53 additions and 50 deletions
|
@ -10,56 +10,59 @@ An implementation of the `storagedriver.StorageDriver` interface which uses Goog
|
||||||
|
|
||||||
|
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<thead>
|
||||||
<th>Parameter</th>
|
<tr>
|
||||||
<th>Required</th>
|
<th>Parameter</th>
|
||||||
<th>Description</th>
|
<th>Required</th>
|
||||||
</tr>
|
<th>Description</th>
|
||||||
<tr>
|
</tr>
|
||||||
<td>
|
</thead>
|
||||||
<code>bucket</code>
|
<tbody>
|
||||||
</td>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
yes
|
<code>bucket</code>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
Storage bucket name.
|
yes
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
<td>
|
||||||
<tr>
|
Storage bucket name.
|
||||||
<td>
|
</td>
|
||||||
<code>keyfile</code>
|
</tr>
|
||||||
</td>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
no
|
<code>keyfile</code>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
A private service account key file in JSON format. Instead of a key file <a href="https://developers.google.com/identity/protocols/application-default-credentials">Google Application Default Credentials</a> can be used.
|
no
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
<td>
|
||||||
<tr>
|
A private service account key file in JSON format. Instead of a key file <a href="https://developers.google.com/identity/protocols/application-default-credentials">Google Application Default Credentials</a> can be used.
|
||||||
<td>
|
</td>
|
||||||
<code>rootdirectory</code>
|
</tr>
|
||||||
</td>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
no
|
<code>rootdirectory</code>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
This is a prefix that will be applied to all Google Cloud Storage keys to allow you to segment data in your bucket if necessary.
|
no
|
||||||
</tr>
|
</td>
|
||||||
</tr>
|
<td>
|
||||||
<tr>
|
This is a prefix that will be applied to all Google Cloud Storage keys to allow you to segment data in your bucket if necessary.
|
||||||
<td>
|
</td>
|
||||||
<code>chunksize</code>
|
</tr>
|
||||||
</td>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
no (default 5242880)
|
<code>chunksize</code>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
This is the chunk size used for uploading large blobs, must be a multiple of 256*1024.
|
no (default 5242880)
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
<td>
|
||||||
|
This is the chunk size used for uploading large blobs, must be a multiple of 256*1024.
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue