mirror of
https://github.com/SociallyDev/Spaces-API.git
synced 2025-08-20 13:23:47 -07:00
spaces.php
This commit is contained in:
parent
7755490b81
commit
eefa32741e
845 changed files with 50409 additions and 0 deletions
64
aws/Aws/Rds/AuthTokenGenerator.php
Normal file
64
aws/Aws/Rds/AuthTokenGenerator.php
Normal file
|
@ -0,0 +1,64 @@
|
|||
<?php
|
||||
namespace Aws\Rds;
|
||||
|
||||
use Aws\Credentials\CredentialsInterface;
|
||||
use Aws\Credentials\Credentials;
|
||||
use Aws\Signature\SignatureV4;
|
||||
use GuzzleHttp\Psr7\Request;
|
||||
use GuzzleHttp\Psr7\Uri;
|
||||
use GuzzleHttp\Promise;
|
||||
use Aws;
|
||||
|
||||
/**
|
||||
* Generates RDS auth tokens for use with IAM authentication.
|
||||
*/
|
||||
class AuthTokenGenerator
|
||||
{
|
||||
|
||||
private $credentialProvider;
|
||||
|
||||
/**
|
||||
* The constructor takes an instance of Credentials or a CredentialProvider
|
||||
*
|
||||
* @param callable|Credentials $creds
|
||||
*/
|
||||
public function __construct($creds)
|
||||
{
|
||||
if ($creds instanceof CredentialsInterface) {
|
||||
$promise = new Promise\FulfilledPromise($creds);
|
||||
$this->credentialProvider = Aws\constantly($promise);
|
||||
} else {
|
||||
$this->credentialProvider = $creds;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Create the token for database login
|
||||
*
|
||||
* @param string $endpoint The database hostname with port number specified
|
||||
* (e.g., host:port)
|
||||
* @param string $region The region where the database is located
|
||||
* @param string $username The username to login as
|
||||
*
|
||||
* @return string Token generated
|
||||
*/
|
||||
public function createToken($endpoint, $region, $username)
|
||||
{
|
||||
$uri = new Uri($endpoint);
|
||||
$uri = $uri->withPath('/');
|
||||
$uri = $uri->withQuery('Action=connect&DBUser=' . $username);
|
||||
|
||||
$request = new Request('GET', $uri);
|
||||
$signer = new SignatureV4('rds-db', $region);
|
||||
$provider = $this->credentialProvider;
|
||||
|
||||
$url = (string) $signer->presign(
|
||||
$request,
|
||||
$provider()->wait(),
|
||||
'+15 minutes'
|
||||
)->getUri();
|
||||
|
||||
// Remove 2 extra slash from the presigned url result
|
||||
return substr($url, 2);
|
||||
}
|
||||
}
|
9
aws/Aws/Rds/Exception/RdsException.php
Normal file
9
aws/Aws/Rds/Exception/RdsException.php
Normal file
|
@ -0,0 +1,9 @@
|
|||
<?php
|
||||
namespace Aws\Rds\Exception;
|
||||
|
||||
use Aws\Exception\AwsException;
|
||||
|
||||
/**
|
||||
* Represents an error interacting with the Amazon Relational Database Service.
|
||||
*/
|
||||
class RdsException extends AwsException {}
|
283
aws/Aws/Rds/RdsClient.php
Normal file
283
aws/Aws/Rds/RdsClient.php
Normal file
|
@ -0,0 +1,283 @@
|
|||
<?php
|
||||
namespace Aws\Rds;
|
||||
|
||||
use Aws\AwsClient;
|
||||
use Aws\Api\Service;
|
||||
use Aws\Api\DocModel;
|
||||
use Aws\Api\ApiProvider;
|
||||
use Aws\PresignUrlMiddleware;
|
||||
|
||||
/**
|
||||
* This client is used to interact with the **Amazon Relational Database Service (Amazon RDS)**.
|
||||
*
|
||||
* @method \Aws\Result addSourceIdentifierToSubscription(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise addSourceIdentifierToSubscriptionAsync(array $args = [])
|
||||
* @method \Aws\Result addTagsToResource(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise addTagsToResourceAsync(array $args = [])
|
||||
* @method \Aws\Result authorizeDBSecurityGroupIngress(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise authorizeDBSecurityGroupIngressAsync(array $args = [])
|
||||
* @method \Aws\Result copyDBParameterGroup(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise copyDBParameterGroupAsync(array $args = [])
|
||||
* @method \Aws\Result copyDBSnapshot(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise copyDBSnapshotAsync(array $args = [])
|
||||
* @method \Aws\Result copyOptionGroup(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise copyOptionGroupAsync(array $args = [])
|
||||
* @method \Aws\Result createDBInstance(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createDBInstanceAsync(array $args = [])
|
||||
* @method \Aws\Result createDBInstanceReadReplica(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createDBInstanceReadReplicaAsync(array $args = [])
|
||||
* @method \Aws\Result createDBParameterGroup(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createDBParameterGroupAsync(array $args = [])
|
||||
* @method \Aws\Result createDBSecurityGroup(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createDBSecurityGroupAsync(array $args = [])
|
||||
* @method \Aws\Result createDBSnapshot(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createDBSnapshotAsync(array $args = [])
|
||||
* @method \Aws\Result createDBSubnetGroup(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createDBSubnetGroupAsync(array $args = [])
|
||||
* @method \Aws\Result createEventSubscription(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createEventSubscriptionAsync(array $args = [])
|
||||
* @method \Aws\Result createOptionGroup(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createOptionGroupAsync(array $args = [])
|
||||
* @method \Aws\Result deleteDBInstance(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteDBInstanceAsync(array $args = [])
|
||||
* @method \Aws\Result deleteDBParameterGroup(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteDBParameterGroupAsync(array $args = [])
|
||||
* @method \Aws\Result deleteDBSecurityGroup(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteDBSecurityGroupAsync(array $args = [])
|
||||
* @method \Aws\Result deleteDBSnapshot(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteDBSnapshotAsync(array $args = [])
|
||||
* @method \Aws\Result deleteDBSubnetGroup(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteDBSubnetGroupAsync(array $args = [])
|
||||
* @method \Aws\Result deleteEventSubscription(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteEventSubscriptionAsync(array $args = [])
|
||||
* @method \Aws\Result deleteOptionGroup(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteOptionGroupAsync(array $args = [])
|
||||
* @method \Aws\Result describeDBEngineVersions(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeDBEngineVersionsAsync(array $args = [])
|
||||
* @method \Aws\Result describeDBInstances(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeDBInstancesAsync(array $args = [])
|
||||
* @method \Aws\Result describeDBLogFiles(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeDBLogFilesAsync(array $args = [])
|
||||
* @method \Aws\Result describeDBParameterGroups(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeDBParameterGroupsAsync(array $args = [])
|
||||
* @method \Aws\Result describeDBParameters(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeDBParametersAsync(array $args = [])
|
||||
* @method \Aws\Result describeDBSecurityGroups(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeDBSecurityGroupsAsync(array $args = [])
|
||||
* @method \Aws\Result describeDBSnapshots(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeDBSnapshotsAsync(array $args = [])
|
||||
* @method \Aws\Result describeDBSubnetGroups(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeDBSubnetGroupsAsync(array $args = [])
|
||||
* @method \Aws\Result describeEngineDefaultParameters(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeEngineDefaultParametersAsync(array $args = [])
|
||||
* @method \Aws\Result describeEventCategories(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeEventCategoriesAsync(array $args = [])
|
||||
* @method \Aws\Result describeEventSubscriptions(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeEventSubscriptionsAsync(array $args = [])
|
||||
* @method \Aws\Result describeEvents(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeEventsAsync(array $args = [])
|
||||
* @method \Aws\Result describeOptionGroupOptions(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeOptionGroupOptionsAsync(array $args = [])
|
||||
* @method \Aws\Result describeOptionGroups(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeOptionGroupsAsync(array $args = [])
|
||||
* @method \Aws\Result describeOrderableDBInstanceOptions(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeOrderableDBInstanceOptionsAsync(array $args = [])
|
||||
* @method \Aws\Result describeReservedDBInstances(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeReservedDBInstancesAsync(array $args = [])
|
||||
* @method \Aws\Result describeReservedDBInstancesOfferings(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeReservedDBInstancesOfferingsAsync(array $args = [])
|
||||
* @method \Aws\Result downloadDBLogFilePortion(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise downloadDBLogFilePortionAsync(array $args = [])
|
||||
* @method \Aws\Result listTagsForResource(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
|
||||
* @method \Aws\Result modifyDBInstance(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise modifyDBInstanceAsync(array $args = [])
|
||||
* @method \Aws\Result modifyDBParameterGroup(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise modifyDBParameterGroupAsync(array $args = [])
|
||||
* @method \Aws\Result modifyDBSubnetGroup(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise modifyDBSubnetGroupAsync(array $args = [])
|
||||
* @method \Aws\Result modifyEventSubscription(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise modifyEventSubscriptionAsync(array $args = [])
|
||||
* @method \Aws\Result modifyOptionGroup(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise modifyOptionGroupAsync(array $args = [])
|
||||
* @method \Aws\Result promoteReadReplica(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise promoteReadReplicaAsync(array $args = [])
|
||||
* @method \Aws\Result purchaseReservedDBInstancesOffering(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise purchaseReservedDBInstancesOfferingAsync(array $args = [])
|
||||
* @method \Aws\Result rebootDBInstance(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise rebootDBInstanceAsync(array $args = [])
|
||||
* @method \Aws\Result removeSourceIdentifierFromSubscription(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise removeSourceIdentifierFromSubscriptionAsync(array $args = [])
|
||||
* @method \Aws\Result removeTagsFromResource(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise removeTagsFromResourceAsync(array $args = [])
|
||||
* @method \Aws\Result resetDBParameterGroup(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise resetDBParameterGroupAsync(array $args = [])
|
||||
* @method \Aws\Result restoreDBInstanceFromDBSnapshot(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise restoreDBInstanceFromDBSnapshotAsync(array $args = [])
|
||||
* @method \Aws\Result restoreDBInstanceToPointInTime(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise restoreDBInstanceToPointInTimeAsync(array $args = [])
|
||||
* @method \Aws\Result revokeDBSecurityGroupIngress(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise revokeDBSecurityGroupIngressAsync(array $args = [])
|
||||
* @method \Aws\Result addRoleToDBCluster(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \GuzzleHttp\Promise\Promise addRoleToDBClusterAsync(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \Aws\Result applyPendingMaintenanceAction(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \GuzzleHttp\Promise\Promise applyPendingMaintenanceActionAsync(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \Aws\Result copyDBClusterParameterGroup(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \GuzzleHttp\Promise\Promise copyDBClusterParameterGroupAsync(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \Aws\Result copyDBClusterSnapshot(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \GuzzleHttp\Promise\Promise copyDBClusterSnapshotAsync(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \Aws\Result createDBCluster(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \GuzzleHttp\Promise\Promise createDBClusterAsync(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \Aws\Result createDBClusterParameterGroup(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \GuzzleHttp\Promise\Promise createDBClusterParameterGroupAsync(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \Aws\Result createDBClusterSnapshot(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \GuzzleHttp\Promise\Promise createDBClusterSnapshotAsync(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \Aws\Result deleteDBCluster(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \GuzzleHttp\Promise\Promise deleteDBClusterAsync(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \Aws\Result deleteDBClusterParameterGroup(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \GuzzleHttp\Promise\Promise deleteDBClusterParameterGroupAsync(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \Aws\Result deleteDBClusterSnapshot(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \GuzzleHttp\Promise\Promise deleteDBClusterSnapshotAsync(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \Aws\Result describeAccountAttributes(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \GuzzleHttp\Promise\Promise describeAccountAttributesAsync(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \Aws\Result describeCertificates(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \GuzzleHttp\Promise\Promise describeCertificatesAsync(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \Aws\Result describeDBClusterParameterGroups(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \GuzzleHttp\Promise\Promise describeDBClusterParameterGroupsAsync(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \Aws\Result describeDBClusterParameters(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \GuzzleHttp\Promise\Promise describeDBClusterParametersAsync(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \Aws\Result describeDBClusterSnapshotAttributes(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \GuzzleHttp\Promise\Promise describeDBClusterSnapshotAttributesAsync(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \Aws\Result describeDBClusterSnapshots(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \GuzzleHttp\Promise\Promise describeDBClusterSnapshotsAsync(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \Aws\Result describeDBClusters(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \GuzzleHttp\Promise\Promise describeDBClustersAsync(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \Aws\Result describeDBSnapshotAttributes(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \GuzzleHttp\Promise\Promise describeDBSnapshotAttributesAsync(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \Aws\Result describeEngineDefaultClusterParameters(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \GuzzleHttp\Promise\Promise describeEngineDefaultClusterParametersAsync(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \Aws\Result describePendingMaintenanceActions(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \GuzzleHttp\Promise\Promise describePendingMaintenanceActionsAsync(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \Aws\Result describeSourceRegions(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \GuzzleHttp\Promise\Promise describeSourceRegionsAsync(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \Aws\Result describeValidDBInstanceModifications(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \GuzzleHttp\Promise\Promise describeValidDBInstanceModificationsAsync(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \Aws\Result failoverDBCluster(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \GuzzleHttp\Promise\Promise failoverDBClusterAsync(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \Aws\Result modifyDBCluster(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \GuzzleHttp\Promise\Promise modifyDBClusterAsync(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \Aws\Result modifyDBClusterParameterGroup(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \GuzzleHttp\Promise\Promise modifyDBClusterParameterGroupAsync(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \Aws\Result modifyDBClusterSnapshotAttribute(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \GuzzleHttp\Promise\Promise modifyDBClusterSnapshotAttributeAsync(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \Aws\Result modifyDBSnapshot(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \GuzzleHttp\Promise\Promise modifyDBSnapshotAsync(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \Aws\Result modifyDBSnapshotAttribute(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \GuzzleHttp\Promise\Promise modifyDBSnapshotAttributeAsync(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \Aws\Result promoteReadReplicaDBCluster(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \GuzzleHttp\Promise\Promise promoteReadReplicaDBClusterAsync(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \Aws\Result removeRoleFromDBCluster(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \GuzzleHttp\Promise\Promise removeRoleFromDBClusterAsync(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \Aws\Result resetDBClusterParameterGroup(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \GuzzleHttp\Promise\Promise resetDBClusterParameterGroupAsync(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \Aws\Result restoreDBClusterFromS3(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \GuzzleHttp\Promise\Promise restoreDBClusterFromS3Async(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \Aws\Result restoreDBClusterFromSnapshot(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \GuzzleHttp\Promise\Promise restoreDBClusterFromSnapshotAsync(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \Aws\Result restoreDBClusterToPointInTime(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \GuzzleHttp\Promise\Promise restoreDBClusterToPointInTimeAsync(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \Aws\Result restoreDBInstanceFromS3(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \GuzzleHttp\Promise\Promise restoreDBInstanceFromS3Async(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \Aws\Result startDBInstance(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \GuzzleHttp\Promise\Promise startDBInstanceAsync(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \Aws\Result stopDBInstance(array $args = []) (supported in versions 2014-10-31)
|
||||
* @method \GuzzleHttp\Promise\Promise stopDBInstanceAsync(array $args = []) (supported in versions 2014-10-31)
|
||||
*/
|
||||
class RdsClient extends AwsClient
|
||||
{
|
||||
public function __construct(array $args)
|
||||
{
|
||||
$args['with_resolved'] = function (array $args) {
|
||||
$this->getHandlerList()->appendInit(
|
||||
PresignUrlMiddleware::wrap(
|
||||
$this,
|
||||
$args['endpoint_provider'],
|
||||
[
|
||||
'operations' => [
|
||||
'CopyDBSnapshot',
|
||||
'CreateDBInstanceReadReplica',
|
||||
'CopyDBClusterSnapshot',
|
||||
'CreateDBCluster'
|
||||
],
|
||||
'service' => 'rds',
|
||||
'presign_param' => 'PreSignedUrl',
|
||||
'require_different_region' => true,
|
||||
]
|
||||
),
|
||||
'rds.presigner'
|
||||
);
|
||||
};
|
||||
|
||||
parent::__construct($args);
|
||||
}
|
||||
|
||||
/**
|
||||
* @internal
|
||||
* @codeCoverageIgnore
|
||||
*/
|
||||
public static function applyDocFilters(array $api, array $docs)
|
||||
{
|
||||
// Add the SourceRegion parameter
|
||||
$docs['shapes']['SourceRegion']['base'] = 'A required parameter that indicates '
|
||||
. 'the region that the DB snapshot will be copied from.';
|
||||
$api['shapes']['SourceRegion'] = ['type' => 'string'];
|
||||
$api['shapes']['CopyDBSnapshotMessage']['members']['SourceRegion'] = ['shape' => 'SourceRegion'];
|
||||
$api['shapes']['CreateDBInstanceReadReplicaMessage']['members']['SourceRegion'] = ['shape' => 'SourceRegion'];
|
||||
|
||||
// Several parameters in presign APIs are optional.
|
||||
$docs['shapes']['String']['refs']['CopyDBSnapshotMessage$PreSignedUrl']
|
||||
= '<div class="alert alert-info">The SDK will compute this value '
|
||||
. 'for you on your behalf.</div>';
|
||||
$docs['shapes']['String']['refs']['CopyDBSnapshotMessage$DestinationRegion']
|
||||
= '<div class="alert alert-info">The SDK will populate this '
|
||||
. 'parameter on your behalf using the configured region value of '
|
||||
. 'the client.</div>';
|
||||
|
||||
// Several parameters in presign APIs are optional.
|
||||
$docs['shapes']['String']['refs']['CreateDBInstanceReadReplicaMessage$PreSignedUrl']
|
||||
= '<div class="alert alert-info">The SDK will compute this value '
|
||||
. 'for you on your behalf.</div>';
|
||||
$docs['shapes']['String']['refs']['CreateDBInstanceReadReplicaMessage$DestinationRegion']
|
||||
= '<div class="alert alert-info">The SDK will populate this '
|
||||
. 'parameter on your behalf using the configured region value of '
|
||||
. 'the client.</div>';
|
||||
|
||||
if ($api['metadata']['apiVersion'] != '2014-09-01') {
|
||||
$api['shapes']['CopyDBClusterSnapshotMessage']['members']['SourceRegion'] = ['shape' => 'SourceRegion'];
|
||||
$api['shapes']['CreateDBClusterMessage']['members']['SourceRegion'] = ['shape' => 'SourceRegion'];
|
||||
|
||||
// Several parameters in presign APIs are optional.
|
||||
$docs['shapes']['String']['refs']['CopyDBClusterSnapshotMessage$PreSignedUrl']
|
||||
= '<div class="alert alert-info">The SDK will compute this value '
|
||||
. 'for you on your behalf.</div>';
|
||||
$docs['shapes']['String']['refs']['CopyDBClusterSnapshotMessage$DestinationRegion']
|
||||
= '<div class="alert alert-info">The SDK will populate this '
|
||||
. 'parameter on your behalf using the configured region value of '
|
||||
. 'the client.</div>';
|
||||
|
||||
// Several parameters in presign APIs are optional.
|
||||
$docs['shapes']['String']['refs']['CreateDBClusterMessage$PreSignedUrl']
|
||||
= '<div class="alert alert-info">The SDK will compute this value '
|
||||
. 'for you on your behalf.</div>';
|
||||
$docs['shapes']['String']['refs']['CreateDBClusterMessage$DestinationRegion']
|
||||
= '<div class="alert alert-info">The SDK will populate this '
|
||||
. 'parameter on your behalf using the configured region value of '
|
||||
. 'the client.</div>';
|
||||
}
|
||||
|
||||
return [
|
||||
new Service($api, ApiProvider::defaultProvider()),
|
||||
new DocModel($docs)
|
||||
];
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue