| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- <?php
- namespace AsyncAws\S3\ValueObject;
- /**
- * Details of the parts that were uploaded.
- */
- final class CompletedPart
- {
- /**
- * Entity tag returned when the part was uploaded.
- */
- private $etag;
- /**
- * The base64-encoded, 32-bit CRC32 checksum of the object. This will only be present if it was uploaded with the
- * object. With multipart uploads, this may not be a checksum value of the object. For more information about how
- * checksums are calculated with multipart uploads, see Checking object integrity [^1] in the *Amazon S3 User Guide*.
- *
- * [^1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums
- */
- private $checksumCrc32;
- /**
- * The base64-encoded, 32-bit CRC32C checksum of the object. This will only be present if it was uploaded with the
- * object. With multipart uploads, this may not be a checksum value of the object. For more information about how
- * checksums are calculated with multipart uploads, see Checking object integrity [^1] in the *Amazon S3 User Guide*.
- *
- * [^1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums
- */
- private $checksumCrc32C;
- /**
- * The base64-encoded, 160-bit SHA-1 digest of the object. This will only be present if it was uploaded with the object.
- * With multipart uploads, this may not be a checksum value of the object. For more information about how checksums are
- * calculated with multipart uploads, see Checking object integrity [^1] in the *Amazon S3 User Guide*.
- *
- * [^1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums
- */
- private $checksumSha1;
- /**
- * The base64-encoded, 256-bit SHA-256 digest of the object. This will only be present if it was uploaded with the
- * object. With multipart uploads, this may not be a checksum value of the object. For more information about how
- * checksums are calculated with multipart uploads, see Checking object integrity [^1] in the *Amazon S3 User Guide*.
- *
- * [^1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums
- */
- private $checksumSha256;
- /**
- * Part number that identifies the part. This is a positive integer between 1 and 10,000.
- */
- private $partNumber;
- /**
- * @param array{
- * ETag?: null|string,
- * ChecksumCRC32?: null|string,
- * ChecksumCRC32C?: null|string,
- * ChecksumSHA1?: null|string,
- * ChecksumSHA256?: null|string,
- * PartNumber?: null|int,
- * } $input
- */
- public function __construct(array $input)
- {
- $this->etag = $input['ETag'] ?? null;
- $this->checksumCrc32 = $input['ChecksumCRC32'] ?? null;
- $this->checksumCrc32C = $input['ChecksumCRC32C'] ?? null;
- $this->checksumSha1 = $input['ChecksumSHA1'] ?? null;
- $this->checksumSha256 = $input['ChecksumSHA256'] ?? null;
- $this->partNumber = $input['PartNumber'] ?? null;
- }
- public static function create($input): self
- {
- return $input instanceof self ? $input : new self($input);
- }
- public function getChecksumCrc32(): ?string
- {
- return $this->checksumCrc32;
- }
- public function getChecksumCrc32C(): ?string
- {
- return $this->checksumCrc32C;
- }
- public function getChecksumSha1(): ?string
- {
- return $this->checksumSha1;
- }
- public function getChecksumSha256(): ?string
- {
- return $this->checksumSha256;
- }
- public function getEtag(): ?string
- {
- return $this->etag;
- }
- public function getPartNumber(): ?int
- {
- return $this->partNumber;
- }
- /**
- * @internal
- */
- public function requestBody(\DOMElement $node, \DOMDocument $document): void
- {
- if (null !== $v = $this->etag) {
- $node->appendChild($document->createElement('ETag', $v));
- }
- if (null !== $v = $this->checksumCrc32) {
- $node->appendChild($document->createElement('ChecksumCRC32', $v));
- }
- if (null !== $v = $this->checksumCrc32C) {
- $node->appendChild($document->createElement('ChecksumCRC32C', $v));
- }
- if (null !== $v = $this->checksumSha1) {
- $node->appendChild($document->createElement('ChecksumSHA1', $v));
- }
- if (null !== $v = $this->checksumSha256) {
- $node->appendChild($document->createElement('ChecksumSHA256', $v));
- }
- if (null !== $v = $this->partNumber) {
- $node->appendChild($document->createElement('PartNumber', $v));
- }
- }
- }
|