@@ -900,7 +900,8 @@ open class FilesRoutes {
900900 return client. request ( route, serverArgs: serverArgs, input: . stream( input) )
901901 }
902902
903- /// Append more data to an upload session. A single request should not upload more than 150 MB.
903+ /// Append more data to an upload session. A single request should not upload more than 150 MB. The maximum size of
904+ /// a file one can upload to an upload session is 350 GB.
904905 ///
905906 /// - parameter sessionId: The upload session ID (returned by uploadSessionStart).
906907 /// - parameter offset: The amount of data that has been uploaded so far. We use this to make sure upload data isn't
@@ -916,7 +917,8 @@ open class FilesRoutes {
916917 return client. request ( route, serverArgs: serverArgs, input: . data( input) )
917918 }
918919
919- /// Append more data to an upload session. A single request should not upload more than 150 MB.
920+ /// Append more data to an upload session. A single request should not upload more than 150 MB. The maximum size of
921+ /// a file one can upload to an upload session is 350 GB.
920922 ///
921923 /// - parameter sessionId: The upload session ID (returned by uploadSessionStart).
922924 /// - parameter offset: The amount of data that has been uploaded so far. We use this to make sure upload data isn't
@@ -932,7 +934,8 @@ open class FilesRoutes {
932934 return client. request ( route, serverArgs: serverArgs, input: . file( input) )
933935 }
934936
935- /// Append more data to an upload session. A single request should not upload more than 150 MB.
937+ /// Append more data to an upload session. A single request should not upload more than 150 MB. The maximum size of
938+ /// a file one can upload to an upload session is 350 GB.
936939 ///
937940 /// - parameter sessionId: The upload session ID (returned by uploadSessionStart).
938941 /// - parameter offset: The amount of data that has been uploaded so far. We use this to make sure upload data isn't
@@ -949,7 +952,8 @@ open class FilesRoutes {
949952 }
950953
951954 /// Append more data to an upload session. When the parameter close is set, this call will close the session. A
952- /// single request should not upload more than 150 MB.
955+ /// single request should not upload more than 150 MB. The maximum size of a file one can upload to an upload
956+ /// session is 350 GB.
953957 ///
954958 /// - parameter cursor: Contains the upload session ID and the offset.
955959 /// - parameter close: If true, the current session will be closed, at which point you won't be able to call
@@ -965,7 +969,8 @@ open class FilesRoutes {
965969 }
966970
967971 /// Append more data to an upload session. When the parameter close is set, this call will close the session. A
968- /// single request should not upload more than 150 MB.
972+ /// single request should not upload more than 150 MB. The maximum size of a file one can upload to an upload
973+ /// session is 350 GB.
969974 ///
970975 /// - parameter cursor: Contains the upload session ID and the offset.
971976 /// - parameter close: If true, the current session will be closed, at which point you won't be able to call
@@ -981,7 +986,8 @@ open class FilesRoutes {
981986 }
982987
983988 /// Append more data to an upload session. When the parameter close is set, this call will close the session. A
984- /// single request should not upload more than 150 MB.
989+ /// single request should not upload more than 150 MB. The maximum size of a file one can upload to an upload
990+ /// session is 350 GB.
985991 ///
986992 /// - parameter cursor: Contains the upload session ID and the offset.
987993 /// - parameter close: If true, the current session will be closed, at which point you won't be able to call
@@ -997,7 +1003,7 @@ open class FilesRoutes {
9971003 }
9981004
9991005 /// Finish an upload session and save the uploaded data to the given file path. A single request should not upload
1000- /// more than 150 MB.
1006+ /// more than 150 MB. The maximum size of a file one can upload to an upload session is 350 GB.
10011007 ///
10021008 /// - parameter cursor: Contains the upload session ID and the offset.
10031009 /// - parameter commit: Contains the path and other optional modifiers for the commit.
@@ -1012,7 +1018,7 @@ open class FilesRoutes {
10121018 }
10131019
10141020 /// Finish an upload session and save the uploaded data to the given file path. A single request should not upload
1015- /// more than 150 MB.
1021+ /// more than 150 MB. The maximum size of a file one can upload to an upload session is 350 GB.
10161022 ///
10171023 /// - parameter cursor: Contains the upload session ID and the offset.
10181024 /// - parameter commit: Contains the path and other optional modifiers for the commit.
@@ -1027,7 +1033,7 @@ open class FilesRoutes {
10271033 }
10281034
10291035 /// Finish an upload session and save the uploaded data to the given file path. A single request should not upload
1030- /// more than 150 MB.
1036+ /// more than 150 MB. The maximum size of a file one can upload to an upload session is 350 GB.
10311037 ///
10321038 /// - parameter cursor: Contains the upload session ID and the offset.
10331039 /// - parameter commit: Contains the path and other optional modifiers for the commit.
@@ -1045,11 +1051,11 @@ open class FilesRoutes {
10451051 /// uploadSessionAppendV2 to upload file contents. We recommend uploading many files in parallel to increase
10461052 /// throughput. Once the file contents have been uploaded, rather than calling uploadSessionFinish, use this route
10471053 /// to finish all your upload sessions in a single request. close in UploadSessionStartArg or close in
1048- /// UploadSessionAppendArg needs to be true for the last uploadSessionStart or uploadSessionAppendV2 call. This
1049- /// route will return a job_id immediately and do the async commit job in background. Use
1050- /// uploadSessionFinishBatchCheck to check the job status. For the same account, this route should be executed
1051- /// serially. That means you should not start the next job before current job finishes. We allow up to 1000 entries
1052- /// in a single request.
1054+ /// UploadSessionAppendArg needs to be true for the last uploadSessionStart or uploadSessionAppendV2 call. The
1055+ /// maximum size of a file one can upload to an upload session is 350 GB. This route will return a job_id
1056+ /// immediately and do the async commit job in background. Use uploadSessionFinishBatchCheck to check the job
1057+ /// status. For the same account, this route should be executed serially. That means you should not start the next
1058+ /// job before current job finishes. We allow up to 1000 entries in a single request.
10531059 ///
10541060 /// - parameter entries: Commit information for each file in the batch.
10551061 ///
@@ -1078,9 +1084,10 @@ open class FilesRoutes {
10781084 /// Upload sessions allow you to upload a single file in one or more requests, for example where the size of the
10791085 /// file is greater than 150 MB. This call starts a new upload session with the given data. You can then use
10801086 /// uploadSessionAppendV2 to add more data and uploadSessionFinish to save all the data to a file in Dropbox. A
1081- /// single request should not upload more than 150 MB. An upload session can be used for a maximum of 48 hours.
1082- /// Attempting to use an sessionId in UploadSessionStartResult with uploadSessionAppendV2 or uploadSessionFinish
1083- /// more than 48 hours after its creation will return a notFound in UploadSessionLookupError.
1087+ /// single request should not upload more than 150 MB. The maximum size of a file one can upload to an upload
1088+ /// session is 350 GB. An upload session can be used for a maximum of 48 hours. Attempting to use an sessionId in
1089+ /// UploadSessionStartResult with uploadSessionAppendV2 or uploadSessionFinish more than 48 hours after its creation
1090+ /// will return a notFound in UploadSessionLookupError.
10841091 ///
10851092 /// - parameter close: If true, the current session will be closed, at which point you won't be able to call
10861093 /// uploadSessionAppendV2 anymore with the current session.
@@ -1097,9 +1104,10 @@ open class FilesRoutes {
10971104 /// Upload sessions allow you to upload a single file in one or more requests, for example where the size of the
10981105 /// file is greater than 150 MB. This call starts a new upload session with the given data. You can then use
10991106 /// uploadSessionAppendV2 to add more data and uploadSessionFinish to save all the data to a file in Dropbox. A
1100- /// single request should not upload more than 150 MB. An upload session can be used for a maximum of 48 hours.
1101- /// Attempting to use an sessionId in UploadSessionStartResult with uploadSessionAppendV2 or uploadSessionFinish
1102- /// more than 48 hours after its creation will return a notFound in UploadSessionLookupError.
1107+ /// single request should not upload more than 150 MB. The maximum size of a file one can upload to an upload
1108+ /// session is 350 GB. An upload session can be used for a maximum of 48 hours. Attempting to use an sessionId in
1109+ /// UploadSessionStartResult with uploadSessionAppendV2 or uploadSessionFinish more than 48 hours after its creation
1110+ /// will return a notFound in UploadSessionLookupError.
11031111 ///
11041112 /// - parameter close: If true, the current session will be closed, at which point you won't be able to call
11051113 /// uploadSessionAppendV2 anymore with the current session.
@@ -1116,9 +1124,10 @@ open class FilesRoutes {
11161124 /// Upload sessions allow you to upload a single file in one or more requests, for example where the size of the
11171125 /// file is greater than 150 MB. This call starts a new upload session with the given data. You can then use
11181126 /// uploadSessionAppendV2 to add more data and uploadSessionFinish to save all the data to a file in Dropbox. A
1119- /// single request should not upload more than 150 MB. An upload session can be used for a maximum of 48 hours.
1120- /// Attempting to use an sessionId in UploadSessionStartResult with uploadSessionAppendV2 or uploadSessionFinish
1121- /// more than 48 hours after its creation will return a notFound in UploadSessionLookupError.
1127+ /// single request should not upload more than 150 MB. The maximum size of a file one can upload to an upload
1128+ /// session is 350 GB. An upload session can be used for a maximum of 48 hours. Attempting to use an sessionId in
1129+ /// UploadSessionStartResult with uploadSessionAppendV2 or uploadSessionFinish more than 48 hours after its creation
1130+ /// will return a notFound in UploadSessionLookupError.
11221131 ///
11231132 /// - parameter close: If true, the current session will be closed, at which point you won't be able to call
11241133 /// uploadSessionAppendV2 anymore with the current session.
0 commit comments