You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Models/AppendObjectRequest.php
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -178,6 +178,7 @@ final class AppendObjectRequest extends RequestModel
178
178
* @param \Psr\Http\Message\StreamInterface|null $body The request body.
179
179
* @param callable|null $progressFn Progress callback function
180
180
* @param array|null $options
181
+
* @param string|null $objectAcl The access control list (ACL) of the object. The object acl parameter has the same functionality as the acl parameter. it is the standardized name for acl. If both exist simultaneously, the value of objectAcl will take precedence.
181
182
*/
182
183
publicfunction__construct(
183
184
?string$bucket = null,
@@ -202,13 +203,14 @@ public function __construct(
Copy file name to clipboardExpand all lines: src/Models/CompleteMultipartUploadRequest.php
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -94,6 +94,7 @@ final class CompleteMultipartUploadRequest extends RequestModel
94
94
* @param string|null $encodingType The encoding type of the object name in the response.
95
95
* @param string|null $requestPayer To indicate that the requester is aware that the request and data download will incur costs
96
96
* @param array|null $options
97
+
* @param string|null $objectAcl The access control list (ACL) of the object. The object acl parameter has the same functionality as the acl parameter. it is the standardized name for acl. If both exist simultaneously, the value of objectAcl will take precedence.
97
98
*/
98
99
publicfunction__construct(
99
100
?string$bucket = null,
@@ -107,13 +108,14 @@ public function __construct(
Copy file name to clipboardExpand all lines: src/Models/CopyObjectRequest.php
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -221,6 +221,7 @@ final class CopyObjectRequest extends RequestModel
221
221
* @param string|null $requestPayer To indicate that the requester is aware that the request and data download will incur costs.
222
222
* @param callable|null $progressFn Progress callback function, it works in Copier.Copy only.
223
223
* @param array|null $options
224
+
* @param string|null $objectAcl The access control list (ACL) of the object. The object acl parameter has the same functionality as the acl parameter. it is the standardized name for acl. If both exist simultaneously, the value of objectAcl will take precedence.
Copy file name to clipboardExpand all lines: src/Models/PutObjectAclRequest.php
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -52,19 +52,21 @@ final class PutObjectAclRequest extends RequestModel
52
52
* @param string|null $versionId The version id of the object.
53
53
* @param string|null $requestPayer To indicate that the requester is aware that the request and data download will incur costs.
54
54
* @param array|null $options
55
+
* @param string|null $objectAcl The access control list (ACL) of the object. The object acl parameter has the same functionality as the acl parameter. it is the standardized name for acl. If both exist simultaneously, the value of objectAcl will take precedence.
* @param string|null $objectAcl The access control list (ACL) of the object. The object acl parameter has the same functionality as the acl parameter. it is the standardized name for acl. If both exist simultaneously, the value of objectAcl will take precedence.
198
199
*/
199
200
publicfunction__construct(
200
201
?string$bucket = null,
@@ -220,12 +221,13 @@ public function __construct(
Copy file name to clipboardExpand all lines: src/Models/PutSymlinkRequest.php
+7-3Lines changed: 7 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -77,6 +77,8 @@ final class PutSymlinkRequest extends RequestModel
77
77
* @param bool|null $forbidOverwrite Specifies whether the PutSymlink operation overwrites the object that has the same name as that of the symbolic link you want to create.
78
78
* @param string|null $requestPayer To indicate that the requester is aware that the request and data download will incur costs.
79
79
* @param array|null $options
80
+
* @param string|null $objectAcl The access control list (ACL) of the object. The object acl parameter has the same functionality as the acl parameter. it is the standardized name for acl. If both exist simultaneously, the value of objectAcl will take precedence.
81
+
* @param string|null $symlinkTarget The target object to which the symbolic link points. The symlinkTarget parameter has the same functionality as the target parameter. It is the normalized name of target. If both exist simultaneously, the value of symlinkTarget will take precedence.
Copy file name to clipboardExpand all lines: src/Models/UploadPart.php
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -29,18 +29,19 @@ final class UploadPart extends Model
29
29
#[XmlElement(rename: 'ETag', type: 'string')]
30
30
public ?string$etag;
31
31
32
-
33
32
/**
34
33
* UploadPart constructor.
35
34
* @param int|null $partNumber The part number.
36
35
* @param string|null $etag The ETag value that is returned by OSS after the part is uploaded.
36
+
* @param string|null $eTag The ETag value that is returned by OSS after the part is uploaded. The eTag parameter has the same functionality as the etag parameter. It is the normalized name of etag. If both exist simultaneously, the value of eTag will take precedence. It is the normalized name of ETag.
0 commit comments