mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 01:39:24 +02:00
Add a plugin creator app
This commit is contained in:
parent
6865156301
commit
011066baa9
1115 changed files with 55534 additions and 2447 deletions
265
CreatePlugin/create.json.php
Normal file
265
CreatePlugin/create.json.php
Normal file
|
@ -0,0 +1,265 @@
|
|||
<?php
|
||||
require_once __DIR__.'/../videos/configuration.php';
|
||||
|
||||
if(!User::isAdmin()){
|
||||
forbiddenPage('You Must be admin');
|
||||
}
|
||||
|
||||
|
||||
if(!empty($global['disableAdvancedConfigurations'])){
|
||||
forbiddenPage('Configuration disabled');
|
||||
}
|
||||
|
||||
use iamcal\SQLParser;
|
||||
|
||||
$parser = new SQLParser();
|
||||
|
||||
$pluginName = $_REQUEST['pluginName'];
|
||||
$sql = $_REQUEST['createTableSQL'];
|
||||
|
||||
$parser->parse($sql);
|
||||
//var_dump($parser->tables);exit;
|
||||
$pluginDir = __DIR__."/plugins/{$pluginName}/";
|
||||
echo $pluginDir, PHP_EOL;
|
||||
_mkdir($pluginDir);
|
||||
|
||||
$pluginDirInstall = "{$pluginDir}/install/";
|
||||
_mkdir($pluginDirInstall);
|
||||
file_put_contents($pluginDirInstall . "install.sql", $sql);
|
||||
|
||||
$pluginDirObjects = "{$pluginDir}/Objects/";
|
||||
_mkdir($pluginDirObjects);
|
||||
|
||||
$pluginDirView = "{$pluginDir}/View/";
|
||||
_mkdir($pluginDirView);
|
||||
|
||||
$includeTables = array();
|
||||
$editorNavTabs = array();
|
||||
$editorNavContent = array();
|
||||
$active = true;
|
||||
foreach ($parser->tables as $value) {
|
||||
$classname = ucwords($value['name']);
|
||||
$tableName = ucwords(str_replace("_", " ", $value['name']));
|
||||
$editorNavTabs[] = "<li class=\"" . ($active ? "active" : "") . "\"><a data-toggle=\"tab\" href=\"#{$classname}\"><?php echo __(\"{$tableName}\"); ?></a></li>";
|
||||
$editorNavContent[] = "<div id=\"{$classname}\" class=\"tab-pane fade " . ($active ? "in active" : "") . "\" style=\"padding: 10px;\">
|
||||
<?php
|
||||
include \$global['systemRootPath'] . 'plugin/{$pluginName}/View/{$classname}/index_body.php';
|
||||
?>
|
||||
</div>";
|
||||
$active = false;
|
||||
$includeTables[] = "require_once \$global['systemRootPath'] . 'plugin/{$pluginName}/Objects/{$classname}.php';";
|
||||
$columnsVars = array();
|
||||
$columnsString = array();
|
||||
$columnsGet = array();
|
||||
$columnsSet = array();
|
||||
$columnsForm = array();
|
||||
$columnsFooter = array();
|
||||
$columnsGrid = array();
|
||||
$columnsClearJQuery = array();
|
||||
$columnsDatatable = array();
|
||||
$columnsEdit = array();
|
||||
$columnsAdd = array();
|
||||
$columnsGetAll = array();
|
||||
|
||||
foreach ($value['fields'] as $value2) {
|
||||
if ($value2['name'] == 'created' || $value2['name'] == 'modified') {
|
||||
continue;
|
||||
}
|
||||
$columnsVars[] = '$' . $value2['name'];
|
||||
$type = strtolower($value2['type']);
|
||||
if ($type == 'text' || $type == 'varchar') {
|
||||
$columnsString[] = "'{$value2['name']}'";
|
||||
}
|
||||
$fieldName = ucwords(str_replace("_", " ", $value2['name']));
|
||||
$columnsClearJQuery[] = "$('#{$classname}{$value2['name']}').val('');";
|
||||
$columnsEdit[] = "$('#{$classname}{$value2['name']}').val(data.{$value2['name']});";
|
||||
if ($value2['name'] != 'id') {
|
||||
$columnsAdd[] = "\$o->set" . ucfirst($value2['name']) . "(\$_POST['{$value2['name']}']);";
|
||||
}
|
||||
|
||||
if ($type == 'int' || $type == 'tinyint') {
|
||||
$columnsGet[] = "
|
||||
function get" . ucfirst($value2['name']) . "() {
|
||||
return intval(\$this->{$value2['name']});
|
||||
} ";
|
||||
|
||||
$columnsSet[] = "
|
||||
function set" . ucfirst($value2['name']) . "(\${$value2['name']}) {
|
||||
\$this->{$value2['name']} = intval(\${$value2['name']});
|
||||
} ";
|
||||
} else if ($type == 'float') {
|
||||
$columnsGet[] = "
|
||||
function get" . ucfirst($value2['name']) . "() {
|
||||
return floatval(\$this->{$value2['name']});
|
||||
} ";
|
||||
|
||||
$columnsSet[] = "
|
||||
function set" . ucfirst($value2['name']) . "(\${$value2['name']}) {
|
||||
\$this->{$value2['name']} = floatval(\${$value2['name']});
|
||||
} ";
|
||||
} else {
|
||||
$columnsGet[] = "
|
||||
function get" . ucfirst($value2['name']) . "() {
|
||||
return \$this->{$value2['name']};
|
||||
} ";
|
||||
|
||||
$columnsSet[] = "
|
||||
function set" . ucfirst($value2['name']) . "(\${$value2['name']}) {
|
||||
\$this->{$value2['name']} = \${$value2['name']};
|
||||
} ";
|
||||
}
|
||||
|
||||
if(preg_match("/^(.*)_id/i", $value2['name'], $matches)){
|
||||
|
||||
$columnsGetAll[] = "static function getAll" . ucfirst($matches[1]) . "() {
|
||||
global \$global;
|
||||
\$table = \"{$matches[1]}\";
|
||||
\$sql = \"SELECT * FROM {\$table} WHERE 1=1 \";
|
||||
|
||||
\$sql .= self::getSqlFromPost();
|
||||
\$res = sqlDAL::readSql(\$sql);
|
||||
\$fullData = sqlDAL::fetchAllAssoc(\$res);
|
||||
sqlDAL::close(\$res);
|
||||
\$rows = array();
|
||||
if (\$res != false) {
|
||||
foreach (\$fullData as \$row) {
|
||||
\$rows[] = \$row;
|
||||
}
|
||||
} else {
|
||||
/**
|
||||
*
|
||||
* @var array \$global
|
||||
* @var object \$global['mysqli']
|
||||
*/
|
||||
_error_log(\$sql . ' Error : (' . \$global['mysqli']->errno . ') ' . \$global['mysqli']->error);
|
||||
}
|
||||
return \$rows;
|
||||
}";
|
||||
$columnsForm[] = '<div class="form-group col-sm-12">
|
||||
<label for="' . $classname . $value2['name'] . '"><?php echo __("' . $fieldName . '"); ?>:</label>
|
||||
<select class="form-control input-sm" name="' . $value2['name'] . '" id="' . $classname . $value2['name'] . '">
|
||||
<?php
|
||||
$options = '.$classname.'::getAll' . ucfirst($matches[1]) . '();
|
||||
foreach ($options as $value) {
|
||||
echo \'<option value="\'.$value[\'id\'].\'">\'.$value[\'id\'].\'</option>\';
|
||||
}
|
||||
?>
|
||||
</select>
|
||||
</div>';
|
||||
}else if ($value2['name'] == 'id') {
|
||||
$columnsGrid[] = "<th>#</th>";
|
||||
$columnsDatatable[] = '{"data": "id"}';
|
||||
$columnsForm[] = '<input type="hidden" name="id" id="' . $classname . 'id" value="" >';
|
||||
} else if ($value2['name'] == 'status') {
|
||||
$columnsGrid[] = '<th><?php echo __("' . $fieldName . '"); ?></th>';
|
||||
$columnsDatatable[] = '{"data": "' . $value2['name'] . '"}';
|
||||
$columnsForm[] = '<div class="form-group col-sm-12">
|
||||
<label for="status"><?php echo __("Status"); ?>:</label>
|
||||
<select class="form-control input-sm" name="status" id="' . $classname . 'status">
|
||||
<option value="a"><?php echo __("Active"); ?></option>
|
||||
<option value="i"><?php echo __("Inactive"); ?></option>
|
||||
</select>
|
||||
</div>';
|
||||
} else {
|
||||
$columnsGrid[] = '<th><?php echo __("' . $fieldName . '"); ?></th>';
|
||||
$columnsDatatable[] = '{"data": "' . $value2['name'] . '"}';
|
||||
if($type == 'text'){
|
||||
$columnsForm[] = '<div class="form-group col-sm-12">
|
||||
<label for="' . $classname . $value2['name'] . '"><?php echo __("' . $fieldName . '"); ?>:</label>
|
||||
<textarea id="' . $classname . $value2['name'] . '" name="' . $value2['name'] . '" class="form-control input-sm" placeholder="<?php echo __("' . $fieldName . '"); ?>" required="true"></textarea>
|
||||
</div>';
|
||||
}else if($type == 'int'){
|
||||
$columnsForm[] = '<div class="form-group col-sm-12">
|
||||
<label for="' . $classname . $value2['name'] . '"><?php echo __("' . $fieldName . '"); ?>:</label>
|
||||
<input type="number" step="1" id="' . $classname . $value2['name'] . '" name="' . $value2['name'] . '" class="form-control input-sm" placeholder="<?php echo __("' . $fieldName . '"); ?>" required="true">
|
||||
</div>';
|
||||
}else if($type == 'float'){
|
||||
$columnsForm[] = '<div class="form-group col-sm-12">
|
||||
<label for="' . $classname . $value2['name'] . '"><?php echo __("' . $fieldName . '"); ?>:</label>
|
||||
<input type="number" step="0.01" id="' . $classname . $value2['name'] . '" name="' . $value2['name'] . '" class="form-control input-sm" placeholder="<?php echo __("' . $fieldName . '"); ?>" required="true">
|
||||
</div>';
|
||||
|
||||
}else if($type == 'datetime'){
|
||||
$columnsForm[] = '<div class="form-group col-sm-12">
|
||||
<label for="' . $classname . $value2['name'] . '"><?php echo __("' . $fieldName . '"); ?>:</label>
|
||||
<input type="text" id="' . $classname . $value2['name'] . '" name="' . $value2['name'] . '" class="form-control input-sm" placeholder="<?php echo __("' . $fieldName . '"); ?>" required="true" autocomplete="off">
|
||||
</div>';
|
||||
$columnsFooter[] = '<script> $(document).ready(function () {$(\'#' . $classname . $value2['name'] . '\').datetimepicker({format: \'yyyy-mm-dd hh:ii\',autoclose: true });});</script>';
|
||||
|
||||
}else{
|
||||
$columnsForm[] = '<div class="form-group col-sm-12">
|
||||
<label for="' . $classname . $value2['name'] . '"><?php echo __("' . $fieldName . '"); ?>:</label>
|
||||
<input type="text" id="' . $classname . $value2['name'] . '" name="' . $value2['name'] . '" class="form-control input-sm" placeholder="<?php echo __("' . $fieldName . '"); ?>" required="true">
|
||||
</div>';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$templatesDir = __DIR__.'/templates/';
|
||||
|
||||
$classFile = "{$pluginDirObjects}{$classname}.php";
|
||||
$modelTemplate = file_get_contents("{$templatesDir}model.php");
|
||||
$search = array('{classname}', '{tablename}', '{pluginName}', '{columnsVars}', '{columnsString}', '{columnsGetAll}', '{columnsGet}', '{columnsSet}');
|
||||
$replace = array($classname, $value['name'], $pluginName, implode(",", $columnsVars), implode(",", $columnsString), implode(PHP_EOL, $columnsGetAll), implode(PHP_EOL, $columnsGet), implode(PHP_EOL, $columnsSet));
|
||||
$data = str_replace($search, $replace, $modelTemplate);
|
||||
file_put_contents($classFile, $data);
|
||||
|
||||
|
||||
$dir = "{$pluginDirView}{$classname}/";
|
||||
_mkdir($dir);
|
||||
|
||||
$file = "{$dir}index.php";
|
||||
$modelTemplate = file_get_contents("{$templatesDir}index.php");
|
||||
$search = array('{classname}', '{pluginName}');
|
||||
$replace = array($classname, $pluginName);
|
||||
$data = str_replace($search, $replace, $modelTemplate);
|
||||
file_put_contents($file, $data);
|
||||
|
||||
$file = "{$dir}index_body.php";
|
||||
$modelTemplate = file_get_contents("{$templatesDir}index_body.php");
|
||||
$search = array('{classname}','{tablename}', '{pluginName}', '{columnsForm}', '{columnsFooter}', '{columnsGrid}', '{$columnsClearJQuery}', '{columnsDatatable}', '{$columnsEdit}');
|
||||
$replace = array($classname,$value['name'], $pluginName, implode(PHP_EOL, $columnsForm), implode(PHP_EOL, $columnsFooter), implode(PHP_EOL, $columnsGrid), implode(PHP_EOL, $columnsClearJQuery), implode("," . PHP_EOL, $columnsDatatable), implode(PHP_EOL, $columnsEdit));
|
||||
$data = str_replace($search, $replace, $modelTemplate);
|
||||
file_put_contents($file, $data);
|
||||
|
||||
$file = "{$dir}list.json.php";
|
||||
$modelTemplate = file_get_contents("{$templatesDir}list.json.php");
|
||||
$search = array('{classname}', '{pluginName}');
|
||||
$replace = array($classname, $pluginName);
|
||||
$data = str_replace($search, $replace, $modelTemplate);
|
||||
file_put_contents($file, $data);
|
||||
|
||||
$file = "{$dir}delete.json.php";
|
||||
$modelTemplate = file_get_contents("{$templatesDir}delete.json.php");
|
||||
$search = array('{classname}', '{pluginName}');
|
||||
$replace = array($classname, $pluginName);
|
||||
$data = str_replace($search, $replace, $modelTemplate);
|
||||
file_put_contents($file, $data);
|
||||
|
||||
$file = "{$dir}add.json.php";
|
||||
$modelTemplate = file_get_contents("{$templatesDir}add.json.php");
|
||||
$search = array('{classname}', '{pluginName}', '{columnsAdd}');
|
||||
$replace = array($classname, $pluginName, implode(PHP_EOL, $columnsAdd));
|
||||
$data = str_replace($search, $replace, $modelTemplate);
|
||||
file_put_contents($file, $data);
|
||||
}
|
||||
|
||||
$pluginFile = "{$pluginDir}$pluginName.php";
|
||||
$pluginTemplate = file_get_contents("{$templatesDir}plugin.php");
|
||||
$search = array('{pluginName}', '{includeTables}', '{tablename}', '{uid}');
|
||||
$replace = array($pluginName, implode(PHP_EOL, $includeTables), $pluginName, "5ee8405eaaa16");
|
||||
$data = str_replace($search, $replace, $pluginTemplate);
|
||||
file_put_contents($pluginFile, $data);
|
||||
|
||||
$pluginFile = "{$pluginDir}View/editor.php";
|
||||
$pluginTemplate = file_get_contents("{$templatesDir}editor.php");
|
||||
$search = array('{pluginName}', '{editorNavTabs}', '{editorNavContent}');
|
||||
$replace = array($pluginName, implode(PHP_EOL, $editorNavTabs), implode(PHP_EOL, $editorNavContent));
|
||||
$data = str_replace($search, $replace, $pluginTemplate);
|
||||
file_put_contents($pluginFile, $data);
|
||||
|
||||
function _mkdir($dir) {
|
||||
if (!is_dir($dir)) {
|
||||
mkdir($dir);
|
||||
}
|
||||
}
|
85
CreatePlugin/index.php
Normal file
85
CreatePlugin/index.php
Normal file
|
@ -0,0 +1,85 @@
|
|||
<?php
|
||||
require_once __DIR__ . '/../videos/configuration.php';
|
||||
|
||||
if (!User::isAdmin()) {
|
||||
forbiddenPage('You Must be admin');
|
||||
}
|
||||
|
||||
if (!empty($global['disableAdvancedConfigurations'])) {
|
||||
forbiddenPage('Configuration disabled');
|
||||
}
|
||||
|
||||
$page = new Page('Create plugin');
|
||||
?>
|
||||
<div class="container">
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h2>Create New Plugin</h2>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<form id="createPluginForm">
|
||||
<div class="form-group">
|
||||
<label for="pluginName">Plugin Name</label>
|
||||
<input type="text" class="form-control" id="pluginName" name="pluginName" placeholder="Enter Plugin Name" required>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="createTableSQL">CREATE TABLE SQL</label>
|
||||
<textarea class="form-control" id="createTableSQL" name="createTableSQL" rows="5" placeholder="Paste your CREATE TABLE SQL here" required></textarea>
|
||||
</div>
|
||||
<button type="button" id="createPluginButton" class="btn btn-primary btn-block">Create Plugin</button>
|
||||
</form>
|
||||
<div id="responseMessage" class="alert" style="display:none; margin-top: 10px;"></div>
|
||||
</div>
|
||||
<div class="panel-footer">
|
||||
<h3>Instructions:</h3>
|
||||
<ul>
|
||||
<li>Enter the SQL code to create your plugin's table in the text area below.</li>
|
||||
<li>Provide a name for the plugin. The name must start with an uppercase letter, contain only letters, numbers, and underscores, and should have no spaces.</li>
|
||||
<li>Invalid characters will be automatically removed as you type.</li>
|
||||
<li>Click "Create Plugin" to submit the data.</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script>
|
||||
$(document).ready(function() {
|
||||
// Auto-format plugin name input
|
||||
$('#pluginName').on('input', function() {
|
||||
let value = $(this).val();
|
||||
// Remove invalid characters and ensure the first letter is uppercase
|
||||
value = value.replace(/[^a-zA-Z0-9_]/g, ''); // Remove any character that is not a letter, number, or underscore
|
||||
if (value.length > 0) {
|
||||
value = value.charAt(0).toUpperCase() + value.slice(1); // Ensure the first letter is uppercase
|
||||
}
|
||||
$(this).val(value);
|
||||
});
|
||||
|
||||
// AJAX submit on button click
|
||||
$('#createPluginButton').on('click', function() {
|
||||
let pluginName = $('#pluginName').val();
|
||||
let createTableSQL = $('#createTableSQL').val();
|
||||
|
||||
if (pluginName && createTableSQL) {
|
||||
$.ajax({
|
||||
url: webSiteRootURL + 'CreatePlugin/create.json.php',
|
||||
type: 'POST',
|
||||
data: {
|
||||
pluginName: pluginName,
|
||||
createTableSQL: createTableSQL
|
||||
},
|
||||
success: function(response) {
|
||||
$('#responseMessage').removeClass('alert-danger').addClass('alert-success').text('Plugin created successfully!').show();
|
||||
},
|
||||
error: function() {
|
||||
$('#responseMessage').removeClass('alert-success').addClass('alert-danger').text('An error occurred while creating the plugin.').show();
|
||||
}
|
||||
});
|
||||
} else {
|
||||
$('#responseMessage').removeClass('alert-success').addClass('alert-danger').text('Please fill in both fields.').show();
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
<?php
|
||||
$page->print();
|
||||
?>
|
0
CreatePlugin/plugins/index.php
Normal file
0
CreatePlugin/plugins/index.php
Normal file
24
CreatePlugin/templates/add.json.php
Normal file
24
CreatePlugin/templates/add.json.php
Normal file
|
@ -0,0 +1,24 @@
|
|||
<?php
|
||||
header('Content-Type: application/json');
|
||||
require_once '../../../../videos/configuration.php';
|
||||
require_once $global['systemRootPath'] . 'plugin/{pluginName}/Objects/{classname}.php';
|
||||
|
||||
$obj = new stdClass();
|
||||
$obj->error = true;
|
||||
$obj->msg = "";
|
||||
|
||||
$plugin = AVideoPlugin::loadPluginIfEnabled('{pluginName}');
|
||||
|
||||
if(!User::isAdmin()){
|
||||
$obj->msg = "You cant do this";
|
||||
die(json_encode($obj));
|
||||
}
|
||||
|
||||
$o = new {classname}(@$_POST['id']);
|
||||
{columnsAdd}
|
||||
|
||||
if($id = $o->save()){
|
||||
$obj->error = false;
|
||||
}
|
||||
|
||||
echo json_encode($obj);
|
20
CreatePlugin/templates/delete.json.php
Normal file
20
CreatePlugin/templates/delete.json.php
Normal file
|
@ -0,0 +1,20 @@
|
|||
<?php
|
||||
require_once '../../../../videos/configuration.php';
|
||||
require_once $global['systemRootPath'] . 'plugin/{pluginName}/Objects/{classname}.php';
|
||||
header('Content-Type: application/json');
|
||||
|
||||
$obj = new stdClass();
|
||||
$obj->error = true;
|
||||
|
||||
$plugin = AVideoPlugin::loadPluginIfEnabled('{pluginName}');
|
||||
|
||||
if(!User::isAdmin()){
|
||||
$obj->msg = "You cant do this";
|
||||
die(json_encode($obj));
|
||||
}
|
||||
|
||||
$id = intval($_POST['id']);
|
||||
$row = new {classname}($id);
|
||||
$obj->error = !$row->delete();
|
||||
die(json_encode($obj));
|
||||
?>
|
27
CreatePlugin/templates/editor.php
Normal file
27
CreatePlugin/templates/editor.php
Normal file
|
@ -0,0 +1,27 @@
|
|||
<?php
|
||||
require_once '../../../videos/configuration.php';
|
||||
AVideoPlugin::loadPlugin("{pluginName}");
|
||||
$_page = new Page(array('{pluginName}'));
|
||||
$_page->setExtraStyles(array('view/css/DataTables/datatables.min.css', 'view/js/bootstrap-datetimepicker/css/bootstrap-datetimepicker.min.css'));
|
||||
$_page->setExtraScripts(array('view/css/DataTables/datatables.min.js', 'view/js/bootstrap-datetimepicker/js/bootstrap-datetimepicker.min.js'));
|
||||
?>
|
||||
<div class="container-fluid">
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading"><?php echo __('{pluginName}') ?>
|
||||
<div class="pull-right">
|
||||
<?php echo AVideoPlugin::getSwitchButton("{pluginName}"); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<ul class="nav nav-tabs">
|
||||
{editorNavTabs}
|
||||
</ul>
|
||||
<div class="tab-content">
|
||||
{editorNavContent}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php
|
||||
$_page->print();
|
||||
?>
|
19
CreatePlugin/templates/index.php
Normal file
19
CreatePlugin/templates/index.php
Normal file
|
@ -0,0 +1,19 @@
|
|||
<?php
|
||||
global $global, $config;
|
||||
if (!isset($global['systemRootPath'])) {
|
||||
require_once __DIR__.'/../../../../videos/configuration.php';
|
||||
}
|
||||
if (!User::isAdmin()) {
|
||||
forbiddenPage('You can not do this');
|
||||
exit;
|
||||
}
|
||||
$plugin = AVideoPlugin::loadPluginIfEnabled('{pluginName}');
|
||||
if(empty($plugin)){
|
||||
forbiddenPage('Plugin {pluginName} is disabled');
|
||||
}
|
||||
$_page = new Page(array('{pluginName}'));
|
||||
$_page->setExtraStyles(array('view/css/DataTables/datatables.min.css', 'view/js/bootstrap-datetimepicker/css/bootstrap-datetimepicker.min.css'));
|
||||
$_page->setExtraScripts(array('view/css/DataTables/datatables.min.js'));
|
||||
include $global['systemRootPath'] . 'plugin/{pluginName}/View/{classname}/index_body.php';
|
||||
$_page->print();
|
||||
?>
|
170
CreatePlugin/templates/index_body.php
Normal file
170
CreatePlugin/templates/index_body.php
Normal file
|
@ -0,0 +1,170 @@
|
|||
<?php
|
||||
global $global, $config;
|
||||
if (!isset($global['systemRootPath'])) {
|
||||
require_once '../../videos/configuration.php';
|
||||
}
|
||||
if (!User::isAdmin()) {
|
||||
forbiddenPage('Admins only');
|
||||
}
|
||||
?>
|
||||
<div class="container-fluid">
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<i class="fas fa-cog"></i> <?php echo __("Configurations"); ?>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<div class="row">
|
||||
<div class="col-sm-4">
|
||||
<div class="panel panel-default ">
|
||||
<div class="panel-heading"><i class="far fa-plus-square"></i> <?php echo __("Create"); ?></div>
|
||||
<div class="panel-body">
|
||||
<form id="panel{classname}Form">
|
||||
<div class="row">
|
||||
{columnsForm}
|
||||
<div class="form-group col-sm-12">
|
||||
<div class="btn-group pull-right">
|
||||
<span class="btn btn-success" id="new{classname}Link" onclick="clear{classname}Form()"><i class="fas fa-plus"></i> <?php echo __("New"); ?></span>
|
||||
<button class="btn btn-primary" type="submit"><i class="fas fa-save"></i> <?php echo __("Save"); ?></button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-8">
|
||||
<div class="panel panel-default ">
|
||||
<div class="panel-heading"><i class="fas fa-edit"></i> <?php echo __("Edit"); ?></div>
|
||||
<div class="panel-body">
|
||||
<table id="{classname}Table" class="display table table-bordered table-responsive table-striped table-hover table-condensed" width="100%" cellspacing="0">
|
||||
<thead>
|
||||
<tr>
|
||||
{columnsGrid}
|
||||
<th></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tfoot>
|
||||
<tr>
|
||||
{columnsGrid}
|
||||
<th></th>
|
||||
</tr>
|
||||
</tfoot>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="{classname}btnModelLinks" style="display: none;">
|
||||
<div class="btn-group pull-right">
|
||||
<button href="" class="edit_{classname} btn btn-default btn-xs">
|
||||
<i class="fa fa-edit"></i>
|
||||
</button>
|
||||
<button href="" class="delete_{classname} btn btn-danger btn-xs">
|
||||
<i class="fa fa-trash"></i>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
function clear{classname}Form() {
|
||||
{$columnsClearJQuery}
|
||||
}
|
||||
$(document).ready(function () {
|
||||
$('#add{classname}Btn').click(function () {
|
||||
$.ajax({
|
||||
url: webSiteRootURL+'plugin/{pluginName}/View/add{classname}Video.php',
|
||||
data: $('#panel{classname}Form').serialize(),
|
||||
type: 'post',
|
||||
success: function (response) {
|
||||
if (response.error) {
|
||||
avideoAlertError(response.msg);
|
||||
} else {
|
||||
avideoToast("<?php echo __("Your register has been saved!"); ?>");
|
||||
$("#panel{classname}Form").trigger("reset");
|
||||
}
|
||||
clear{classname}Form();
|
||||
tableVideos.ajax.reload();
|
||||
modal.hidePleaseWait();
|
||||
}
|
||||
});
|
||||
});
|
||||
var {classname}tableVar = $('#{classname}Table').DataTable({
|
||||
serverSide: true,
|
||||
"ajax": webSiteRootURL+"plugin/{pluginName}/View/{classname}/list.json.php",
|
||||
"columns": [
|
||||
{columnsDatatable},
|
||||
{
|
||||
sortable: false,
|
||||
data: null,
|
||||
defaultContent: $('#{classname}btnModelLinks').html()
|
||||
}
|
||||
],
|
||||
select: true,
|
||||
});
|
||||
$('#new{classname}').on('click', function (e) {
|
||||
e.preventDefault();
|
||||
$('#panel{classname}Form').trigger("reset");
|
||||
$('#{classname}id').val('');
|
||||
});
|
||||
$('#panel{classname}Form').on('submit', function (e) {
|
||||
e.preventDefault();
|
||||
modal.showPleaseWait();
|
||||
$.ajax({
|
||||
url: webSiteRootURL+'plugin/{pluginName}/View/{classname}/add.json.php',
|
||||
data: $('#panel{classname}Form').serialize(),
|
||||
type: 'post',
|
||||
success: function (response) {
|
||||
if (response.error) {
|
||||
avideoAlertError(response.msg);
|
||||
} else {
|
||||
avideoToast(__("Your register has been saved!"));
|
||||
$("#panel{classname}Form").trigger("reset");
|
||||
}
|
||||
{classname}tableVar.ajax.reload();
|
||||
$('#{classname}id').val('');
|
||||
modal.hidePleaseWait();
|
||||
}
|
||||
});
|
||||
});
|
||||
$('#{classname}Table').on('click', 'button.delete_{classname}', function (e) {
|
||||
e.preventDefault();
|
||||
var tr = $(this).closest('tr')[0];
|
||||
var data = {classname}tableVar.row(tr).data();
|
||||
swal({
|
||||
title: __("Are you sure?"),
|
||||
text: __("You will not be able to recover this action!"),
|
||||
icon: "warning",
|
||||
buttons: true,
|
||||
dangerMode: true,
|
||||
})
|
||||
.then(function (willDelete) {
|
||||
if (willDelete) {
|
||||
modal.showPleaseWait();
|
||||
$.ajax({
|
||||
type: "POST",
|
||||
url: webSiteRootURL+"plugin/{pluginName}/View/{classname}/delete.json.php",
|
||||
data: data
|
||||
|
||||
}).done(function (resposta) {
|
||||
if (resposta.error) {
|
||||
avideoAlertError(resposta.msg);
|
||||
}
|
||||
{classname}tableVar.ajax.reload();
|
||||
modal.hidePleaseWait();
|
||||
});
|
||||
} else {
|
||||
|
||||
}
|
||||
});
|
||||
});
|
||||
$('#{classname}Table').on('click', 'button.edit_{classname}', function (e) {
|
||||
e.preventDefault();
|
||||
var tr = $(this).closest('tr')[0];
|
||||
var data = {classname}tableVar.row(tr).data();
|
||||
{$columnsEdit}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
{columnsFooter}
|
16
CreatePlugin/templates/list.json.php
Normal file
16
CreatePlugin/templates/list.json.php
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?php
|
||||
require_once '../../../../videos/configuration.php';
|
||||
require_once $global['systemRootPath'] . 'plugin/{pluginName}/Objects/{classname}.php';
|
||||
header('Content-Type: application/json');
|
||||
|
||||
$rows = {classname}::getAll();
|
||||
$total = {classname}::getTotal();
|
||||
|
||||
$response = array(
|
||||
'data' => $rows,
|
||||
'draw' => intval(@$_REQUEST['draw']),
|
||||
'recordsTotal' => $total,
|
||||
'recordsFiltered' => $total,
|
||||
);
|
||||
echo _json_encode($response);
|
||||
?>
|
24
CreatePlugin/templates/model.php
Normal file
24
CreatePlugin/templates/model.php
Normal file
|
@ -0,0 +1,24 @@
|
|||
<?php
|
||||
|
||||
require_once dirname(__FILE__) . '/../../../videos/configuration.php';
|
||||
|
||||
class {classname} extends ObjectYPT {
|
||||
|
||||
protected {columnsVars};
|
||||
|
||||
static function getSearchFieldsNames() {
|
||||
return array({columnsString});
|
||||
}
|
||||
|
||||
static function getTableName() {
|
||||
return '{tablename}';
|
||||
}
|
||||
|
||||
{columnsGetAll}
|
||||
|
||||
{columnsSet}
|
||||
|
||||
{columnsGet}
|
||||
|
||||
|
||||
}
|
65
CreatePlugin/templates/plugin.php
Normal file
65
CreatePlugin/templates/plugin.php
Normal file
|
@ -0,0 +1,65 @@
|
|||
<?php
|
||||
global $global;
|
||||
require_once $global['systemRootPath'] . 'plugin/Plugin.abstract.php';
|
||||
|
||||
{includeTables}
|
||||
|
||||
class {pluginName} extends PluginAbstract {
|
||||
|
||||
public function getDescription() {
|
||||
$desc = "{pluginName} Plugin";
|
||||
//$desc .= $this->isReadyLabel(array('YPTWallet'));
|
||||
//$help = "<br><small><a href='' target='_blank'><i class='fas fa-question-circle'></i> Help</a></small>";
|
||||
return $desc;
|
||||
}
|
||||
|
||||
public function getName() {
|
||||
return "{pluginName}";
|
||||
}
|
||||
|
||||
public function getUUID() {
|
||||
return "{pluginName}-{uid}";
|
||||
}
|
||||
|
||||
public function getPluginVersion() {
|
||||
return "1.0";
|
||||
}
|
||||
|
||||
public function updateScript() {
|
||||
global $global;
|
||||
/*
|
||||
if (AVideoPlugin::compareVersion($this->getName(), "2.0") < 0) {
|
||||
sqlDal::executeFile($global['systemRootPath'] . 'plugin/PayPerView/install/updateV2.0.sql');
|
||||
}
|
||||
*
|
||||
*/
|
||||
return true;
|
||||
}
|
||||
|
||||
public function getEmptyDataObject() {
|
||||
$obj = new stdClass();
|
||||
/*
|
||||
$obj->textSample = "text";
|
||||
$obj->checkboxSample = true;
|
||||
$obj->numberSample = 5;
|
||||
|
||||
$o = new stdClass();
|
||||
$o->type = array(0=>__("Default"))+array(1,2,3);
|
||||
$o->value = 0;
|
||||
$obj->selectBoxSample = $o;
|
||||
|
||||
$o = new stdClass();
|
||||
$o->type = "textarea";
|
||||
$o->value = "";
|
||||
$obj->textareaSample = $o;
|
||||
*/
|
||||
return $obj;
|
||||
}
|
||||
|
||||
|
||||
public function getPluginMenu() {
|
||||
global $global;
|
||||
return '<button onclick="avideoModalIframeLarge(webSiteRootURL+\'plugin/{pluginName}/View/editor.php\')" class="btn btn-primary btn-xs btn-block"><i class="fa fa-edit"></i> Edit</button>';
|
||||
}
|
||||
|
||||
}
|
|
@ -53,6 +53,7 @@
|
|||
"spomky-labs/otphp": "^10.0",
|
||||
"christian-riesen/base32": "^1.6",
|
||||
"react/socket": "^1.16",
|
||||
"react/event-loop": "^1.5"
|
||||
"react/event-loop": "^1.5",
|
||||
"iamcal/sql-parser": "^0.5.0"
|
||||
}
|
||||
}
|
||||
|
|
45
composer.lock
generated
45
composer.lock
generated
|
@ -4,7 +4,7 @@
|
|||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||
"This file is @generated automatically"
|
||||
],
|
||||
"content-hash": "649aafcf62af363171c6aa2ae2bf1ecd",
|
||||
"content-hash": "f972e75483bfe46be300337430f685b5",
|
||||
"packages": [
|
||||
{
|
||||
"name": "abraham/twitteroauth",
|
||||
|
@ -1954,6 +1954,47 @@
|
|||
},
|
||||
"time": "2024-01-02T23:09:56+00:00"
|
||||
},
|
||||
{
|
||||
"name": "iamcal/sql-parser",
|
||||
"version": "v0.5",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/iamcal/SQLParser.git",
|
||||
"reference": "644fd994de3b54e5d833aecf406150aa3b66ca88"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/iamcal/SQLParser/zipball/644fd994de3b54e5d833aecf406150aa3b66ca88",
|
||||
"reference": "644fd994de3b54e5d833aecf406150aa3b66ca88",
|
||||
"shasum": ""
|
||||
},
|
||||
"require-dev": {
|
||||
"php-coveralls/php-coveralls": "^1.0",
|
||||
"phpunit/phpunit": "^5|^6|^7|^8|^9"
|
||||
},
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"iamcal\\": "src"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Cal Henderson",
|
||||
"email": "cal@iamcal.com"
|
||||
}
|
||||
],
|
||||
"description": "MySQL schema parser",
|
||||
"support": {
|
||||
"issues": "https://github.com/iamcal/SQLParser/issues",
|
||||
"source": "https://github.com/iamcal/SQLParser/tree/v0.5"
|
||||
},
|
||||
"time": "2024-03-22T22:46:32+00:00"
|
||||
},
|
||||
{
|
||||
"name": "james-heinrich/getid3",
|
||||
"version": "v1.9.23",
|
||||
|
@ -6536,5 +6577,5 @@
|
|||
"platform-overrides": {
|
||||
"php": "8"
|
||||
},
|
||||
"plugin-api-version": "2.6.0"
|
||||
"plugin-api-version": "2.3.0"
|
||||
}
|
||||
|
|
46
vendor/aws/aws-crt-php/format-check.py
vendored
Normal file
46
vendor/aws/aws-crt-php/format-check.py
vendored
Normal file
|
@ -0,0 +1,46 @@
|
|||
#!/usr/bin/env python3
|
||||
import argparse
|
||||
import os
|
||||
from pathlib import Path
|
||||
import re
|
||||
from subprocess import list2cmdline, run
|
||||
from tempfile import NamedTemporaryFile
|
||||
|
||||
CLANG_FORMAT_VERSION = '18.1.6'
|
||||
|
||||
INCLUDE_REGEX = re.compile(r'^ext/.*\.(c|h|inl)$')
|
||||
EXCLUDE_REGEX = re.compile(r'^$')
|
||||
|
||||
arg_parser = argparse.ArgumentParser(description="Check with clang-format")
|
||||
arg_parser.add_argument('-i', '--inplace-edit', action='store_true',
|
||||
help="Edit files inplace")
|
||||
args = arg_parser.parse_args()
|
||||
|
||||
os.chdir(Path(__file__).parent)
|
||||
|
||||
# create file containing list of all files to format
|
||||
filepaths_file = NamedTemporaryFile(delete=False)
|
||||
for dirpath, dirnames, filenames in os.walk('.'):
|
||||
for filename in filenames:
|
||||
# our regexes expect filepath to use forward slash
|
||||
filepath = Path(dirpath, filename).as_posix()
|
||||
if not INCLUDE_REGEX.match(filepath):
|
||||
continue
|
||||
if EXCLUDE_REGEX.match(filepath):
|
||||
continue
|
||||
|
||||
filepaths_file.write(f"{filepath}\n".encode())
|
||||
filepaths_file.close()
|
||||
|
||||
# use pipx to run clang-format from PyPI
|
||||
# this is a simple way to run the same clang-format version regardless of OS
|
||||
cmd = ['pipx', 'run', f'clang-format=={CLANG_FORMAT_VERSION}',
|
||||
f'--files={filepaths_file.name}']
|
||||
if args.inplace_edit:
|
||||
cmd += ['-i']
|
||||
else:
|
||||
cmd += ['--Werror', '--dry-run']
|
||||
|
||||
print(f"{Path.cwd()}$ {list2cmdline(cmd)}")
|
||||
if run(cmd).returncode:
|
||||
exit(1)
|
|
@ -192,6 +192,9 @@ class DecodingEventStreamIterator implements Iterator
|
|||
return $this->key;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return void
|
||||
*/
|
||||
#[\ReturnTypeWillChange]
|
||||
public function next()
|
||||
{
|
||||
|
@ -202,6 +205,9 @@ class DecodingEventStreamIterator implements Iterator
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @return void
|
||||
*/
|
||||
#[\ReturnTypeWillChange]
|
||||
public function rewind()
|
||||
{
|
||||
|
|
|
@ -50,30 +50,45 @@ class EventParsingIterator implements Iterator
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @return mixed
|
||||
*/
|
||||
#[\ReturnTypeWillChange]
|
||||
public function current()
|
||||
{
|
||||
return $this->parseEvent($this->decodingIterator->current());
|
||||
}
|
||||
|
||||
/**
|
||||
* @return mixed
|
||||
*/
|
||||
#[\ReturnTypeWillChange]
|
||||
public function key()
|
||||
{
|
||||
return $this->decodingIterator->key();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return void
|
||||
*/
|
||||
#[\ReturnTypeWillChange]
|
||||
public function next()
|
||||
{
|
||||
$this->decodingIterator->next();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return void
|
||||
*/
|
||||
#[\ReturnTypeWillChange]
|
||||
public function rewind()
|
||||
{
|
||||
$this->decodingIterator->rewind();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return bool
|
||||
*/
|
||||
#[\ReturnTypeWillChange]
|
||||
public function valid()
|
||||
{
|
||||
|
|
|
@ -11,10 +11,14 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise associateMergedGraphqlApiAsync(array $args = [])
|
||||
* @method \Aws\Result associateSourceGraphqlApi(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise associateSourceGraphqlApiAsync(array $args = [])
|
||||
* @method \Aws\Result createApi(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createApiAsync(array $args = [])
|
||||
* @method \Aws\Result createApiCache(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createApiCacheAsync(array $args = [])
|
||||
* @method \Aws\Result createApiKey(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createApiKeyAsync(array $args = [])
|
||||
* @method \Aws\Result createChannelNamespace(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createChannelNamespaceAsync(array $args = [])
|
||||
* @method \Aws\Result createDataSource(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createDataSourceAsync(array $args = [])
|
||||
* @method \Aws\Result createDomainName(array $args = [])
|
||||
|
@ -27,10 +31,14 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise createResolverAsync(array $args = [])
|
||||
* @method \Aws\Result createType(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createTypeAsync(array $args = [])
|
||||
* @method \Aws\Result deleteApi(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteApiAsync(array $args = [])
|
||||
* @method \Aws\Result deleteApiCache(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteApiCacheAsync(array $args = [])
|
||||
* @method \Aws\Result deleteApiKey(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteApiKeyAsync(array $args = [])
|
||||
* @method \Aws\Result deleteChannelNamespace(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteChannelNamespaceAsync(array $args = [])
|
||||
* @method \Aws\Result deleteDataSource(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteDataSourceAsync(array $args = [])
|
||||
* @method \Aws\Result deleteDomainName(array $args = [])
|
||||
|
@ -55,10 +63,14 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise evaluateMappingTemplateAsync(array $args = [])
|
||||
* @method \Aws\Result flushApiCache(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise flushApiCacheAsync(array $args = [])
|
||||
* @method \Aws\Result getApi(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getApiAsync(array $args = [])
|
||||
* @method \Aws\Result getApiAssociation(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getApiAssociationAsync(array $args = [])
|
||||
* @method \Aws\Result getApiCache(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getApiCacheAsync(array $args = [])
|
||||
* @method \Aws\Result getChannelNamespace(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getChannelNamespaceAsync(array $args = [])
|
||||
* @method \Aws\Result getDataSource(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getDataSourceAsync(array $args = [])
|
||||
* @method \Aws\Result getDataSourceIntrospection(array $args = [])
|
||||
|
@ -83,6 +95,10 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise getTypeAsync(array $args = [])
|
||||
* @method \Aws\Result listApiKeys(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listApiKeysAsync(array $args = [])
|
||||
* @method \Aws\Result listApis(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listApisAsync(array $args = [])
|
||||
* @method \Aws\Result listChannelNamespaces(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listChannelNamespacesAsync(array $args = [])
|
||||
* @method \Aws\Result listDataSources(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listDataSourcesAsync(array $args = [])
|
||||
* @method \Aws\Result listDomainNames(array $args = [])
|
||||
|
@ -115,10 +131,14 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise tagResourceAsync(array $args = [])
|
||||
* @method \Aws\Result untagResource(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise untagResourceAsync(array $args = [])
|
||||
* @method \Aws\Result updateApi(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updateApiAsync(array $args = [])
|
||||
* @method \Aws\Result updateApiCache(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updateApiCacheAsync(array $args = [])
|
||||
* @method \Aws\Result updateApiKey(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updateApiKeyAsync(array $args = [])
|
||||
* @method \Aws\Result updateChannelNamespace(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updateChannelNamespaceAsync(array $args = [])
|
||||
* @method \Aws\Result updateDataSource(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updateDataSourceAsync(array $args = [])
|
||||
* @method \Aws\Result updateDomainName(array $args = [])
|
||||
|
|
|
@ -13,6 +13,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise createGuardrailAsync(array $args = [])
|
||||
* @method \Aws\Result createGuardrailVersion(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createGuardrailVersionAsync(array $args = [])
|
||||
* @method \Aws\Result createInferenceProfile(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createInferenceProfileAsync(array $args = [])
|
||||
* @method \Aws\Result createModelCopyJob(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createModelCopyJobAsync(array $args = [])
|
||||
* @method \Aws\Result createModelCustomizationJob(array $args = [])
|
||||
|
@ -29,6 +31,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise deleteGuardrailAsync(array $args = [])
|
||||
* @method \Aws\Result deleteImportedModel(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteImportedModelAsync(array $args = [])
|
||||
* @method \Aws\Result deleteInferenceProfile(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteInferenceProfileAsync(array $args = [])
|
||||
* @method \Aws\Result deleteModelInvocationLoggingConfiguration(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteModelInvocationLoggingConfigurationAsync(array $args = [])
|
||||
* @method \Aws\Result deleteProvisionedModelThroughput(array $args = [])
|
||||
|
|
|
@ -129,5 +129,7 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise updateKnowledgeBaseAsync(array $args = [])
|
||||
* @method \Aws\Result updatePrompt(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updatePromptAsync(array $args = [])
|
||||
* @method \Aws\Result validateFlowDefinition(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise validateFlowDefinitionAsync(array $args = [])
|
||||
*/
|
||||
class BedrockAgentClient extends AwsClient {}
|
||||
|
|
|
@ -5,10 +5,22 @@ use Aws\AwsClient;
|
|||
|
||||
/**
|
||||
* This client is used to interact with the **cleanrooms-ml** service.
|
||||
* @method \Aws\Result cancelTrainedModel(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise cancelTrainedModelAsync(array $args = [])
|
||||
* @method \Aws\Result cancelTrainedModelInferenceJob(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise cancelTrainedModelInferenceJobAsync(array $args = [])
|
||||
* @method \Aws\Result createAudienceModel(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createAudienceModelAsync(array $args = [])
|
||||
* @method \Aws\Result createConfiguredAudienceModel(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createConfiguredAudienceModelAsync(array $args = [])
|
||||
* @method \Aws\Result createConfiguredModelAlgorithm(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createConfiguredModelAlgorithmAsync(array $args = [])
|
||||
* @method \Aws\Result createConfiguredModelAlgorithmAssociation(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createConfiguredModelAlgorithmAssociationAsync(array $args = [])
|
||||
* @method \Aws\Result createMLInputChannel(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createMLInputChannelAsync(array $args = [])
|
||||
* @method \Aws\Result createTrainedModel(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createTrainedModelAsync(array $args = [])
|
||||
* @method \Aws\Result createTrainingDataset(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createTrainingDatasetAsync(array $args = [])
|
||||
* @method \Aws\Result deleteAudienceGenerationJob(array $args = [])
|
||||
|
@ -19,16 +31,44 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise deleteConfiguredAudienceModelAsync(array $args = [])
|
||||
* @method \Aws\Result deleteConfiguredAudienceModelPolicy(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteConfiguredAudienceModelPolicyAsync(array $args = [])
|
||||
* @method \Aws\Result deleteConfiguredModelAlgorithm(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteConfiguredModelAlgorithmAsync(array $args = [])
|
||||
* @method \Aws\Result deleteConfiguredModelAlgorithmAssociation(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteConfiguredModelAlgorithmAssociationAsync(array $args = [])
|
||||
* @method \Aws\Result deleteMLConfiguration(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteMLConfigurationAsync(array $args = [])
|
||||
* @method \Aws\Result deleteMLInputChannelData(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteMLInputChannelDataAsync(array $args = [])
|
||||
* @method \Aws\Result deleteTrainedModelOutput(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteTrainedModelOutputAsync(array $args = [])
|
||||
* @method \Aws\Result deleteTrainingDataset(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteTrainingDatasetAsync(array $args = [])
|
||||
* @method \Aws\Result getAudienceGenerationJob(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getAudienceGenerationJobAsync(array $args = [])
|
||||
* @method \Aws\Result getAudienceModel(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getAudienceModelAsync(array $args = [])
|
||||
* @method \Aws\Result getCollaborationConfiguredModelAlgorithmAssociation(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getCollaborationConfiguredModelAlgorithmAssociationAsync(array $args = [])
|
||||
* @method \Aws\Result getCollaborationMLInputChannel(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getCollaborationMLInputChannelAsync(array $args = [])
|
||||
* @method \Aws\Result getCollaborationTrainedModel(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getCollaborationTrainedModelAsync(array $args = [])
|
||||
* @method \Aws\Result getConfiguredAudienceModel(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getConfiguredAudienceModelAsync(array $args = [])
|
||||
* @method \Aws\Result getConfiguredAudienceModelPolicy(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getConfiguredAudienceModelPolicyAsync(array $args = [])
|
||||
* @method \Aws\Result getConfiguredModelAlgorithm(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getConfiguredModelAlgorithmAsync(array $args = [])
|
||||
* @method \Aws\Result getConfiguredModelAlgorithmAssociation(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getConfiguredModelAlgorithmAssociationAsync(array $args = [])
|
||||
* @method \Aws\Result getMLConfiguration(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getMLConfigurationAsync(array $args = [])
|
||||
* @method \Aws\Result getMLInputChannel(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getMLInputChannelAsync(array $args = [])
|
||||
* @method \Aws\Result getTrainedModel(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getTrainedModelAsync(array $args = [])
|
||||
* @method \Aws\Result getTrainedModelInferenceJob(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getTrainedModelInferenceJobAsync(array $args = [])
|
||||
* @method \Aws\Result getTrainingDataset(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getTrainingDatasetAsync(array $args = [])
|
||||
* @method \Aws\Result listAudienceExportJobs(array $args = [])
|
||||
|
@ -37,18 +77,44 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise listAudienceGenerationJobsAsync(array $args = [])
|
||||
* @method \Aws\Result listAudienceModels(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listAudienceModelsAsync(array $args = [])
|
||||
* @method \Aws\Result listCollaborationConfiguredModelAlgorithmAssociations(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listCollaborationConfiguredModelAlgorithmAssociationsAsync(array $args = [])
|
||||
* @method \Aws\Result listCollaborationMLInputChannels(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listCollaborationMLInputChannelsAsync(array $args = [])
|
||||
* @method \Aws\Result listCollaborationTrainedModelExportJobs(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listCollaborationTrainedModelExportJobsAsync(array $args = [])
|
||||
* @method \Aws\Result listCollaborationTrainedModelInferenceJobs(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listCollaborationTrainedModelInferenceJobsAsync(array $args = [])
|
||||
* @method \Aws\Result listCollaborationTrainedModels(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listCollaborationTrainedModelsAsync(array $args = [])
|
||||
* @method \Aws\Result listConfiguredAudienceModels(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listConfiguredAudienceModelsAsync(array $args = [])
|
||||
* @method \Aws\Result listConfiguredModelAlgorithmAssociations(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listConfiguredModelAlgorithmAssociationsAsync(array $args = [])
|
||||
* @method \Aws\Result listConfiguredModelAlgorithms(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listConfiguredModelAlgorithmsAsync(array $args = [])
|
||||
* @method \Aws\Result listMLInputChannels(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listMLInputChannelsAsync(array $args = [])
|
||||
* @method \Aws\Result listTagsForResource(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
|
||||
* @method \Aws\Result listTrainedModelInferenceJobs(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listTrainedModelInferenceJobsAsync(array $args = [])
|
||||
* @method \Aws\Result listTrainedModels(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listTrainedModelsAsync(array $args = [])
|
||||
* @method \Aws\Result listTrainingDatasets(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listTrainingDatasetsAsync(array $args = [])
|
||||
* @method \Aws\Result putConfiguredAudienceModelPolicy(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise putConfiguredAudienceModelPolicyAsync(array $args = [])
|
||||
* @method \Aws\Result putMLConfiguration(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise putMLConfigurationAsync(array $args = [])
|
||||
* @method \Aws\Result startAudienceExportJob(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise startAudienceExportJobAsync(array $args = [])
|
||||
* @method \Aws\Result startAudienceGenerationJob(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise startAudienceGenerationJobAsync(array $args = [])
|
||||
* @method \Aws\Result startTrainedModelExportJob(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise startTrainedModelExportJobAsync(array $args = [])
|
||||
* @method \Aws\Result startTrainedModelInferenceJob(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise startTrainedModelInferenceJobAsync(array $args = [])
|
||||
* @method \Aws\Result tagResource(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise tagResourceAsync(array $args = [])
|
||||
* @method \Aws\Result untagResource(array $args = [])
|
||||
|
|
|
@ -399,6 +399,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise startOutboundChatContactAsync(array $args = [])
|
||||
* @method \Aws\Result startOutboundVoiceContact(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise startOutboundVoiceContactAsync(array $args = [])
|
||||
* @method \Aws\Result startScreenSharing(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise startScreenSharingAsync(array $args = [])
|
||||
* @method \Aws\Result startTaskContact(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise startTaskContactAsync(array $args = [])
|
||||
* @method \Aws\Result startWebRTCContact(array $args = [])
|
||||
|
|
|
@ -5,8 +5,12 @@ use Aws\AwsClient;
|
|||
|
||||
/**
|
||||
* This client is used to interact with the **AWS Data Exchange** service.
|
||||
* @method \Aws\Result acceptDataGrant(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise acceptDataGrantAsync(array $args = [])
|
||||
* @method \Aws\Result cancelJob(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise cancelJobAsync(array $args = [])
|
||||
* @method \Aws\Result createDataGrant(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createDataGrantAsync(array $args = [])
|
||||
* @method \Aws\Result createDataSet(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createDataSetAsync(array $args = [])
|
||||
* @method \Aws\Result createEventAction(array $args = [])
|
||||
|
@ -17,6 +21,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise createRevisionAsync(array $args = [])
|
||||
* @method \Aws\Result deleteAsset(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteAssetAsync(array $args = [])
|
||||
* @method \Aws\Result deleteDataGrant(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteDataGrantAsync(array $args = [])
|
||||
* @method \Aws\Result deleteDataSet(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteDataSetAsync(array $args = [])
|
||||
* @method \Aws\Result deleteEventAction(array $args = [])
|
||||
|
@ -25,14 +31,20 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise deleteRevisionAsync(array $args = [])
|
||||
* @method \Aws\Result getAsset(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getAssetAsync(array $args = [])
|
||||
* @method \Aws\Result getDataGrant(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getDataGrantAsync(array $args = [])
|
||||
* @method \Aws\Result getDataSet(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getDataSetAsync(array $args = [])
|
||||
* @method \Aws\Result getEventAction(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getEventActionAsync(array $args = [])
|
||||
* @method \Aws\Result getJob(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getJobAsync(array $args = [])
|
||||
* @method \Aws\Result getReceivedDataGrant(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getReceivedDataGrantAsync(array $args = [])
|
||||
* @method \Aws\Result getRevision(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getRevisionAsync(array $args = [])
|
||||
* @method \Aws\Result listDataGrants(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listDataGrantsAsync(array $args = [])
|
||||
* @method \Aws\Result listDataSetRevisions(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listDataSetRevisionsAsync(array $args = [])
|
||||
* @method \Aws\Result listDataSets(array $args = [])
|
||||
|
@ -41,6 +53,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise listEventActionsAsync(array $args = [])
|
||||
* @method \Aws\Result listJobs(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listJobsAsync(array $args = [])
|
||||
* @method \Aws\Result listReceivedDataGrants(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listReceivedDataGrantsAsync(array $args = [])
|
||||
* @method \Aws\Result listRevisionAssets(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listRevisionAssetsAsync(array $args = [])
|
||||
* @method \Aws\Result listTagsForResource(array $args = [])
|
||||
|
|
|
@ -13,6 +13,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise batchStartRecommendationsAsync(array $args = [])
|
||||
* @method \Aws\Result cancelReplicationTaskAssessmentRun(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise cancelReplicationTaskAssessmentRunAsync(array $args = [])
|
||||
* @method \Aws\Result createDataMigration(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createDataMigrationAsync(array $args = [])
|
||||
* @method \Aws\Result createDataProvider(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createDataProviderAsync(array $args = [])
|
||||
* @method \Aws\Result createEndpoint(array $args = [])
|
||||
|
@ -37,6 +39,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise deleteCertificateAsync(array $args = [])
|
||||
* @method \Aws\Result deleteConnection(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteConnectionAsync(array $args = [])
|
||||
* @method \Aws\Result deleteDataMigration(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteDataMigrationAsync(array $args = [])
|
||||
* @method \Aws\Result deleteDataProvider(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteDataProviderAsync(array $args = [])
|
||||
* @method \Aws\Result deleteEndpoint(array $args = [])
|
||||
|
@ -71,6 +75,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise describeConnectionsAsync(array $args = [])
|
||||
* @method \Aws\Result describeConversionConfiguration(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeConversionConfigurationAsync(array $args = [])
|
||||
* @method \Aws\Result describeDataMigrations(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeDataMigrationsAsync(array $args = [])
|
||||
* @method \Aws\Result describeDataProviders(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeDataProvidersAsync(array $args = [])
|
||||
* @method \Aws\Result describeEndpointSettings(array $args = [])
|
||||
|
@ -155,6 +161,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
|
||||
* @method \Aws\Result modifyConversionConfiguration(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise modifyConversionConfigurationAsync(array $args = [])
|
||||
* @method \Aws\Result modifyDataMigration(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise modifyDataMigrationAsync(array $args = [])
|
||||
* @method \Aws\Result modifyDataProvider(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise modifyDataProviderAsync(array $args = [])
|
||||
* @method \Aws\Result modifyEndpoint(array $args = [])
|
||||
|
@ -187,6 +195,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise removeTagsFromResourceAsync(array $args = [])
|
||||
* @method \Aws\Result runFleetAdvisorLsaAnalysis(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise runFleetAdvisorLsaAnalysisAsync(array $args = [])
|
||||
* @method \Aws\Result startDataMigration(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise startDataMigrationAsync(array $args = [])
|
||||
* @method \Aws\Result startExtensionPackAssociation(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise startExtensionPackAssociationAsync(array $args = [])
|
||||
* @method \Aws\Result startMetadataModelAssessment(array $args = [])
|
||||
|
@ -209,6 +219,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise startReplicationTaskAssessmentAsync(array $args = [])
|
||||
* @method \Aws\Result startReplicationTaskAssessmentRun(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise startReplicationTaskAssessmentRunAsync(array $args = [])
|
||||
* @method \Aws\Result stopDataMigration(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise stopDataMigrationAsync(array $args = [])
|
||||
* @method \Aws\Result stopReplication(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise stopReplicationAsync(array $args = [])
|
||||
* @method \Aws\Result stopReplicationTask(array $args = [])
|
||||
|
|
|
@ -127,6 +127,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise listFleetsAsync(array $args = [])
|
||||
* @method \Aws\Result listJobMembers(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listJobMembersAsync(array $args = [])
|
||||
* @method \Aws\Result listJobParameterDefinitions(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listJobParameterDefinitionsAsync(array $args = [])
|
||||
* @method \Aws\Result listJobs(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listJobsAsync(array $args = [])
|
||||
* @method \Aws\Result listLicenseEndpoints(array $args = [])
|
||||
|
|
|
@ -5,6 +5,8 @@ use Aws\AwsClient;
|
|||
|
||||
/**
|
||||
* This client is used to interact with the **Amazon DocumentDB Elastic Clusters** service.
|
||||
* @method \Aws\Result applyPendingMaintenanceAction(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise applyPendingMaintenanceActionAsync(array $args = [])
|
||||
* @method \Aws\Result copyClusterSnapshot(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise copyClusterSnapshotAsync(array $args = [])
|
||||
* @method \Aws\Result createCluster(array $args = [])
|
||||
|
@ -19,10 +21,14 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise getClusterAsync(array $args = [])
|
||||
* @method \Aws\Result getClusterSnapshot(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getClusterSnapshotAsync(array $args = [])
|
||||
* @method \Aws\Result getPendingMaintenanceAction(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getPendingMaintenanceActionAsync(array $args = [])
|
||||
* @method \Aws\Result listClusterSnapshots(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listClusterSnapshotsAsync(array $args = [])
|
||||
* @method \Aws\Result listClusters(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listClustersAsync(array $args = [])
|
||||
* @method \Aws\Result listPendingMaintenanceActions(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listPendingMaintenanceActionsAsync(array $args = [])
|
||||
* @method \Aws\Result listTagsForResource(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
|
||||
* @method \Aws\Result restoreClusterFromSnapshot(array $args = [])
|
||||
|
|
18
vendor/aws/aws-sdk-php/src/Ec2/Ec2Client.php
vendored
18
vendor/aws/aws-sdk-php/src/Ec2/Ec2Client.php
vendored
|
@ -436,6 +436,8 @@ use Aws\PresignUrlMiddleware;
|
|||
* @method \GuzzleHttp\Promise\Promise getReservedInstancesExchangeQuoteAsync(array $args = []) (supported in versions 2016-09-15, 2016-11-15)
|
||||
* @method \Aws\Result acceptAddressTransfer(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \GuzzleHttp\Promise\Promise acceptAddressTransferAsync(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \Aws\Result acceptCapacityReservationBillingOwnership(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \GuzzleHttp\Promise\Promise acceptCapacityReservationBillingOwnershipAsync(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \Aws\Result acceptTransitGatewayMulticastDomainAssociations(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \GuzzleHttp\Promise\Promise acceptTransitGatewayMulticastDomainAssociationsAsync(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \Aws\Result acceptTransitGatewayPeeringAttachment(array $args = []) (supported in versions 2016-11-15)
|
||||
|
@ -454,6 +456,8 @@ use Aws\PresignUrlMiddleware;
|
|||
* @method \GuzzleHttp\Promise\Promise assignIpv6AddressesAsync(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \Aws\Result assignPrivateNatGatewayAddress(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \GuzzleHttp\Promise\Promise assignPrivateNatGatewayAddressAsync(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \Aws\Result associateCapacityReservationBillingOwner(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \GuzzleHttp\Promise\Promise associateCapacityReservationBillingOwnerAsync(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \Aws\Result associateClientVpnTargetNetwork(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \GuzzleHttp\Promise\Promise associateClientVpnTargetNetworkAsync(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \Aws\Result associateEnclaveCertificateIamRole(array $args = []) (supported in versions 2016-11-15)
|
||||
|
@ -468,6 +472,8 @@ use Aws\PresignUrlMiddleware;
|
|||
* @method \GuzzleHttp\Promise\Promise associateIpamResourceDiscoveryAsync(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \Aws\Result associateNatGatewayAddress(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \GuzzleHttp\Promise\Promise associateNatGatewayAddressAsync(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \Aws\Result associateSecurityGroupVpc(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \GuzzleHttp\Promise\Promise associateSecurityGroupVpcAsync(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \Aws\Result associateSubnetCidrBlock(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \GuzzleHttp\Promise\Promise associateSubnetCidrBlockAsync(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \Aws\Result associateTransitGatewayMulticastDomain(array $args = []) (supported in versions 2016-11-15)
|
||||
|
@ -734,6 +740,8 @@ use Aws\PresignUrlMiddleware;
|
|||
* @method \GuzzleHttp\Promise\Promise describeByoipCidrsAsync(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \Aws\Result describeCapacityBlockOfferings(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \GuzzleHttp\Promise\Promise describeCapacityBlockOfferingsAsync(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \Aws\Result describeCapacityReservationBillingRequests(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \GuzzleHttp\Promise\Promise describeCapacityReservationBillingRequestsAsync(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \Aws\Result describeCapacityReservationFleets(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \GuzzleHttp\Promise\Promise describeCapacityReservationFleetsAsync(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \Aws\Result describeCapacityReservations(array $args = []) (supported in versions 2016-11-15)
|
||||
|
@ -782,6 +790,8 @@ use Aws\PresignUrlMiddleware;
|
|||
* @method \GuzzleHttp\Promise\Promise describeInstanceEventNotificationAttributesAsync(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \Aws\Result describeInstanceEventWindows(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \GuzzleHttp\Promise\Promise describeInstanceEventWindowsAsync(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \Aws\Result describeInstanceImageMetadata(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \GuzzleHttp\Promise\Promise describeInstanceImageMetadataAsync(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \Aws\Result describeInstanceTopology(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \GuzzleHttp\Promise\Promise describeInstanceTopologyAsync(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \Aws\Result describeInstanceTypeOfferings(array $args = []) (supported in versions 2016-11-15)
|
||||
|
@ -844,6 +854,8 @@ use Aws\PresignUrlMiddleware;
|
|||
* @method \GuzzleHttp\Promise\Promise describeReplaceRootVolumeTasksAsync(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \Aws\Result describeSecurityGroupRules(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \GuzzleHttp\Promise\Promise describeSecurityGroupRulesAsync(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \Aws\Result describeSecurityGroupVpcAssociations(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \GuzzleHttp\Promise\Promise describeSecurityGroupVpcAssociationsAsync(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \Aws\Result describeSnapshotTierStatus(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \GuzzleHttp\Promise\Promise describeSnapshotTierStatusAsync(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \Aws\Result describeStoreImageTasks(array $args = []) (supported in versions 2016-11-15)
|
||||
|
@ -926,6 +938,8 @@ use Aws\PresignUrlMiddleware;
|
|||
* @method \GuzzleHttp\Promise\Promise disableSnapshotBlockPublicAccessAsync(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \Aws\Result disableTransitGatewayRouteTablePropagation(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \GuzzleHttp\Promise\Promise disableTransitGatewayRouteTablePropagationAsync(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \Aws\Result disassociateCapacityReservationBillingOwner(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \GuzzleHttp\Promise\Promise disassociateCapacityReservationBillingOwnerAsync(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \Aws\Result disassociateClientVpnTargetNetwork(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \GuzzleHttp\Promise\Promise disassociateClientVpnTargetNetworkAsync(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \Aws\Result disassociateEnclaveCertificateIamRole(array $args = []) (supported in versions 2016-11-15)
|
||||
|
@ -940,6 +954,8 @@ use Aws\PresignUrlMiddleware;
|
|||
* @method \GuzzleHttp\Promise\Promise disassociateIpamResourceDiscoveryAsync(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \Aws\Result disassociateNatGatewayAddress(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \GuzzleHttp\Promise\Promise disassociateNatGatewayAddressAsync(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \Aws\Result disassociateSecurityGroupVpc(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \GuzzleHttp\Promise\Promise disassociateSecurityGroupVpcAsync(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \Aws\Result disassociateSubnetCidrBlock(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \GuzzleHttp\Promise\Promise disassociateSubnetCidrBlockAsync(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \Aws\Result disassociateTransitGatewayMulticastDomain(array $args = []) (supported in versions 2016-11-15)
|
||||
|
@ -1206,6 +1222,8 @@ use Aws\PresignUrlMiddleware;
|
|||
* @method \GuzzleHttp\Promise\Promise registerTransitGatewayMulticastGroupMembersAsync(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \Aws\Result registerTransitGatewayMulticastGroupSources(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \GuzzleHttp\Promise\Promise registerTransitGatewayMulticastGroupSourcesAsync(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \Aws\Result rejectCapacityReservationBillingOwnership(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \GuzzleHttp\Promise\Promise rejectCapacityReservationBillingOwnershipAsync(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \Aws\Result rejectTransitGatewayMulticastDomainAssociations(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \GuzzleHttp\Promise\Promise rejectTransitGatewayMulticastDomainAssociationsAsync(array $args = []) (supported in versions 2016-11-15)
|
||||
* @method \Aws\Result rejectTransitGatewayPeeringAttachment(array $args = []) (supported in versions 2016-11-15)
|
||||
|
|
6
vendor/aws/aws-sdk-php/src/Ecs/EcsClient.php
vendored
6
vendor/aws/aws-sdk-php/src/Ecs/EcsClient.php
vendored
|
@ -38,6 +38,10 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise describeClustersAsync(array $args = [])
|
||||
* @method \Aws\Result describeContainerInstances(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeContainerInstancesAsync(array $args = [])
|
||||
* @method \Aws\Result describeServiceDeployments(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeServiceDeploymentsAsync(array $args = [])
|
||||
* @method \Aws\Result describeServiceRevisions(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeServiceRevisionsAsync(array $args = [])
|
||||
* @method \Aws\Result describeServices(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeServicesAsync(array $args = [])
|
||||
* @method \Aws\Result describeTaskDefinition(array $args = [])
|
||||
|
@ -60,6 +64,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise listClustersAsync(array $args = [])
|
||||
* @method \Aws\Result listContainerInstances(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listContainerInstancesAsync(array $args = [])
|
||||
* @method \Aws\Result listServiceDeployments(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listServiceDeploymentsAsync(array $args = [])
|
||||
* @method \Aws\Result listServices(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listServicesAsync(array $args = [])
|
||||
* @method \Aws\Result listServicesByNamespace(array $args = [])
|
||||
|
|
9
vendor/aws/aws-sdk-php/src/GeoMaps/Exception/GeoMapsException.php
vendored
Normal file
9
vendor/aws/aws-sdk-php/src/GeoMaps/Exception/GeoMapsException.php
vendored
Normal file
|
@ -0,0 +1,9 @@
|
|||
<?php
|
||||
namespace Aws\GeoMaps\Exception;
|
||||
|
||||
use Aws\Exception\AwsException;
|
||||
|
||||
/**
|
||||
* Represents an error interacting with the **Amazon Location Service Maps V2** service.
|
||||
*/
|
||||
class GeoMapsException extends AwsException {}
|
19
vendor/aws/aws-sdk-php/src/GeoMaps/GeoMapsClient.php
vendored
Normal file
19
vendor/aws/aws-sdk-php/src/GeoMaps/GeoMapsClient.php
vendored
Normal file
|
@ -0,0 +1,19 @@
|
|||
<?php
|
||||
namespace Aws\GeoMaps;
|
||||
|
||||
use Aws\AwsClient;
|
||||
|
||||
/**
|
||||
* This client is used to interact with the **Amazon Location Service Maps V2** service.
|
||||
* @method \Aws\Result getGlyphs(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getGlyphsAsync(array $args = [])
|
||||
* @method \Aws\Result getSprites(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getSpritesAsync(array $args = [])
|
||||
* @method \Aws\Result getStaticMap(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getStaticMapAsync(array $args = [])
|
||||
* @method \Aws\Result getStyleDescriptor(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getStyleDescriptorAsync(array $args = [])
|
||||
* @method \Aws\Result getTile(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getTileAsync(array $args = [])
|
||||
*/
|
||||
class GeoMapsClient extends AwsClient {}
|
9
vendor/aws/aws-sdk-php/src/GeoPlaces/Exception/GeoPlacesException.php
vendored
Normal file
9
vendor/aws/aws-sdk-php/src/GeoPlaces/Exception/GeoPlacesException.php
vendored
Normal file
|
@ -0,0 +1,9 @@
|
|||
<?php
|
||||
namespace Aws\GeoPlaces\Exception;
|
||||
|
||||
use Aws\Exception\AwsException;
|
||||
|
||||
/**
|
||||
* Represents an error interacting with the **Amazon Location Service Places V2** service.
|
||||
*/
|
||||
class GeoPlacesException extends AwsException {}
|
23
vendor/aws/aws-sdk-php/src/GeoPlaces/GeoPlacesClient.php
vendored
Normal file
23
vendor/aws/aws-sdk-php/src/GeoPlaces/GeoPlacesClient.php
vendored
Normal file
|
@ -0,0 +1,23 @@
|
|||
<?php
|
||||
namespace Aws\GeoPlaces;
|
||||
|
||||
use Aws\AwsClient;
|
||||
|
||||
/**
|
||||
* This client is used to interact with the **Amazon Location Service Places V2** service.
|
||||
* @method \Aws\Result autocomplete(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise autocompleteAsync(array $args = [])
|
||||
* @method \Aws\Result geocode(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise geocodeAsync(array $args = [])
|
||||
* @method \Aws\Result getPlace(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getPlaceAsync(array $args = [])
|
||||
* @method \Aws\Result reverseGeocode(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise reverseGeocodeAsync(array $args = [])
|
||||
* @method \Aws\Result searchNearby(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise searchNearbyAsync(array $args = [])
|
||||
* @method \Aws\Result searchText(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise searchTextAsync(array $args = [])
|
||||
* @method \Aws\Result suggest(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise suggestAsync(array $args = [])
|
||||
*/
|
||||
class GeoPlacesClient extends AwsClient {}
|
9
vendor/aws/aws-sdk-php/src/GeoRoutes/Exception/GeoRoutesException.php
vendored
Normal file
9
vendor/aws/aws-sdk-php/src/GeoRoutes/Exception/GeoRoutesException.php
vendored
Normal file
|
@ -0,0 +1,9 @@
|
|||
<?php
|
||||
namespace Aws\GeoRoutes\Exception;
|
||||
|
||||
use Aws\Exception\AwsException;
|
||||
|
||||
/**
|
||||
* Represents an error interacting with the **Amazon Location Service Routes V2** service.
|
||||
*/
|
||||
class GeoRoutesException extends AwsException {}
|
19
vendor/aws/aws-sdk-php/src/GeoRoutes/GeoRoutesClient.php
vendored
Normal file
19
vendor/aws/aws-sdk-php/src/GeoRoutes/GeoRoutesClient.php
vendored
Normal file
|
@ -0,0 +1,19 @@
|
|||
<?php
|
||||
namespace Aws\GeoRoutes;
|
||||
|
||||
use Aws\AwsClient;
|
||||
|
||||
/**
|
||||
* This client is used to interact with the **Amazon Location Service Routes V2** service.
|
||||
* @method \Aws\Result calculateIsolines(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise calculateIsolinesAsync(array $args = [])
|
||||
* @method \Aws\Result calculateRouteMatrix(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise calculateRouteMatrixAsync(array $args = [])
|
||||
* @method \Aws\Result calculateRoutes(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise calculateRoutesAsync(array $args = [])
|
||||
* @method \Aws\Result optimizeWaypoints(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise optimizeWaypointsAsync(array $args = [])
|
||||
* @method \Aws\Result snapToRoads(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise snapToRoadsAsync(array $args = [])
|
||||
*/
|
||||
class GeoRoutesClient extends AwsClient {}
|
12
vendor/aws/aws-sdk-php/src/Glue/GlueClient.php
vendored
12
vendor/aws/aws-sdk-php/src/Glue/GlueClient.php
vendored
|
@ -55,6 +55,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise createBlueprintAsync(array $args = [])
|
||||
* @method \Aws\Result createClassifier(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createClassifierAsync(array $args = [])
|
||||
* @method \Aws\Result createColumnStatisticsTaskSettings(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createColumnStatisticsTaskSettingsAsync(array $args = [])
|
||||
* @method \Aws\Result createConnection(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createConnectionAsync(array $args = [])
|
||||
* @method \Aws\Result createCrawler(array $args = [])
|
||||
|
@ -105,6 +107,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise deleteColumnStatisticsForPartitionAsync(array $args = [])
|
||||
* @method \Aws\Result deleteColumnStatisticsForTable(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteColumnStatisticsForTableAsync(array $args = [])
|
||||
* @method \Aws\Result deleteColumnStatisticsTaskSettings(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteColumnStatisticsTaskSettingsAsync(array $args = [])
|
||||
* @method \Aws\Result deleteConnection(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteConnectionAsync(array $args = [])
|
||||
* @method \Aws\Result deleteCrawler(array $args = [])
|
||||
|
@ -171,6 +175,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise getColumnStatisticsTaskRunAsync(array $args = [])
|
||||
* @method \Aws\Result getColumnStatisticsTaskRuns(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getColumnStatisticsTaskRunsAsync(array $args = [])
|
||||
* @method \Aws\Result getColumnStatisticsTaskSettings(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getColumnStatisticsTaskSettingsAsync(array $args = [])
|
||||
* @method \Aws\Result getConnection(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getConnectionAsync(array $args = [])
|
||||
* @method \Aws\Result getConnections(array $args = [])
|
||||
|
@ -369,6 +375,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise startBlueprintRunAsync(array $args = [])
|
||||
* @method \Aws\Result startColumnStatisticsTaskRun(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise startColumnStatisticsTaskRunAsync(array $args = [])
|
||||
* @method \Aws\Result startColumnStatisticsTaskRunSchedule(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise startColumnStatisticsTaskRunScheduleAsync(array $args = [])
|
||||
* @method \Aws\Result startCrawler(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise startCrawlerAsync(array $args = [])
|
||||
* @method \Aws\Result startCrawlerSchedule(array $args = [])
|
||||
|
@ -393,6 +401,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise startWorkflowRunAsync(array $args = [])
|
||||
* @method \Aws\Result stopColumnStatisticsTaskRun(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise stopColumnStatisticsTaskRunAsync(array $args = [])
|
||||
* @method \Aws\Result stopColumnStatisticsTaskRunSchedule(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise stopColumnStatisticsTaskRunScheduleAsync(array $args = [])
|
||||
* @method \Aws\Result stopCrawler(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise stopCrawlerAsync(array $args = [])
|
||||
* @method \Aws\Result stopCrawlerSchedule(array $args = [])
|
||||
|
@ -417,6 +427,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise updateColumnStatisticsForPartitionAsync(array $args = [])
|
||||
* @method \Aws\Result updateColumnStatisticsForTable(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updateColumnStatisticsForTableAsync(array $args = [])
|
||||
* @method \Aws\Result updateColumnStatisticsTaskSettings(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updateColumnStatisticsTaskSettingsAsync(array $args = [])
|
||||
* @method \Aws\Result updateConnection(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updateConnectionAsync(array $args = [])
|
||||
* @method \Aws\Result updateCrawler(array $args = [])
|
||||
|
|
|
@ -9,22 +9,30 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise createKeyspaceAsync(array $args = [])
|
||||
* @method \Aws\Result createTable(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createTableAsync(array $args = [])
|
||||
* @method \Aws\Result createType(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createTypeAsync(array $args = [])
|
||||
* @method \Aws\Result deleteKeyspace(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteKeyspaceAsync(array $args = [])
|
||||
* @method \Aws\Result deleteTable(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteTableAsync(array $args = [])
|
||||
* @method \Aws\Result deleteType(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteTypeAsync(array $args = [])
|
||||
* @method \Aws\Result getKeyspace(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getKeyspaceAsync(array $args = [])
|
||||
* @method \Aws\Result getTable(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getTableAsync(array $args = [])
|
||||
* @method \Aws\Result getTableAutoScalingSettings(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getTableAutoScalingSettingsAsync(array $args = [])
|
||||
* @method \Aws\Result getType(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getTypeAsync(array $args = [])
|
||||
* @method \Aws\Result listKeyspaces(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listKeyspacesAsync(array $args = [])
|
||||
* @method \Aws\Result listTables(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listTablesAsync(array $args = [])
|
||||
* @method \Aws\Result listTagsForResource(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
|
||||
* @method \Aws\Result listTypes(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listTypesAsync(array $args = [])
|
||||
* @method \Aws\Result restoreTable(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise restoreTableAsync(array $args = [])
|
||||
* @method \Aws\Result tagResource(array $args = [])
|
||||
|
|
|
@ -21,6 +21,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise createDataCellsFilterAsync(array $args = [])
|
||||
* @method \Aws\Result createLFTag(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createLFTagAsync(array $args = [])
|
||||
* @method \Aws\Result createLFTagExpression(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createLFTagExpressionAsync(array $args = [])
|
||||
* @method \Aws\Result createLakeFormationIdentityCenterConfiguration(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createLakeFormationIdentityCenterConfigurationAsync(array $args = [])
|
||||
* @method \Aws\Result createLakeFormationOptIn(array $args = [])
|
||||
|
@ -29,6 +31,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise deleteDataCellsFilterAsync(array $args = [])
|
||||
* @method \Aws\Result deleteLFTag(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteLFTagAsync(array $args = [])
|
||||
* @method \Aws\Result deleteLFTagExpression(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteLFTagExpressionAsync(array $args = [])
|
||||
* @method \Aws\Result deleteLakeFormationIdentityCenterConfiguration(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteLakeFormationIdentityCenterConfigurationAsync(array $args = [])
|
||||
* @method \Aws\Result deleteLakeFormationOptIn(array $args = [])
|
||||
|
@ -55,6 +59,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise getEffectivePermissionsForPathAsync(array $args = [])
|
||||
* @method \Aws\Result getLFTag(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getLFTagAsync(array $args = [])
|
||||
* @method \Aws\Result getLFTagExpression(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getLFTagExpressionAsync(array $args = [])
|
||||
* @method \Aws\Result getQueryState(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getQueryStateAsync(array $args = [])
|
||||
* @method \Aws\Result getQueryStatistics(array $args = [])
|
||||
|
@ -75,6 +81,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise grantPermissionsAsync(array $args = [])
|
||||
* @method \Aws\Result listDataCellsFilter(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listDataCellsFilterAsync(array $args = [])
|
||||
* @method \Aws\Result listLFTagExpressions(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listLFTagExpressionsAsync(array $args = [])
|
||||
* @method \Aws\Result listLFTags(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listLFTagsAsync(array $args = [])
|
||||
* @method \Aws\Result listLakeFormationOptIns(array $args = [])
|
||||
|
@ -107,6 +115,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise updateDataCellsFilterAsync(array $args = [])
|
||||
* @method \Aws\Result updateLFTag(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updateLFTagAsync(array $args = [])
|
||||
* @method \Aws\Result updateLFTagExpression(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updateLFTagExpressionAsync(array $args = [])
|
||||
* @method \Aws\Result updateLakeFormationIdentityCenterConfiguration(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updateLakeFormationIdentityCenterConfigurationAsync(array $args = [])
|
||||
* @method \Aws\Result updateResource(array $args = [])
|
||||
|
|
|
@ -15,6 +15,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise deleteEnvironmentAsync(array $args = [])
|
||||
* @method \Aws\Result getEnvironment(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getEnvironmentAsync(array $args = [])
|
||||
* @method \Aws\Result invokeRestApi(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise invokeRestApiAsync(array $args = [])
|
||||
* @method \Aws\Result listEnvironments(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listEnvironmentsAsync(array $args = [])
|
||||
* @method \Aws\Result listTagsForResource(array $args = [])
|
||||
|
|
|
@ -5,10 +5,14 @@ use Aws\AwsClient;
|
|||
|
||||
/**
|
||||
* This client is used to interact with the **AWS Elemental MediaPackage v2** service.
|
||||
* @method \Aws\Result cancelHarvestJob(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise cancelHarvestJobAsync(array $args = [])
|
||||
* @method \Aws\Result createChannel(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createChannelAsync(array $args = [])
|
||||
* @method \Aws\Result createChannelGroup(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createChannelGroupAsync(array $args = [])
|
||||
* @method \Aws\Result createHarvestJob(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createHarvestJobAsync(array $args = [])
|
||||
* @method \Aws\Result createOriginEndpoint(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createOriginEndpointAsync(array $args = [])
|
||||
* @method \Aws\Result deleteChannel(array $args = [])
|
||||
|
@ -27,6 +31,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise getChannelGroupAsync(array $args = [])
|
||||
* @method \Aws\Result getChannelPolicy(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getChannelPolicyAsync(array $args = [])
|
||||
* @method \Aws\Result getHarvestJob(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getHarvestJobAsync(array $args = [])
|
||||
* @method \Aws\Result getOriginEndpoint(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getOriginEndpointAsync(array $args = [])
|
||||
* @method \Aws\Result getOriginEndpointPolicy(array $args = [])
|
||||
|
@ -35,6 +41,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise listChannelGroupsAsync(array $args = [])
|
||||
* @method \Aws\Result listChannels(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listChannelsAsync(array $args = [])
|
||||
* @method \Aws\Result listHarvestJobs(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listHarvestJobsAsync(array $args = [])
|
||||
* @method \Aws\Result listOriginEndpoints(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listOriginEndpointsAsync(array $args = [])
|
||||
* @method \Aws\Result listTagsForResource(array $args = [])
|
||||
|
|
|
@ -1,9 +0,0 @@
|
|||
<?php
|
||||
namespace Aws\NimbleStudio\Exception;
|
||||
|
||||
use Aws\Exception\AwsException;
|
||||
|
||||
/**
|
||||
* Represents an error interacting with the **AmazonNimbleStudio** service.
|
||||
*/
|
||||
class NimbleStudioException extends AwsException {}
|
|
@ -1,107 +0,0 @@
|
|||
<?php
|
||||
namespace Aws\NimbleStudio;
|
||||
|
||||
use Aws\AwsClient;
|
||||
|
||||
/**
|
||||
* This client is used to interact with the **AmazonNimbleStudio** service.
|
||||
* @method \Aws\Result acceptEulas(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise acceptEulasAsync(array $args = [])
|
||||
* @method \Aws\Result createLaunchProfile(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createLaunchProfileAsync(array $args = [])
|
||||
* @method \Aws\Result createStreamingImage(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createStreamingImageAsync(array $args = [])
|
||||
* @method \Aws\Result createStreamingSession(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createStreamingSessionAsync(array $args = [])
|
||||
* @method \Aws\Result createStreamingSessionStream(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createStreamingSessionStreamAsync(array $args = [])
|
||||
* @method \Aws\Result createStudio(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createStudioAsync(array $args = [])
|
||||
* @method \Aws\Result createStudioComponent(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createStudioComponentAsync(array $args = [])
|
||||
* @method \Aws\Result deleteLaunchProfile(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteLaunchProfileAsync(array $args = [])
|
||||
* @method \Aws\Result deleteLaunchProfileMember(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteLaunchProfileMemberAsync(array $args = [])
|
||||
* @method \Aws\Result deleteStreamingImage(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteStreamingImageAsync(array $args = [])
|
||||
* @method \Aws\Result deleteStreamingSession(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteStreamingSessionAsync(array $args = [])
|
||||
* @method \Aws\Result deleteStudio(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteStudioAsync(array $args = [])
|
||||
* @method \Aws\Result deleteStudioComponent(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteStudioComponentAsync(array $args = [])
|
||||
* @method \Aws\Result deleteStudioMember(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteStudioMemberAsync(array $args = [])
|
||||
* @method \Aws\Result getEula(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getEulaAsync(array $args = [])
|
||||
* @method \Aws\Result getLaunchProfile(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getLaunchProfileAsync(array $args = [])
|
||||
* @method \Aws\Result getLaunchProfileDetails(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getLaunchProfileDetailsAsync(array $args = [])
|
||||
* @method \Aws\Result getLaunchProfileInitialization(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getLaunchProfileInitializationAsync(array $args = [])
|
||||
* @method \Aws\Result getLaunchProfileMember(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getLaunchProfileMemberAsync(array $args = [])
|
||||
* @method \Aws\Result getStreamingImage(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getStreamingImageAsync(array $args = [])
|
||||
* @method \Aws\Result getStreamingSession(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getStreamingSessionAsync(array $args = [])
|
||||
* @method \Aws\Result getStreamingSessionBackup(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getStreamingSessionBackupAsync(array $args = [])
|
||||
* @method \Aws\Result getStreamingSessionStream(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getStreamingSessionStreamAsync(array $args = [])
|
||||
* @method \Aws\Result getStudio(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getStudioAsync(array $args = [])
|
||||
* @method \Aws\Result getStudioComponent(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getStudioComponentAsync(array $args = [])
|
||||
* @method \Aws\Result getStudioMember(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getStudioMemberAsync(array $args = [])
|
||||
* @method \Aws\Result listEulaAcceptances(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listEulaAcceptancesAsync(array $args = [])
|
||||
* @method \Aws\Result listEulas(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listEulasAsync(array $args = [])
|
||||
* @method \Aws\Result listLaunchProfileMembers(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listLaunchProfileMembersAsync(array $args = [])
|
||||
* @method \Aws\Result listLaunchProfiles(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listLaunchProfilesAsync(array $args = [])
|
||||
* @method \Aws\Result listStreamingImages(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listStreamingImagesAsync(array $args = [])
|
||||
* @method \Aws\Result listStreamingSessionBackups(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listStreamingSessionBackupsAsync(array $args = [])
|
||||
* @method \Aws\Result listStreamingSessions(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listStreamingSessionsAsync(array $args = [])
|
||||
* @method \Aws\Result listStudioComponents(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listStudioComponentsAsync(array $args = [])
|
||||
* @method \Aws\Result listStudioMembers(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listStudioMembersAsync(array $args = [])
|
||||
* @method \Aws\Result listStudios(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listStudiosAsync(array $args = [])
|
||||
* @method \Aws\Result listTagsForResource(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
|
||||
* @method \Aws\Result putLaunchProfileMembers(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise putLaunchProfileMembersAsync(array $args = [])
|
||||
* @method \Aws\Result putStudioMembers(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise putStudioMembersAsync(array $args = [])
|
||||
* @method \Aws\Result startStreamingSession(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise startStreamingSessionAsync(array $args = [])
|
||||
* @method \Aws\Result startStudioSSOConfigurationRepair(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise startStudioSSOConfigurationRepairAsync(array $args = [])
|
||||
* @method \Aws\Result stopStreamingSession(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise stopStreamingSessionAsync(array $args = [])
|
||||
* @method \Aws\Result tagResource(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise tagResourceAsync(array $args = [])
|
||||
* @method \Aws\Result untagResource(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise untagResourceAsync(array $args = [])
|
||||
* @method \Aws\Result updateLaunchProfile(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updateLaunchProfileAsync(array $args = [])
|
||||
* @method \Aws\Result updateLaunchProfileMember(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updateLaunchProfileMemberAsync(array $args = [])
|
||||
* @method \Aws\Result updateStreamingImage(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updateStreamingImageAsync(array $args = [])
|
||||
* @method \Aws\Result updateStudio(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updateStudioAsync(array $args = [])
|
||||
* @method \Aws\Result updateStudioComponent(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updateStudioComponentAsync(array $args = [])
|
||||
*/
|
||||
class NimbleStudioClient extends AwsClient {}
|
|
@ -19,6 +19,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise cancelDomainConfigChangeAsync(array $args = [])
|
||||
* @method \Aws\Result cancelServiceSoftwareUpdate(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise cancelServiceSoftwareUpdateAsync(array $args = [])
|
||||
* @method \Aws\Result createApplication(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createApplicationAsync(array $args = [])
|
||||
* @method \Aws\Result createDomain(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createDomainAsync(array $args = [])
|
||||
* @method \Aws\Result createOutboundConnection(array $args = [])
|
||||
|
@ -27,6 +29,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise createPackageAsync(array $args = [])
|
||||
* @method \Aws\Result createVpcEndpoint(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createVpcEndpointAsync(array $args = [])
|
||||
* @method \Aws\Result deleteApplication(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteApplicationAsync(array $args = [])
|
||||
* @method \Aws\Result deleteDataSource(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteDataSourceAsync(array $args = [])
|
||||
* @method \Aws\Result deleteDomain(array $args = [])
|
||||
|
@ -71,6 +75,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise describeVpcEndpointsAsync(array $args = [])
|
||||
* @method \Aws\Result dissociatePackage(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise dissociatePackageAsync(array $args = [])
|
||||
* @method \Aws\Result getApplication(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getApplicationAsync(array $args = [])
|
||||
* @method \Aws\Result getCompatibleVersions(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getCompatibleVersionsAsync(array $args = [])
|
||||
* @method \Aws\Result getDataSource(array $args = [])
|
||||
|
@ -83,6 +89,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise getUpgradeHistoryAsync(array $args = [])
|
||||
* @method \Aws\Result getUpgradeStatus(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getUpgradeStatusAsync(array $args = [])
|
||||
* @method \Aws\Result listApplications(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listApplicationsAsync(array $args = [])
|
||||
* @method \Aws\Result listDataSources(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listDataSourcesAsync(array $args = [])
|
||||
* @method \Aws\Result listDomainMaintenances(array $args = [])
|
||||
|
@ -119,6 +127,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise startDomainMaintenanceAsync(array $args = [])
|
||||
* @method \Aws\Result startServiceSoftwareUpdate(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise startServiceSoftwareUpdateAsync(array $args = [])
|
||||
* @method \Aws\Result updateApplication(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updateApplicationAsync(array $args = [])
|
||||
* @method \Aws\Result updateDataSource(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updateDataSourceAsync(array $args = [])
|
||||
* @method \Aws\Result updateDomainConfig(array $args = [])
|
||||
|
|
|
@ -13,6 +13,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise generateCardValidationDataAsync(array $args = [])
|
||||
* @method \Aws\Result generateMac(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise generateMacAsync(array $args = [])
|
||||
* @method \Aws\Result generateMacEmvPinChange(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise generateMacEmvPinChangeAsync(array $args = [])
|
||||
* @method \Aws\Result generatePinData(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise generatePinDataAsync(array $args = [])
|
||||
* @method \Aws\Result reEncryptData(array $args = [])
|
||||
|
|
|
@ -55,6 +55,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise untagResourceAsync(array $args = [])
|
||||
* @method \Aws\Result updateLoggingConfiguration(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updateLoggingConfigurationAsync(array $args = [])
|
||||
* @method \Aws\Result updateScraper(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updateScraperAsync(array $args = [])
|
||||
* @method \Aws\Result updateWorkspaceAlias(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updateWorkspaceAliasAsync(array $args = [])
|
||||
*/
|
||||
|
|
|
@ -9,6 +9,12 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise associateLibraryItemReviewAsync(array $args = [])
|
||||
* @method \Aws\Result associateQAppWithUser(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise associateQAppWithUserAsync(array $args = [])
|
||||
* @method \Aws\Result batchCreateCategory(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise batchCreateCategoryAsync(array $args = [])
|
||||
* @method \Aws\Result batchDeleteCategory(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise batchDeleteCategoryAsync(array $args = [])
|
||||
* @method \Aws\Result batchUpdateCategory(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise batchUpdateCategoryAsync(array $args = [])
|
||||
* @method \Aws\Result createLibraryItem(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createLibraryItemAsync(array $args = [])
|
||||
* @method \Aws\Result createQApp(array $args = [])
|
||||
|
@ -29,6 +35,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise getQAppSessionAsync(array $args = [])
|
||||
* @method \Aws\Result importDocument(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise importDocumentAsync(array $args = [])
|
||||
* @method \Aws\Result listCategories(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listCategoriesAsync(array $args = [])
|
||||
* @method \Aws\Result listLibraryItems(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listLibraryItemsAsync(array $args = [])
|
||||
* @method \Aws\Result listQApps(array $args = [])
|
||||
|
|
|
@ -5,6 +5,14 @@ use Aws\AwsClient;
|
|||
|
||||
/**
|
||||
* This client is used to interact with the **Amazon Q Connect** service.
|
||||
* @method \Aws\Result createAIAgent(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createAIAgentAsync(array $args = [])
|
||||
* @method \Aws\Result createAIAgentVersion(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createAIAgentVersionAsync(array $args = [])
|
||||
* @method \Aws\Result createAIPrompt(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createAIPromptAsync(array $args = [])
|
||||
* @method \Aws\Result createAIPromptVersion(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createAIPromptVersionAsync(array $args = [])
|
||||
* @method \Aws\Result createAssistant(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createAssistantAsync(array $args = [])
|
||||
* @method \Aws\Result createAssistantAssociation(array $args = [])
|
||||
|
@ -19,6 +27,14 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise createQuickResponseAsync(array $args = [])
|
||||
* @method \Aws\Result createSession(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createSessionAsync(array $args = [])
|
||||
* @method \Aws\Result deleteAIAgent(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteAIAgentAsync(array $args = [])
|
||||
* @method \Aws\Result deleteAIAgentVersion(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteAIAgentVersionAsync(array $args = [])
|
||||
* @method \Aws\Result deleteAIPrompt(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteAIPromptAsync(array $args = [])
|
||||
* @method \Aws\Result deleteAIPromptVersion(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteAIPromptVersionAsync(array $args = [])
|
||||
* @method \Aws\Result deleteAssistant(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteAssistantAsync(array $args = [])
|
||||
* @method \Aws\Result deleteAssistantAssociation(array $args = [])
|
||||
|
@ -33,6 +49,10 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise deleteKnowledgeBaseAsync(array $args = [])
|
||||
* @method \Aws\Result deleteQuickResponse(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteQuickResponseAsync(array $args = [])
|
||||
* @method \Aws\Result getAIAgent(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getAIAgentAsync(array $args = [])
|
||||
* @method \Aws\Result getAIPrompt(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getAIPromptAsync(array $args = [])
|
||||
* @method \Aws\Result getAssistant(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getAssistantAsync(array $args = [])
|
||||
* @method \Aws\Result getAssistantAssociation(array $args = [])
|
||||
|
@ -53,6 +73,14 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise getRecommendationsAsync(array $args = [])
|
||||
* @method \Aws\Result getSession(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getSessionAsync(array $args = [])
|
||||
* @method \Aws\Result listAIAgentVersions(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listAIAgentVersionsAsync(array $args = [])
|
||||
* @method \Aws\Result listAIAgents(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listAIAgentsAsync(array $args = [])
|
||||
* @method \Aws\Result listAIPromptVersions(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listAIPromptVersionsAsync(array $args = [])
|
||||
* @method \Aws\Result listAIPrompts(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listAIPromptsAsync(array $args = [])
|
||||
* @method \Aws\Result listAssistantAssociations(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listAssistantAssociationsAsync(array $args = [])
|
||||
* @method \Aws\Result listAssistants(array $args = [])
|
||||
|
@ -75,6 +103,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise putFeedbackAsync(array $args = [])
|
||||
* @method \Aws\Result queryAssistant(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise queryAssistantAsync(array $args = [])
|
||||
* @method \Aws\Result removeAssistantAIAgent(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise removeAssistantAIAgentAsync(array $args = [])
|
||||
* @method \Aws\Result removeKnowledgeBaseTemplateUri(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise removeKnowledgeBaseTemplateUriAsync(array $args = [])
|
||||
* @method \Aws\Result searchContent(array $args = [])
|
||||
|
@ -91,6 +121,12 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise tagResourceAsync(array $args = [])
|
||||
* @method \Aws\Result untagResource(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise untagResourceAsync(array $args = [])
|
||||
* @method \Aws\Result updateAIAgent(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updateAIAgentAsync(array $args = [])
|
||||
* @method \Aws\Result updateAIPrompt(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updateAIPromptAsync(array $args = [])
|
||||
* @method \Aws\Result updateAssistantAIAgent(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updateAssistantAIAgentAsync(array $args = [])
|
||||
* @method \Aws\Result updateContent(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updateContentAsync(array $args = [])
|
||||
* @method \Aws\Result updateKnowledgeBaseTemplateUri(array $args = [])
|
||||
|
@ -99,5 +135,7 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise updateQuickResponseAsync(array $args = [])
|
||||
* @method \Aws\Result updateSession(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updateSessionAsync(array $args = [])
|
||||
* @method \Aws\Result updateSessionData(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updateSessionDataAsync(array $args = [])
|
||||
*/
|
||||
class QConnectClient extends AwsClient {}
|
||||
|
|
|
@ -291,6 +291,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise startAssetBundleImportJobAsync(array $args = [])
|
||||
* @method \Aws\Result startDashboardSnapshotJob(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise startDashboardSnapshotJobAsync(array $args = [])
|
||||
* @method \Aws\Result startDashboardSnapshotJobSchedule(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise startDashboardSnapshotJobScheduleAsync(array $args = [])
|
||||
* @method \Aws\Result tagResource(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise tagResourceAsync(array $args = [])
|
||||
* @method \Aws\Result untagResource(array $args = [])
|
||||
|
|
|
@ -50,6 +50,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise createHsmClientCertificateAsync(array $args = [])
|
||||
* @method \Aws\Result createHsmConfiguration(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createHsmConfigurationAsync(array $args = [])
|
||||
* @method \Aws\Result createIntegration(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createIntegrationAsync(array $args = [])
|
||||
* @method \Aws\Result createRedshiftIdcApplication(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createRedshiftIdcApplicationAsync(array $args = [])
|
||||
* @method \Aws\Result createScheduledAction(array $args = [])
|
||||
|
@ -86,6 +88,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise deleteHsmClientCertificateAsync(array $args = [])
|
||||
* @method \Aws\Result deleteHsmConfiguration(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteHsmConfigurationAsync(array $args = [])
|
||||
* @method \Aws\Result deleteIntegration(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteIntegrationAsync(array $args = [])
|
||||
* @method \Aws\Result deletePartner(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deletePartnerAsync(array $args = [])
|
||||
* @method \Aws\Result deleteRedshiftIdcApplication(array $args = [])
|
||||
|
@ -150,6 +154,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise describeHsmConfigurationsAsync(array $args = [])
|
||||
* @method \Aws\Result describeInboundIntegrations(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeInboundIntegrationsAsync(array $args = [])
|
||||
* @method \Aws\Result describeIntegrations(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeIntegrationsAsync(array $args = [])
|
||||
* @method \Aws\Result describeLoggingStatus(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeLoggingStatusAsync(array $args = [])
|
||||
* @method \Aws\Result describeNodeConfigurationOptions(array $args = [])
|
||||
|
@ -232,6 +238,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise modifyEndpointAccessAsync(array $args = [])
|
||||
* @method \Aws\Result modifyEventSubscription(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise modifyEventSubscriptionAsync(array $args = [])
|
||||
* @method \Aws\Result modifyIntegration(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise modifyIntegrationAsync(array $args = [])
|
||||
* @method \Aws\Result modifyRedshiftIdcApplication(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise modifyRedshiftIdcApplicationAsync(array $args = [])
|
||||
* @method \Aws\Result modifyScheduledAction(array $args = [])
|
||||
|
|
|
@ -17,6 +17,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise executeStatementAsync(array $args = [])
|
||||
* @method \Aws\Result getStatementResult(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getStatementResultAsync(array $args = [])
|
||||
* @method \Aws\Result getStatementResultV2(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getStatementResultV2Async(array $args = [])
|
||||
* @method \Aws\Result listDatabases(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listDatabasesAsync(array $args = [])
|
||||
* @method \Aws\Result listSchemas(array $args = [])
|
||||
|
|
|
@ -5,6 +5,10 @@ use Aws\AwsClient;
|
|||
|
||||
/**
|
||||
* This client is used to interact with the **AWS re:Post Private** service.
|
||||
* @method \Aws\Result batchAddRole(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise batchAddRoleAsync(array $args = [])
|
||||
* @method \Aws\Result batchRemoveRole(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise batchRemoveRoleAsync(array $args = [])
|
||||
* @method \Aws\Result createSpace(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createSpaceAsync(array $args = [])
|
||||
* @method \Aws\Result deleteSpace(array $args = [])
|
||||
|
|
|
@ -25,12 +25,16 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise getDefaultViewAsync(array $args = [])
|
||||
* @method \Aws\Result getIndex(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getIndexAsync(array $args = [])
|
||||
* @method \Aws\Result getManagedView(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getManagedViewAsync(array $args = [])
|
||||
* @method \Aws\Result getView(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getViewAsync(array $args = [])
|
||||
* @method \Aws\Result listIndexes(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listIndexesAsync(array $args = [])
|
||||
* @method \Aws\Result listIndexesForMembers(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listIndexesForMembersAsync(array $args = [])
|
||||
* @method \Aws\Result listManagedViews(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listManagedViewsAsync(array $args = [])
|
||||
* @method \Aws\Result listResources(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listResourcesAsync(array $args = [])
|
||||
* @method \Aws\Result listSupportedResourceTypes(array $args = [])
|
||||
|
|
12
vendor/aws/aws-sdk-php/src/ResultPaginator.php
vendored
12
vendor/aws/aws-sdk-php/src/ResultPaginator.php
vendored
|
@ -107,18 +107,27 @@ class ResultPaginator implements \Iterator
|
|||
return $this->valid() ? $this->result : false;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return mixed
|
||||
*/
|
||||
#[\ReturnTypeWillChange]
|
||||
public function key()
|
||||
{
|
||||
return $this->valid() ? $this->requestCount - 1 : null;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return void
|
||||
*/
|
||||
#[\ReturnTypeWillChange]
|
||||
public function next()
|
||||
{
|
||||
$this->result = null;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return bool
|
||||
*/
|
||||
#[\ReturnTypeWillChange]
|
||||
public function valid()
|
||||
{
|
||||
|
@ -154,6 +163,9 @@ class ResultPaginator implements \Iterator
|
|||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return void
|
||||
*/
|
||||
#[\ReturnTypeWillChange]
|
||||
public function rewind()
|
||||
{
|
||||
|
|
|
@ -11,6 +11,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise addTagsAsync(array $args = [])
|
||||
* @method \Aws\Result associateTrialComponent(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise associateTrialComponentAsync(array $args = [])
|
||||
* @method \Aws\Result batchDeleteClusterNodes(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise batchDeleteClusterNodesAsync(array $args = [])
|
||||
* @method \Aws\Result batchDescribeModelPackage(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise batchDescribeModelPackageAsync(array $args = [])
|
||||
* @method \Aws\Result createAction(array $args = [])
|
||||
|
|
12
vendor/aws/aws-sdk-php/src/Sdk.php
vendored
12
vendor/aws/aws-sdk-php/src/Sdk.php
vendored
|
@ -306,6 +306,12 @@ namespace Aws;
|
|||
* @method \Aws\MultiRegionClient createMultiRegionFreeTier(array $args = [])
|
||||
* @method \Aws\GameLift\GameLiftClient createGameLift(array $args = [])
|
||||
* @method \Aws\MultiRegionClient createMultiRegionGameLift(array $args = [])
|
||||
* @method \Aws\GeoMaps\GeoMapsClient createGeoMaps(array $args = [])
|
||||
* @method \Aws\MultiRegionClient createMultiRegionGeoMaps(array $args = [])
|
||||
* @method \Aws\GeoPlaces\GeoPlacesClient createGeoPlaces(array $args = [])
|
||||
* @method \Aws\MultiRegionClient createMultiRegionGeoPlaces(array $args = [])
|
||||
* @method \Aws\GeoRoutes\GeoRoutesClient createGeoRoutes(array $args = [])
|
||||
* @method \Aws\MultiRegionClient createMultiRegionGeoRoutes(array $args = [])
|
||||
* @method \Aws\Glacier\GlacierClient createGlacier(array $args = [])
|
||||
* @method \Aws\MultiRegionClient createMultiRegionGlacier(array $args = [])
|
||||
* @method \Aws\GlobalAccelerator\GlobalAcceleratorClient createGlobalAccelerator(array $args = [])
|
||||
|
@ -510,8 +516,6 @@ namespace Aws;
|
|||
* @method \Aws\MultiRegionClient createMultiRegionNetworkManager(array $args = [])
|
||||
* @method \Aws\NetworkMonitor\NetworkMonitorClient createNetworkMonitor(array $args = [])
|
||||
* @method \Aws\MultiRegionClient createMultiRegionNetworkMonitor(array $args = [])
|
||||
* @method \Aws\NimbleStudio\NimbleStudioClient createNimbleStudio(array $args = [])
|
||||
* @method \Aws\MultiRegionClient createMultiRegionNimbleStudio(array $args = [])
|
||||
* @method \Aws\OAM\OAMClient createOAM(array $args = [])
|
||||
* @method \Aws\MultiRegionClient createMultiRegionOAM(array $args = [])
|
||||
* @method \Aws\OSIS\OSISClient createOSIS(array $args = [])
|
||||
|
@ -694,6 +698,8 @@ namespace Aws;
|
|||
* @method \Aws\MultiRegionClient createMultiRegionSnowDeviceManagement(array $args = [])
|
||||
* @method \Aws\Sns\SnsClient createSns(array $args = [])
|
||||
* @method \Aws\MultiRegionClient createMultiRegionSns(array $args = [])
|
||||
* @method \Aws\SocialMessaging\SocialMessagingClient createSocialMessaging(array $args = [])
|
||||
* @method \Aws\MultiRegionClient createMultiRegionSocialMessaging(array $args = [])
|
||||
* @method \Aws\Sqs\SqsClient createSqs(array $args = [])
|
||||
* @method \Aws\MultiRegionClient createMultiRegionSqs(array $args = [])
|
||||
* @method \Aws\Ssm\SsmClient createSsm(array $args = [])
|
||||
|
@ -779,7 +785,7 @@ namespace Aws;
|
|||
*/
|
||||
class Sdk
|
||||
{
|
||||
const VERSION = '3.323.1';
|
||||
const VERSION = '3.325.5';
|
||||
|
||||
/** @var array Arguments for creating clients */
|
||||
private $args;
|
||||
|
|
9
vendor/aws/aws-sdk-php/src/SocialMessaging/Exception/SocialMessagingException.php
vendored
Normal file
9
vendor/aws/aws-sdk-php/src/SocialMessaging/Exception/SocialMessagingException.php
vendored
Normal file
|
@ -0,0 +1,9 @@
|
|||
<?php
|
||||
namespace Aws\SocialMessaging\Exception;
|
||||
|
||||
use Aws\Exception\AwsException;
|
||||
|
||||
/**
|
||||
* Represents an error interacting with the **AWS End User Messaging Social** service.
|
||||
*/
|
||||
class SocialMessagingException extends AwsException {}
|
35
vendor/aws/aws-sdk-php/src/SocialMessaging/SocialMessagingClient.php
vendored
Normal file
35
vendor/aws/aws-sdk-php/src/SocialMessaging/SocialMessagingClient.php
vendored
Normal file
|
@ -0,0 +1,35 @@
|
|||
<?php
|
||||
namespace Aws\SocialMessaging;
|
||||
|
||||
use Aws\AwsClient;
|
||||
|
||||
/**
|
||||
* This client is used to interact with the **AWS End User Messaging Social** service.
|
||||
* @method \Aws\Result associateWhatsAppBusinessAccount(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise associateWhatsAppBusinessAccountAsync(array $args = [])
|
||||
* @method \Aws\Result deleteWhatsAppMessageMedia(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteWhatsAppMessageMediaAsync(array $args = [])
|
||||
* @method \Aws\Result disassociateWhatsAppBusinessAccount(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise disassociateWhatsAppBusinessAccountAsync(array $args = [])
|
||||
* @method \Aws\Result getLinkedWhatsAppBusinessAccount(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getLinkedWhatsAppBusinessAccountAsync(array $args = [])
|
||||
* @method \Aws\Result getLinkedWhatsAppBusinessAccountPhoneNumber(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getLinkedWhatsAppBusinessAccountPhoneNumberAsync(array $args = [])
|
||||
* @method \Aws\Result getWhatsAppMessageMedia(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getWhatsAppMessageMediaAsync(array $args = [])
|
||||
* @method \Aws\Result listLinkedWhatsAppBusinessAccounts(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listLinkedWhatsAppBusinessAccountsAsync(array $args = [])
|
||||
* @method \Aws\Result listTagsForResource(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
|
||||
* @method \Aws\Result postWhatsAppMessageMedia(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise postWhatsAppMessageMediaAsync(array $args = [])
|
||||
* @method \Aws\Result putWhatsAppBusinessAccountEventDestinations(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise putWhatsAppBusinessAccountEventDestinationsAsync(array $args = [])
|
||||
* @method \Aws\Result sendWhatsAppMessage(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise sendWhatsAppMessageAsync(array $args = [])
|
||||
* @method \Aws\Result tagResource(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise tagResourceAsync(array $args = [])
|
||||
* @method \Aws\Result untagResource(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise untagResourceAsync(array $args = [])
|
||||
*/
|
||||
class SocialMessagingClient extends AwsClient {}
|
|
@ -11,20 +11,28 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise createDataIntegrationFlowAsync(array $args = [])
|
||||
* @method \Aws\Result createDataLakeDataset(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createDataLakeDatasetAsync(array $args = [])
|
||||
* @method \Aws\Result createInstance(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createInstanceAsync(array $args = [])
|
||||
* @method \Aws\Result deleteDataIntegrationFlow(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteDataIntegrationFlowAsync(array $args = [])
|
||||
* @method \Aws\Result deleteDataLakeDataset(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteDataLakeDatasetAsync(array $args = [])
|
||||
* @method \Aws\Result deleteInstance(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteInstanceAsync(array $args = [])
|
||||
* @method \Aws\Result getBillOfMaterialsImportJob(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getBillOfMaterialsImportJobAsync(array $args = [])
|
||||
* @method \Aws\Result getDataIntegrationFlow(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getDataIntegrationFlowAsync(array $args = [])
|
||||
* @method \Aws\Result getDataLakeDataset(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getDataLakeDatasetAsync(array $args = [])
|
||||
* @method \Aws\Result getInstance(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getInstanceAsync(array $args = [])
|
||||
* @method \Aws\Result listDataIntegrationFlows(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listDataIntegrationFlowsAsync(array $args = [])
|
||||
* @method \Aws\Result listDataLakeDatasets(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listDataLakeDatasetsAsync(array $args = [])
|
||||
* @method \Aws\Result listInstances(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listInstancesAsync(array $args = [])
|
||||
* @method \Aws\Result listTagsForResource(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
|
||||
* @method \Aws\Result sendDataIntegrationEvent(array $args = [])
|
||||
|
@ -37,5 +45,7 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise updateDataIntegrationFlowAsync(array $args = [])
|
||||
* @method \Aws\Result updateDataLakeDataset(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updateDataLakeDatasetAsync(array $args = [])
|
||||
* @method \Aws\Result updateInstance(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updateInstanceAsync(array $args = [])
|
||||
*/
|
||||
class SupplyChainClient extends AwsClient {}
|
||||
|
|
|
@ -9,14 +9,20 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise batchDeleteTaxRegistrationAsync(array $args = [])
|
||||
* @method \Aws\Result batchPutTaxRegistration(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise batchPutTaxRegistrationAsync(array $args = [])
|
||||
* @method \Aws\Result deleteSupplementalTaxRegistration(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteSupplementalTaxRegistrationAsync(array $args = [])
|
||||
* @method \Aws\Result deleteTaxRegistration(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteTaxRegistrationAsync(array $args = [])
|
||||
* @method \Aws\Result getTaxRegistration(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getTaxRegistrationAsync(array $args = [])
|
||||
* @method \Aws\Result getTaxRegistrationDocument(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getTaxRegistrationDocumentAsync(array $args = [])
|
||||
* @method \Aws\Result listSupplementalTaxRegistrations(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listSupplementalTaxRegistrationsAsync(array $args = [])
|
||||
* @method \Aws\Result listTaxRegistrations(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listTaxRegistrationsAsync(array $args = [])
|
||||
* @method \Aws\Result putSupplementalTaxRegistration(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise putSupplementalTaxRegistrationAsync(array $args = [])
|
||||
* @method \Aws\Result putTaxRegistration(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise putTaxRegistrationAsync(array $args = [])
|
||||
*/
|
||||
|
|
|
@ -77,6 +77,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise listConnectorsAsync(array $args = [])
|
||||
* @method \Aws\Result listExecutions(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listExecutionsAsync(array $args = [])
|
||||
* @method \Aws\Result listFileTransferResults(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listFileTransferResultsAsync(array $args = [])
|
||||
* @method \Aws\Result listHostKeys(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listHostKeysAsync(array $args = [])
|
||||
* @method \Aws\Result listProfiles(array $args = [])
|
||||
|
|
|
@ -5,6 +5,8 @@ use Aws\AwsClient;
|
|||
|
||||
/**
|
||||
* This client is used to interact with the **Amazon Verified Permissions** service.
|
||||
* @method \Aws\Result batchGetPolicy(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise batchGetPolicyAsync(array $args = [])
|
||||
* @method \Aws\Result batchIsAuthorized(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise batchIsAuthorizedAsync(array $args = [])
|
||||
* @method \Aws\Result batchIsAuthorizedWithToken(array $args = [])
|
||||
|
|
|
@ -19,6 +19,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise createAvailabilityConfigurationAsync(array $args = [])
|
||||
* @method \Aws\Result createGroup(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createGroupAsync(array $args = [])
|
||||
* @method \Aws\Result createIdentityCenterApplication(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createIdentityCenterApplicationAsync(array $args = [])
|
||||
* @method \Aws\Result createImpersonationRole(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createImpersonationRoleAsync(array $args = [])
|
||||
* @method \Aws\Result createMobileDeviceAccessRule(array $args = [])
|
||||
|
@ -39,6 +41,10 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise deleteEmailMonitoringConfigurationAsync(array $args = [])
|
||||
* @method \Aws\Result deleteGroup(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteGroupAsync(array $args = [])
|
||||
* @method \Aws\Result deleteIdentityCenterApplication(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteIdentityCenterApplicationAsync(array $args = [])
|
||||
* @method \Aws\Result deleteIdentityProviderConfiguration(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteIdentityProviderConfigurationAsync(array $args = [])
|
||||
* @method \Aws\Result deleteImpersonationRole(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteImpersonationRoleAsync(array $args = [])
|
||||
* @method \Aws\Result deleteMailboxPermissions(array $args = [])
|
||||
|
@ -49,6 +55,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise deleteMobileDeviceAccessRuleAsync(array $args = [])
|
||||
* @method \Aws\Result deleteOrganization(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteOrganizationAsync(array $args = [])
|
||||
* @method \Aws\Result deletePersonalAccessToken(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deletePersonalAccessTokenAsync(array $args = [])
|
||||
* @method \Aws\Result deleteResource(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteResourceAsync(array $args = [])
|
||||
* @method \Aws\Result deleteRetentionPolicy(array $args = [])
|
||||
|
@ -65,6 +73,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise describeEntityAsync(array $args = [])
|
||||
* @method \Aws\Result describeGroup(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeGroupAsync(array $args = [])
|
||||
* @method \Aws\Result describeIdentityProviderConfiguration(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeIdentityProviderConfigurationAsync(array $args = [])
|
||||
* @method \Aws\Result describeInboundDmarcSettings(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeInboundDmarcSettingsAsync(array $args = [])
|
||||
* @method \Aws\Result describeMailboxExportJob(array $args = [])
|
||||
|
@ -95,6 +105,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise getMobileDeviceAccessEffectAsync(array $args = [])
|
||||
* @method \Aws\Result getMobileDeviceAccessOverride(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getMobileDeviceAccessOverrideAsync(array $args = [])
|
||||
* @method \Aws\Result getPersonalAccessTokenMetadata(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getPersonalAccessTokenMetadataAsync(array $args = [])
|
||||
* @method \Aws\Result listAccessControlRules(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listAccessControlRulesAsync(array $args = [])
|
||||
* @method \Aws\Result listAliases(array $args = [])
|
||||
|
@ -121,6 +133,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise listMobileDeviceAccessRulesAsync(array $args = [])
|
||||
* @method \Aws\Result listOrganizations(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listOrganizationsAsync(array $args = [])
|
||||
* @method \Aws\Result listPersonalAccessTokens(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listPersonalAccessTokensAsync(array $args = [])
|
||||
* @method \Aws\Result listResourceDelegates(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listResourceDelegatesAsync(array $args = [])
|
||||
* @method \Aws\Result listResources(array $args = [])
|
||||
|
@ -133,6 +147,8 @@ use Aws\AwsClient;
|
|||
* @method \GuzzleHttp\Promise\Promise putAccessControlRuleAsync(array $args = [])
|
||||
* @method \Aws\Result putEmailMonitoringConfiguration(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise putEmailMonitoringConfigurationAsync(array $args = [])
|
||||
* @method \Aws\Result putIdentityProviderConfiguration(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise putIdentityProviderConfigurationAsync(array $args = [])
|
||||
* @method \Aws\Result putInboundDmarcSettings(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise putInboundDmarcSettingsAsync(array $args = [])
|
||||
* @method \Aws\Result putMailboxPermissions(array $args = [])
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1,3 +1,3 @@
|
|||
<?php
|
||||
// This file was auto-generated from sdk-root/src/data/appflow/2020-08-23/endpoint-rule-set-1.json
|
||||
return [ 'version' => '1.0', 'parameters' => [ 'Region' => [ 'builtIn' => 'AWS::Region', 'required' => false, 'documentation' => 'The AWS region used to dispatch the request.', 'type' => 'String', ], 'UseDualStack' => [ 'builtIn' => 'AWS::UseDualStack', 'required' => true, 'default' => false, 'documentation' => 'When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.', 'type' => 'Boolean', ], 'UseFIPS' => [ 'builtIn' => 'AWS::UseFIPS', 'required' => true, 'default' => false, 'documentation' => 'When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.', 'type' => 'Boolean', ], 'Endpoint' => [ 'builtIn' => 'SDK::Endpoint', 'required' => false, 'documentation' => 'Override the endpoint used to send this request', 'type' => 'String', ], ], 'rules' => [ [ 'conditions' => [ [ 'fn' => 'isSet', 'argv' => [ [ 'ref' => 'Endpoint', ], ], ], ], 'type' => 'tree', 'rules' => [ [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ [ 'ref' => 'UseFIPS', ], true, ], ], ], 'error' => 'Invalid Configuration: FIPS and custom endpoint are not supported', 'type' => 'error', ], [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ [ 'ref' => 'UseDualStack', ], true, ], ], ], 'error' => 'Invalid Configuration: Dualstack and custom endpoint are not supported', 'type' => 'error', ], [ 'conditions' => [], 'endpoint' => [ 'url' => [ 'ref' => 'Endpoint', ], 'properties' => [], 'headers' => [], ], 'type' => 'endpoint', ], ], ], [ 'conditions' => [ [ 'fn' => 'isSet', 'argv' => [ [ 'ref' => 'Region', ], ], ], ], 'type' => 'tree', 'rules' => [ [ 'conditions' => [ [ 'fn' => 'aws.partition', 'argv' => [ [ 'ref' => 'Region', ], ], 'assign' => 'PartitionResult', ], ], 'type' => 'tree', 'rules' => [ [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ [ 'ref' => 'UseFIPS', ], true, ], ], [ 'fn' => 'booleanEquals', 'argv' => [ [ 'ref' => 'UseDualStack', ], true, ], ], ], 'type' => 'tree', 'rules' => [ [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ true, [ 'fn' => 'getAttr', 'argv' => [ [ 'ref' => 'PartitionResult', ], 'supportsFIPS', ], ], ], ], [ 'fn' => 'booleanEquals', 'argv' => [ true, [ 'fn' => 'getAttr', 'argv' => [ [ 'ref' => 'PartitionResult', ], 'supportsDualStack', ], ], ], ], ], 'type' => 'tree', 'rules' => [ [ 'conditions' => [], 'endpoint' => [ 'url' => 'https://appflow-fips.{Region}.{PartitionResult#dualStackDnsSuffix}', 'properties' => [], 'headers' => [], ], 'type' => 'endpoint', ], ], ], [ 'conditions' => [], 'error' => 'FIPS and DualStack are enabled, but this partition does not support one or both', 'type' => 'error', ], ], ], [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ [ 'ref' => 'UseFIPS', ], true, ], ], ], 'type' => 'tree', 'rules' => [ [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ true, [ 'fn' => 'getAttr', 'argv' => [ [ 'ref' => 'PartitionResult', ], 'supportsFIPS', ], ], ], ], ], 'type' => 'tree', 'rules' => [ [ 'conditions' => [], 'endpoint' => [ 'url' => 'https://appflow-fips.{Region}.{PartitionResult#dnsSuffix}', 'properties' => [], 'headers' => [], ], 'type' => 'endpoint', ], ], ], [ 'conditions' => [], 'error' => 'FIPS is enabled but this partition does not support FIPS', 'type' => 'error', ], ], ], [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ [ 'ref' => 'UseDualStack', ], true, ], ], ], 'type' => 'tree', 'rules' => [ [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ true, [ 'fn' => 'getAttr', 'argv' => [ [ 'ref' => 'PartitionResult', ], 'supportsDualStack', ], ], ], ], ], 'type' => 'tree', 'rules' => [ [ 'conditions' => [], 'endpoint' => [ 'url' => 'https://appflow.{Region}.{PartitionResult#dualStackDnsSuffix}', 'properties' => [], 'headers' => [], ], 'type' => 'endpoint', ], ], ], [ 'conditions' => [], 'error' => 'DualStack is enabled but this partition does not support DualStack', 'type' => 'error', ], ], ], [ 'conditions' => [], 'endpoint' => [ 'url' => 'https://appflow.{Region}.{PartitionResult#dnsSuffix}', 'properties' => [], 'headers' => [], ], 'type' => 'endpoint', ], ], ], ], ], [ 'conditions' => [], 'error' => 'Invalid Configuration: Missing Region', 'type' => 'error', ], ],];
|
||||
return [ 'version' => '1.0', 'parameters' => [ 'Region' => [ 'builtIn' => 'AWS::Region', 'required' => false, 'documentation' => 'The AWS region used to dispatch the request.', 'type' => 'String', ], 'UseDualStack' => [ 'builtIn' => 'AWS::UseDualStack', 'required' => true, 'default' => false, 'documentation' => 'When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.', 'type' => 'Boolean', ], 'UseFIPS' => [ 'builtIn' => 'AWS::UseFIPS', 'required' => true, 'default' => false, 'documentation' => 'When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.', 'type' => 'Boolean', ], 'Endpoint' => [ 'builtIn' => 'SDK::Endpoint', 'required' => false, 'documentation' => 'Override the endpoint used to send this request', 'type' => 'String', ], ], 'rules' => [ [ 'conditions' => [ [ 'fn' => 'isSet', 'argv' => [ [ 'ref' => 'Endpoint', ], ], ], ], 'rules' => [ [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ [ 'ref' => 'UseFIPS', ], true, ], ], ], 'error' => 'Invalid Configuration: FIPS and custom endpoint are not supported', 'type' => 'error', ], [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ [ 'ref' => 'UseDualStack', ], true, ], ], ], 'error' => 'Invalid Configuration: Dualstack and custom endpoint are not supported', 'type' => 'error', ], [ 'conditions' => [], 'endpoint' => [ 'url' => [ 'ref' => 'Endpoint', ], 'properties' => [], 'headers' => [], ], 'type' => 'endpoint', ], ], 'type' => 'tree', ], [ 'conditions' => [ [ 'fn' => 'isSet', 'argv' => [ [ 'ref' => 'Region', ], ], ], ], 'rules' => [ [ 'conditions' => [ [ 'fn' => 'aws.partition', 'argv' => [ [ 'ref' => 'Region', ], ], 'assign' => 'PartitionResult', ], ], 'rules' => [ [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ [ 'ref' => 'UseFIPS', ], true, ], ], [ 'fn' => 'booleanEquals', 'argv' => [ [ 'ref' => 'UseDualStack', ], true, ], ], ], 'rules' => [ [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ true, [ 'fn' => 'getAttr', 'argv' => [ [ 'ref' => 'PartitionResult', ], 'supportsFIPS', ], ], ], ], [ 'fn' => 'booleanEquals', 'argv' => [ true, [ 'fn' => 'getAttr', 'argv' => [ [ 'ref' => 'PartitionResult', ], 'supportsDualStack', ], ], ], ], ], 'rules' => [ [ 'conditions' => [], 'endpoint' => [ 'url' => 'https://appflow-fips.{Region}.{PartitionResult#dualStackDnsSuffix}', 'properties' => [], 'headers' => [], ], 'type' => 'endpoint', ], ], 'type' => 'tree', ], [ 'conditions' => [], 'error' => 'FIPS and DualStack are enabled, but this partition does not support one or both', 'type' => 'error', ], ], 'type' => 'tree', ], [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ [ 'ref' => 'UseFIPS', ], true, ], ], ], 'rules' => [ [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ [ 'fn' => 'getAttr', 'argv' => [ [ 'ref' => 'PartitionResult', ], 'supportsFIPS', ], ], true, ], ], ], 'rules' => [ [ 'conditions' => [], 'endpoint' => [ 'url' => 'https://appflow-fips.{Region}.{PartitionResult#dnsSuffix}', 'properties' => [], 'headers' => [], ], 'type' => 'endpoint', ], ], 'type' => 'tree', ], [ 'conditions' => [], 'error' => 'FIPS is enabled but this partition does not support FIPS', 'type' => 'error', ], ], 'type' => 'tree', ], [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ [ 'ref' => 'UseDualStack', ], true, ], ], ], 'rules' => [ [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ true, [ 'fn' => 'getAttr', 'argv' => [ [ 'ref' => 'PartitionResult', ], 'supportsDualStack', ], ], ], ], ], 'rules' => [ [ 'conditions' => [], 'endpoint' => [ 'url' => 'https://appflow.{Region}.{PartitionResult#dualStackDnsSuffix}', 'properties' => [], 'headers' => [], ], 'type' => 'endpoint', ], ], 'type' => 'tree', ], [ 'conditions' => [], 'error' => 'DualStack is enabled but this partition does not support DualStack', 'type' => 'error', ], ], 'type' => 'tree', ], [ 'conditions' => [], 'endpoint' => [ 'url' => 'https://appflow.{Region}.{PartitionResult#dnsSuffix}', 'properties' => [], 'headers' => [], ], 'type' => 'endpoint', ], ], 'type' => 'tree', ], ], 'type' => 'tree', ], [ 'conditions' => [], 'error' => 'Invalid Configuration: Missing Region', 'type' => 'error', ], ],];
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1,3 +1,3 @@
|
|||
<?php
|
||||
// This file was auto-generated from sdk-root/src/data/appsync/2017-07-25/paginators-1.json
|
||||
return [ 'pagination' => [ 'ListApiKeys' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'apiKeys', ], 'ListDataSources' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'dataSources', ], 'ListDomainNames' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'domainNameConfigs', ], 'ListFunctions' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'functions', ], 'ListGraphqlApis' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'graphqlApis', ], 'ListResolvers' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'resolvers', ], 'ListResolversByFunction' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'resolvers', ], 'ListSourceApiAssociations' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'sourceApiAssociationSummaries', ], 'ListTypes' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'types', ], 'ListTypesByAssociation' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'types', ], ],];
|
||||
return [ 'pagination' => [ 'ListApiKeys' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'apiKeys', ], 'ListApis' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'apis', ], 'ListChannelNamespaces' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'channelNamespaces', ], 'ListDataSources' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'dataSources', ], 'ListDomainNames' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'domainNameConfigs', ], 'ListFunctions' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'functions', ], 'ListGraphqlApis' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'graphqlApis', ], 'ListResolvers' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'resolvers', ], 'ListResolversByFunction' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'resolvers', ], 'ListSourceApiAssociations' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'sourceApiAssociationSummaries', ], 'ListTypes' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'types', ], 'ListTypesByAssociation' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'types', ], ],];
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1,3 +1,3 @@
|
|||
<?php
|
||||
// This file was auto-generated from sdk-root/src/data/cleanroomsml/2023-09-06/paginators-1.json
|
||||
return [ 'pagination' => [ 'ListAudienceExportJobs' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'audienceExportJobs', ], 'ListAudienceGenerationJobs' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'audienceGenerationJobs', ], 'ListAudienceModels' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'audienceModels', ], 'ListConfiguredAudienceModels' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'configuredAudienceModels', ], 'ListTrainingDatasets' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'trainingDatasets', ], ],];
|
||||
return [ 'pagination' => [ 'ListAudienceExportJobs' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'audienceExportJobs', ], 'ListAudienceGenerationJobs' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'audienceGenerationJobs', ], 'ListAudienceModels' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'audienceModels', ], 'ListCollaborationConfiguredModelAlgorithmAssociations' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'collaborationConfiguredModelAlgorithmAssociations', ], 'ListCollaborationMLInputChannels' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'collaborationMLInputChannelsList', ], 'ListCollaborationTrainedModelExportJobs' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'collaborationTrainedModelExportJobs', ], 'ListCollaborationTrainedModelInferenceJobs' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'collaborationTrainedModelInferenceJobs', ], 'ListCollaborationTrainedModels' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'collaborationTrainedModels', ], 'ListConfiguredAudienceModels' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'configuredAudienceModels', ], 'ListConfiguredModelAlgorithmAssociations' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'configuredModelAlgorithmAssociations', ], 'ListConfiguredModelAlgorithms' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'configuredModelAlgorithms', ], 'ListMLInputChannels' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'mlInputChannelsList', ], 'ListTrainedModelInferenceJobs' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'trainedModelInferenceJobs', ], 'ListTrainedModels' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'trainedModels', ], 'ListTrainingDatasets' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'trainingDatasets', ], ],];
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1,3 +1,3 @@
|
|||
<?php
|
||||
// This file was auto-generated from sdk-root/src/data/dataexchange/2017-07-25/paginators-1.json
|
||||
return [ 'pagination' => [ 'ListDataSetRevisions' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', 'result_key' => 'Revisions', ], 'ListDataSets' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', 'result_key' => 'DataSets', ], 'ListEventActions' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', 'result_key' => 'EventActions', ], 'ListJobs' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', 'result_key' => 'Jobs', ], 'ListRevisionAssets' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', 'result_key' => 'Assets', ], ],];
|
||||
return [ 'pagination' => [ 'ListDataGrants' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', 'result_key' => 'DataGrantSummaries', ], 'ListDataSetRevisions' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', 'result_key' => 'Revisions', ], 'ListDataSets' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', 'result_key' => 'DataSets', ], 'ListEventActions' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', 'result_key' => 'EventActions', ], 'ListJobs' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', 'result_key' => 'Jobs', ], 'ListReceivedDataGrants' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', 'result_key' => 'DataGrantSummaries', ], 'ListRevisionAssets' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', 'result_key' => 'Assets', ], ],];
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1,3 +1,3 @@
|
|||
<?php
|
||||
// This file was auto-generated from sdk-root/src/data/deadline/2023-10-12/paginators-1.json
|
||||
return [ 'pagination' => [ 'GetSessionsStatisticsAggregation' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'statistics', ], 'ListAvailableMeteredProducts' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'meteredProducts', ], 'ListBudgets' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'budgets', ], 'ListFarmMembers' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'members', ], 'ListFarms' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'farms', ], 'ListFleetMembers' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'members', ], 'ListFleets' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'fleets', ], 'ListJobMembers' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'members', ], 'ListJobs' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'jobs', ], 'ListLicenseEndpoints' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'licenseEndpoints', ], 'ListMeteredProducts' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'meteredProducts', ], 'ListMonitors' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'monitors', ], 'ListQueueEnvironments' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'environments', ], 'ListQueueFleetAssociations' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'queueFleetAssociations', ], 'ListQueueMembers' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'members', ], 'ListQueues' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'queues', ], 'ListSessionActions' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'sessionActions', ], 'ListSessions' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'sessions', ], 'ListSessionsForWorker' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'sessions', ], 'ListStepConsumers' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'consumers', ], 'ListStepDependencies' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'dependencies', ], 'ListSteps' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'steps', ], 'ListStorageProfiles' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'storageProfiles', ], 'ListStorageProfilesForQueue' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'storageProfiles', ], 'ListTasks' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'tasks', ], 'ListWorkers' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'workers', ], ],];
|
||||
return [ 'pagination' => [ 'GetSessionsStatisticsAggregation' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'statistics', ], 'ListAvailableMeteredProducts' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'meteredProducts', ], 'ListBudgets' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'budgets', ], 'ListFarmMembers' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'members', ], 'ListFarms' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'farms', ], 'ListFleetMembers' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'members', ], 'ListFleets' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'fleets', ], 'ListJobMembers' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'members', ], 'ListJobParameterDefinitions' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'jobParameterDefinitions', ], 'ListJobs' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'jobs', ], 'ListLicenseEndpoints' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'licenseEndpoints', ], 'ListMeteredProducts' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'meteredProducts', ], 'ListMonitors' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'monitors', ], 'ListQueueEnvironments' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'environments', ], 'ListQueueFleetAssociations' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'queueFleetAssociations', ], 'ListQueueMembers' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'members', ], 'ListQueues' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'queues', ], 'ListSessionActions' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'sessionActions', ], 'ListSessions' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'sessions', ], 'ListSessionsForWorker' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'sessions', ], 'ListStepConsumers' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'consumers', ], 'ListStepDependencies' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'dependencies', ], 'ListSteps' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'steps', ], 'ListStorageProfiles' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'storageProfiles', ], 'ListStorageProfilesForQueue' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'storageProfiles', ], 'ListTasks' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'tasks', ], 'ListWorkers' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'workers', ], ],];
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1,3 +1,3 @@
|
|||
<?php
|
||||
// This file was auto-generated from sdk-root/src/data/docdb-elastic/2022-11-28/paginators-1.json
|
||||
return [ 'pagination' => [ 'ListClusterSnapshots' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'snapshots', ], 'ListClusters' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'clusters', ], ],];
|
||||
return [ 'pagination' => [ 'ListClusterSnapshots' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'snapshots', ], 'ListClusters' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'clusters', ], 'ListPendingMaintenanceActions' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'resourcePendingMaintenanceActions', ], ],];
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1,3 +1,3 @@
|
|||
<?php
|
||||
// This file was auto-generated from sdk-root/src/data/elastic-inference/2017-07-25/endpoint-rule-set-1.json
|
||||
return [ 'version' => '1.0', 'parameters' => [ 'Region' => [ 'builtIn' => 'AWS::Region', 'required' => false, 'documentation' => 'The AWS region used to dispatch the request.', 'type' => 'String', ], 'UseDualStack' => [ 'builtIn' => 'AWS::UseDualStack', 'required' => true, 'default' => false, 'documentation' => 'When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.', 'type' => 'Boolean', ], 'UseFIPS' => [ 'builtIn' => 'AWS::UseFIPS', 'required' => true, 'default' => false, 'documentation' => 'When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.', 'type' => 'Boolean', ], 'Endpoint' => [ 'builtIn' => 'SDK::Endpoint', 'required' => false, 'documentation' => 'Override the endpoint used to send this request', 'type' => 'String', ], ], 'rules' => [ [ 'conditions' => [ [ 'fn' => 'isSet', 'argv' => [ [ 'ref' => 'Endpoint', ], ], ], ], 'type' => 'tree', 'rules' => [ [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ [ 'ref' => 'UseFIPS', ], true, ], ], ], 'error' => 'Invalid Configuration: FIPS and custom endpoint are not supported', 'type' => 'error', ], [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ [ 'ref' => 'UseDualStack', ], true, ], ], ], 'error' => 'Invalid Configuration: Dualstack and custom endpoint are not supported', 'type' => 'error', ], [ 'conditions' => [], 'endpoint' => [ 'url' => [ 'ref' => 'Endpoint', ], 'properties' => [], 'headers' => [], ], 'type' => 'endpoint', ], ], ], [ 'conditions' => [ [ 'fn' => 'isSet', 'argv' => [ [ 'ref' => 'Region', ], ], ], ], 'type' => 'tree', 'rules' => [ [ 'conditions' => [ [ 'fn' => 'aws.partition', 'argv' => [ [ 'ref' => 'Region', ], ], 'assign' => 'PartitionResult', ], ], 'type' => 'tree', 'rules' => [ [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ [ 'ref' => 'UseFIPS', ], true, ], ], [ 'fn' => 'booleanEquals', 'argv' => [ [ 'ref' => 'UseDualStack', ], true, ], ], ], 'type' => 'tree', 'rules' => [ [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ true, [ 'fn' => 'getAttr', 'argv' => [ [ 'ref' => 'PartitionResult', ], 'supportsFIPS', ], ], ], ], [ 'fn' => 'booleanEquals', 'argv' => [ true, [ 'fn' => 'getAttr', 'argv' => [ [ 'ref' => 'PartitionResult', ], 'supportsDualStack', ], ], ], ], ], 'type' => 'tree', 'rules' => [ [ 'conditions' => [], 'endpoint' => [ 'url' => 'https://api.elastic-inference-fips.{Region}.{PartitionResult#dualStackDnsSuffix}', 'properties' => [], 'headers' => [], ], 'type' => 'endpoint', ], ], ], [ 'conditions' => [], 'error' => 'FIPS and DualStack are enabled, but this partition does not support one or both', 'type' => 'error', ], ], ], [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ [ 'ref' => 'UseFIPS', ], true, ], ], ], 'type' => 'tree', 'rules' => [ [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ true, [ 'fn' => 'getAttr', 'argv' => [ [ 'ref' => 'PartitionResult', ], 'supportsFIPS', ], ], ], ], ], 'type' => 'tree', 'rules' => [ [ 'conditions' => [], 'endpoint' => [ 'url' => 'https://api.elastic-inference-fips.{Region}.{PartitionResult#dnsSuffix}', 'properties' => [], 'headers' => [], ], 'type' => 'endpoint', ], ], ], [ 'conditions' => [], 'error' => 'FIPS is enabled but this partition does not support FIPS', 'type' => 'error', ], ], ], [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ [ 'ref' => 'UseDualStack', ], true, ], ], ], 'type' => 'tree', 'rules' => [ [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ true, [ 'fn' => 'getAttr', 'argv' => [ [ 'ref' => 'PartitionResult', ], 'supportsDualStack', ], ], ], ], ], 'type' => 'tree', 'rules' => [ [ 'conditions' => [], 'endpoint' => [ 'url' => 'https://api.elastic-inference.{Region}.{PartitionResult#dualStackDnsSuffix}', 'properties' => [], 'headers' => [], ], 'type' => 'endpoint', ], ], ], [ 'conditions' => [], 'error' => 'DualStack is enabled but this partition does not support DualStack', 'type' => 'error', ], ], ], [ 'conditions' => [], 'endpoint' => [ 'url' => 'https://api.elastic-inference.{Region}.{PartitionResult#dnsSuffix}', 'properties' => [], 'headers' => [], ], 'type' => 'endpoint', ], ], ], ], ], [ 'conditions' => [], 'error' => 'Invalid Configuration: Missing Region', 'type' => 'error', ], ],];
|
||||
return [ 'version' => '1.0', 'parameters' => [ 'Region' => [ 'builtIn' => 'AWS::Region', 'required' => false, 'documentation' => 'The AWS region used to dispatch the request.', 'type' => 'String', ], 'UseDualStack' => [ 'builtIn' => 'AWS::UseDualStack', 'required' => true, 'default' => false, 'documentation' => 'When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.', 'type' => 'Boolean', ], 'UseFIPS' => [ 'builtIn' => 'AWS::UseFIPS', 'required' => true, 'default' => false, 'documentation' => 'When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.', 'type' => 'Boolean', ], 'Endpoint' => [ 'builtIn' => 'SDK::Endpoint', 'required' => false, 'documentation' => 'Override the endpoint used to send this request', 'type' => 'String', ], ], 'rules' => [ [ 'conditions' => [ [ 'fn' => 'isSet', 'argv' => [ [ 'ref' => 'Endpoint', ], ], ], ], 'rules' => [ [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ [ 'ref' => 'UseFIPS', ], true, ], ], ], 'error' => 'Invalid Configuration: FIPS and custom endpoint are not supported', 'type' => 'error', ], [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ [ 'ref' => 'UseDualStack', ], true, ], ], ], 'error' => 'Invalid Configuration: Dualstack and custom endpoint are not supported', 'type' => 'error', ], [ 'conditions' => [], 'endpoint' => [ 'url' => [ 'ref' => 'Endpoint', ], 'properties' => [], 'headers' => [], ], 'type' => 'endpoint', ], ], 'type' => 'tree', ], [ 'conditions' => [ [ 'fn' => 'isSet', 'argv' => [ [ 'ref' => 'Region', ], ], ], ], 'rules' => [ [ 'conditions' => [ [ 'fn' => 'aws.partition', 'argv' => [ [ 'ref' => 'Region', ], ], 'assign' => 'PartitionResult', ], ], 'rules' => [ [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ [ 'ref' => 'UseFIPS', ], true, ], ], [ 'fn' => 'booleanEquals', 'argv' => [ [ 'ref' => 'UseDualStack', ], true, ], ], ], 'rules' => [ [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ true, [ 'fn' => 'getAttr', 'argv' => [ [ 'ref' => 'PartitionResult', ], 'supportsFIPS', ], ], ], ], [ 'fn' => 'booleanEquals', 'argv' => [ true, [ 'fn' => 'getAttr', 'argv' => [ [ 'ref' => 'PartitionResult', ], 'supportsDualStack', ], ], ], ], ], 'rules' => [ [ 'conditions' => [], 'endpoint' => [ 'url' => 'https://api.elastic-inference-fips.{Region}.{PartitionResult#dualStackDnsSuffix}', 'properties' => [], 'headers' => [], ], 'type' => 'endpoint', ], ], 'type' => 'tree', ], [ 'conditions' => [], 'error' => 'FIPS and DualStack are enabled, but this partition does not support one or both', 'type' => 'error', ], ], 'type' => 'tree', ], [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ [ 'ref' => 'UseFIPS', ], true, ], ], ], 'rules' => [ [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ [ 'fn' => 'getAttr', 'argv' => [ [ 'ref' => 'PartitionResult', ], 'supportsFIPS', ], ], true, ], ], ], 'rules' => [ [ 'conditions' => [], 'endpoint' => [ 'url' => 'https://api.elastic-inference-fips.{Region}.{PartitionResult#dnsSuffix}', 'properties' => [], 'headers' => [], ], 'type' => 'endpoint', ], ], 'type' => 'tree', ], [ 'conditions' => [], 'error' => 'FIPS is enabled but this partition does not support FIPS', 'type' => 'error', ], ], 'type' => 'tree', ], [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ [ 'ref' => 'UseDualStack', ], true, ], ], ], 'rules' => [ [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ true, [ 'fn' => 'getAttr', 'argv' => [ [ 'ref' => 'PartitionResult', ], 'supportsDualStack', ], ], ], ], ], 'rules' => [ [ 'conditions' => [], 'endpoint' => [ 'url' => 'https://api.elastic-inference.{Region}.{PartitionResult#dualStackDnsSuffix}', 'properties' => [], 'headers' => [], ], 'type' => 'endpoint', ], ], 'type' => 'tree', ], [ 'conditions' => [], 'error' => 'DualStack is enabled but this partition does not support DualStack', 'type' => 'error', ], ], 'type' => 'tree', ], [ 'conditions' => [], 'endpoint' => [ 'url' => 'https://api.elastic-inference.{Region}.{PartitionResult#dnsSuffix}', 'properties' => [], 'headers' => [], ], 'type' => 'endpoint', ], ], 'type' => 'tree', ], ], 'type' => 'tree', ], [ 'conditions' => [], 'error' => 'Invalid Configuration: Missing Region', 'type' => 'error', ], ],];
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue