new-admin-api/vendor/async-aws/s3/src/ValueObject/ObjectIdentifier.php

63 lines
1.4 KiB
PHP

<?php
namespace AsyncAws\S3\ValueObject;
use AsyncAws\Core\Exception\InvalidArgument;
/**
* Object Identifier is unique value to identify objects.
*/
final class ObjectIdentifier
{
/**
* Key name of the object.
*/
private $key;
/**
* VersionId for the specific version of the object to delete.
*/
private $versionId;
/**
* @param array{
* Key: string,
* VersionId?: null|string,
* } $input
*/
public function __construct(array $input)
{
$this->key = $input['Key'] ?? null;
$this->versionId = $input['VersionId'] ?? null;
}
public static function create($input): self
{
return $input instanceof self ? $input : new self($input);
}
public function getKey(): string
{
return $this->key;
}
public function getVersionId(): ?string
{
return $this->versionId;
}
/**
* @internal
*/
public function requestBody(\DOMElement $node, \DOMDocument $document): void
{
if (null === $v = $this->key) {
throw new InvalidArgument(sprintf('Missing parameter "Key" for "%s". The value cannot be null.', __CLASS__));
}
$node->appendChild($document->createElement('Key', $v));
if (null !== $v = $this->versionId) {
$node->appendChild($document->createElement('VersionId', $v));
}
}
}