File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed
src/ObjectStore/v1/Models Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -183,7 +183,17 @@ public function createObject(array $data)
183
183
}
184
184
185
185
/**
186
- * @param array $data
186
+ * Creates a Dynamic Large Object by chunking a file into smaller segments and uploading them into a holding
187
+ * container. When this completes, a manifest file is uploaded which references the prefix of the segments,
188
+ * allowing concatenation when a request is executed against the manifest.
189
+ *
190
+ * @param array $data {@see \OpenStack\ObjectStore\v1\Api::putObject}
191
+ * @param int $data['segmentSize'] The size in Bytes of each segment
192
+ * @param string $data['segmentContainer'] The container to which each segment will be uploaded
193
+ * @param string $data['segmentPrefix'] The prefix that will come before each segment. If omitted, a default
194
+ * is used: name/timestamp/filesize
195
+ *
196
+ * @return Object
187
197
*/
188
198
public function createLargeObject (array $ data )
189
199
{
You can’t perform that action at this time.
0 commit comments