Skip to content

Commit 6bbc3ba

Browse files
committed
Update 2020.03.26
1 parent 7a3f5d5 commit 6bbc3ba

File tree

1,178 files changed

+63916
-35116
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,178 files changed

+63916
-35116
lines changed

composer.lock

+634-995
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/amzn/amazon-pay-sdk-php/AmazonPay/Client.php

+7-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
class Client implements ClientInterface, LoggerAwareInterface
2525
{
26-
const SDK_VERSION = '3.7.0';
26+
const SDK_VERSION = '3.7.1';
2727
const MWS_VERSION = '2013-01-01';
2828
const MAX_ERROR_RETRY = 3;
2929

@@ -316,16 +316,21 @@ public function getUserInfo($accessToken)
316316

317317
// To make sure double encoding doesn't occur decode first and encode again.
318318
$accessToken = urldecode($accessToken);
319-
$url = $this->profileEndpoint . '/auth/o2/tokeninfo?access_token=' . $this->urlEncode($accessToken);
319+
$url = $this->profileEndpoint . '/auth/o2/tokeninfo';
320320

321321
$httpCurlRequest = new HttpCurl($this->config);
322+
$httpCurlRequest->setAccessToken($accessToken);
323+
$httpCurlRequest->setHttpHeader();
322324

323325
$response = $httpCurlRequest->httpGet($url);
324326
$data = json_decode($response);
325327

326328
// Ensure that the Access Token matches either the supplied Client ID *or* the supplied App ID
327329
// Web apps and Mobile apps will have different Client ID's but App ID should be the same
328330
// As long as one of these matches, from a security perspective, we have done our due diligence
331+
if (!isset($data->aud)) {
332+
throw new \Exception('The tokeninfo API call did not succeed');
333+
}
329334
if (($data->aud != $this->config['client_id']) && ($data->app_id != $this->config['app_id'])) {
330335
// The access token does not belong to us
331336
throw new \Exception('The Access Token belongs to neither your Client ID nor App ID');

vendor/amzn/amazon-pay-sdk-php/AmazonPay/HttpCurl.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ public function httpGet($url, $userAgent = null)
102102

103103
// Setting the HTTP header with the Access Token only for Getting user info
104104
if ($this->header) {
105-
$this->headerArray[] = 'Authorization: bearer ' . $this->accessToken;
105+
$this->headerArray[] = 'x-amz-access-token : ' . $this->accessToken;
106106
}
107107

108108
$response = $this->execute($ch);

vendor/amzn/amazon-pay-sdk-php/CHANGES.txt

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
3.7.1 - March 2021
2+
- Fixed Secuity issue - Sending access token via HTTP header instead of query string in URL for GetUserInfo API
3+
14
3.7.0 - January 2021
25
- Added additional attribute (expect_immediate_authorization) to ConfirmOrderReference. This value can be set to true or false (Boolean). See Amazon Pay Strong Customer Authentication (SCA) Upgrade Integration Guide for more information.
36

vendor/amzn/amazon-pay-sdk-php/NOTICE.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
*-*-**-***-*****-********-*************
22
Amazon Pay SDK (PHP)
3-
Copyright 2013-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
3+
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
44
Licensed under the Apache License, Version 2.0 (the "License");
55
*-*-**-***-*****-********-*************
66

vendor/amzn/amazon-pay-sdk-php/composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "amzn/amazon-pay-sdk-php",
33
"type": "library",
44
"description": "Amazon Pay SDK (PHP)",
5-
"version": "3.7.0",
5+
"version": "3.7.1",
66
"keywords": [
77
"amazon",
88
"pay",

vendor/aws/aws-sdk-php/composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
"require": {
1919
"php": ">=5.5",
2020
"guzzlehttp/guzzle": "^5.3.3|^6.2.1|^7.0",
21-
"guzzlehttp/psr7": "^1.4.1",
22-
"guzzlehttp/promises": "^1.0",
23-
"mtdowling/jmespath.php": "^2.5",
21+
"guzzlehttp/psr7": "^1.7.0",
22+
"guzzlehttp/promises": "^1.4.0",
23+
"mtdowling/jmespath.php": "^2.6",
2424
"ext-pcre": "*",
2525
"ext-json": "*",
2626
"ext-simplexml": "*"

vendor/aws/aws-sdk-php/src/AccessAnalyzer/AccessAnalyzerClient.php

+10
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
* This client is used to interact with the **Access Analyzer** service.
88
* @method \Aws\Result applyArchiveRule(array $args = [])
99
* @method \GuzzleHttp\Promise\Promise applyArchiveRuleAsync(array $args = [])
10+
* @method \Aws\Result createAccessPreview(array $args = [])
11+
* @method \GuzzleHttp\Promise\Promise createAccessPreviewAsync(array $args = [])
1012
* @method \Aws\Result createAnalyzer(array $args = [])
1113
* @method \GuzzleHttp\Promise\Promise createAnalyzerAsync(array $args = [])
1214
* @method \Aws\Result createArchiveRule(array $args = [])
@@ -15,6 +17,8 @@
1517
* @method \GuzzleHttp\Promise\Promise deleteAnalyzerAsync(array $args = [])
1618
* @method \Aws\Result deleteArchiveRule(array $args = [])
1719
* @method \GuzzleHttp\Promise\Promise deleteArchiveRuleAsync(array $args = [])
20+
* @method \Aws\Result getAccessPreview(array $args = [])
21+
* @method \GuzzleHttp\Promise\Promise getAccessPreviewAsync(array $args = [])
1822
* @method \Aws\Result getAnalyzedResource(array $args = [])
1923
* @method \GuzzleHttp\Promise\Promise getAnalyzedResourceAsync(array $args = [])
2024
* @method \Aws\Result getAnalyzer(array $args = [])
@@ -23,6 +27,10 @@
2327
* @method \GuzzleHttp\Promise\Promise getArchiveRuleAsync(array $args = [])
2428
* @method \Aws\Result getFinding(array $args = [])
2529
* @method \GuzzleHttp\Promise\Promise getFindingAsync(array $args = [])
30+
* @method \Aws\Result listAccessPreviewFindings(array $args = [])
31+
* @method \GuzzleHttp\Promise\Promise listAccessPreviewFindingsAsync(array $args = [])
32+
* @method \Aws\Result listAccessPreviews(array $args = [])
33+
* @method \GuzzleHttp\Promise\Promise listAccessPreviewsAsync(array $args = [])
2634
* @method \Aws\Result listAnalyzedResources(array $args = [])
2735
* @method \GuzzleHttp\Promise\Promise listAnalyzedResourcesAsync(array $args = [])
2836
* @method \Aws\Result listAnalyzers(array $args = [])
@@ -43,5 +51,7 @@
4351
* @method \GuzzleHttp\Promise\Promise updateArchiveRuleAsync(array $args = [])
4452
* @method \Aws\Result updateFindings(array $args = [])
4553
* @method \GuzzleHttp\Promise\Promise updateFindingsAsync(array $args = [])
54+
* @method \Aws\Result validatePolicy(array $args = [])
55+
* @method \GuzzleHttp\Promise\Promise validatePolicyAsync(array $args = [])
4656
*/
4757
class AccessAnalyzerClient extends AwsClient {}

vendor/aws/aws-sdk-php/src/Acm/AcmClient.php

+4
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
* @method \GuzzleHttp\Promise\Promise describeCertificateAsync(array $args = [])
1515
* @method \Aws\Result exportCertificate(array $args = [])
1616
* @method \GuzzleHttp\Promise\Promise exportCertificateAsync(array $args = [])
17+
* @method \Aws\Result getAccountConfiguration(array $args = [])
18+
* @method \GuzzleHttp\Promise\Promise getAccountConfigurationAsync(array $args = [])
1719
* @method \Aws\Result getCertificate(array $args = [])
1820
* @method \GuzzleHttp\Promise\Promise getCertificateAsync(array $args = [])
1921
* @method \Aws\Result importCertificate(array $args = [])
@@ -22,6 +24,8 @@
2224
* @method \GuzzleHttp\Promise\Promise listCertificatesAsync(array $args = [])
2325
* @method \Aws\Result listTagsForCertificate(array $args = [])
2426
* @method \GuzzleHttp\Promise\Promise listTagsForCertificateAsync(array $args = [])
27+
* @method \Aws\Result putAccountConfiguration(array $args = [])
28+
* @method \GuzzleHttp\Promise\Promise putAccountConfigurationAsync(array $args = [])
2529
* @method \Aws\Result removeTagsFromCertificate(array $args = [])
2630
* @method \GuzzleHttp\Promise\Promise removeTagsFromCertificateAsync(array $args = [])
2731
* @method \Aws\Result renewCertificate(array $args = [])

vendor/aws/aws-sdk-php/src/Arn/ArnParser.php

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
namespace Aws\Arn;
33

44
use Aws\Arn\S3\AccessPointArn as S3AccessPointArn;
5+
use Aws\Arn\ObjectLambdaAccessPointArn;
56
use Aws\Arn\S3\OutpostsBucketArn;
67
use Aws\Arn\S3\RegionalBucketArn;
78
use Aws\Arn\S3\OutpostsAccessPointArn;
@@ -35,6 +36,9 @@ public static function isArn($string)
3536
public static function parse($string)
3637
{
3738
$data = Arn::parse($string);
39+
if ($data['service'] === 's3-object-lambda') {
40+
return new ObjectLambdaAccessPointArn($string);
41+
}
3842
$resource = self::explodeResourceComponent($data['resource']);
3943
if ($resource[0] === 'outpost') {
4044
if (isset($resource[2]) && $resource[2] === 'bucket') {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<?php
2+
namespace Aws\Arn;
3+
4+
/**
5+
* This class represents an S3 Object bucket ARN, which is in the
6+
* following format:
7+
*
8+
* @internal
9+
*/
10+
class ObjectLambdaAccessPointArn extends AccessPointArn
11+
{
12+
/**
13+
* Parses a string into an associative array of components that represent
14+
* a ObjectLambdaAccessPointArn
15+
*
16+
* @param $string
17+
* @return array
18+
*/
19+
public static function parse($string)
20+
{
21+
$data = parent::parse($string);
22+
return parent::parseResourceTypeAndId($data);
23+
}
24+
25+
/**
26+
*
27+
* @param array $data
28+
*/
29+
protected static function validate(array $data)
30+
{
31+
parent::validate($data);
32+
self::validateRegion($data, 'S3 Object Lambda ARN');
33+
self::validateAccountId($data, 'S3 Object Lambda ARN');
34+
}
35+
}

vendor/aws/aws-sdk-php/src/Arn/ResourceTypeAndIdTrait.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public function getResourceId()
1616
return $this->data['resource_id'];
1717
}
1818

19-
private static function parseResourceTypeAndId(array $data)
19+
protected static function parseResourceTypeAndId(array $data)
2020
{
2121
$resourceData = preg_split("/[\/:]/", $data['resource'], 2);
2222
$data['resource_type'] = isset($resourceData[0])

vendor/aws/aws-sdk-php/src/Arn/S3/AccessPointArn.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class AccessPointArn extends BaseAccessPointArn implements AccessPointArnInterfa
1616
*
1717
* @param array $data
1818
*/
19-
protected static function validate(array $data)
19+
public static function validate(array $data)
2020
{
2121
parent::validate($data);
2222
if ($data['service'] !== 's3') {

vendor/aws/aws-sdk-php/src/Arn/S3/OutpostsAccessPointArn.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ private static function parseOutpostData(array $data)
6464
*
6565
* @param array $data
6666
*/
67-
protected static function validate(array $data)
67+
public static function validate(array $data)
6868
{
6969
Arn::validate($data);
7070

vendor/aws/aws-sdk-php/src/Arn/S3/OutpostsBucketArn.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ private static function parseOutpostData(array $data)
6262
*
6363
* @param array $data
6464
*/
65-
protected static function validate(array $data)
65+
public static function validate(array $data)
6666
{
6767
Arn::validate($data);
6868

vendor/aws/aws-sdk-php/src/Athena/AthenaClient.php

+10
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,16 @@
1313
* @method \GuzzleHttp\Promise\Promise createDataCatalogAsync(array $args = [])
1414
* @method \Aws\Result createNamedQuery(array $args = [])
1515
* @method \GuzzleHttp\Promise\Promise createNamedQueryAsync(array $args = [])
16+
* @method \Aws\Result createPreparedStatement(array $args = [])
17+
* @method \GuzzleHttp\Promise\Promise createPreparedStatementAsync(array $args = [])
1618
* @method \Aws\Result createWorkGroup(array $args = [])
1719
* @method \GuzzleHttp\Promise\Promise createWorkGroupAsync(array $args = [])
1820
* @method \Aws\Result deleteDataCatalog(array $args = [])
1921
* @method \GuzzleHttp\Promise\Promise deleteDataCatalogAsync(array $args = [])
2022
* @method \Aws\Result deleteNamedQuery(array $args = [])
2123
* @method \GuzzleHttp\Promise\Promise deleteNamedQueryAsync(array $args = [])
24+
* @method \Aws\Result deletePreparedStatement(array $args = [])
25+
* @method \GuzzleHttp\Promise\Promise deletePreparedStatementAsync(array $args = [])
2226
* @method \Aws\Result deleteWorkGroup(array $args = [])
2327
* @method \GuzzleHttp\Promise\Promise deleteWorkGroupAsync(array $args = [])
2428
* @method \Aws\Result getDataCatalog(array $args = [])
@@ -27,6 +31,8 @@
2731
* @method \GuzzleHttp\Promise\Promise getDatabaseAsync(array $args = [])
2832
* @method \Aws\Result getNamedQuery(array $args = [])
2933
* @method \GuzzleHttp\Promise\Promise getNamedQueryAsync(array $args = [])
34+
* @method \Aws\Result getPreparedStatement(array $args = [])
35+
* @method \GuzzleHttp\Promise\Promise getPreparedStatementAsync(array $args = [])
3036
* @method \Aws\Result getQueryExecution(array $args = [])
3137
* @method \GuzzleHttp\Promise\Promise getQueryExecutionAsync(array $args = [])
3238
* @method \Aws\Result getQueryResults(array $args = [])
@@ -43,6 +49,8 @@
4349
* @method \GuzzleHttp\Promise\Promise listEngineVersionsAsync(array $args = [])
4450
* @method \Aws\Result listNamedQueries(array $args = [])
4551
* @method \GuzzleHttp\Promise\Promise listNamedQueriesAsync(array $args = [])
52+
* @method \Aws\Result listPreparedStatements(array $args = [])
53+
* @method \GuzzleHttp\Promise\Promise listPreparedStatementsAsync(array $args = [])
4654
* @method \Aws\Result listQueryExecutions(array $args = [])
4755
* @method \GuzzleHttp\Promise\Promise listQueryExecutionsAsync(array $args = [])
4856
* @method \Aws\Result listTableMetadata(array $args = [])
@@ -61,6 +69,8 @@
6169
* @method \GuzzleHttp\Promise\Promise untagResourceAsync(array $args = [])
6270
* @method \Aws\Result updateDataCatalog(array $args = [])
6371
* @method \GuzzleHttp\Promise\Promise updateDataCatalogAsync(array $args = [])
72+
* @method \Aws\Result updatePreparedStatement(array $args = [])
73+
* @method \GuzzleHttp\Promise\Promise updatePreparedStatementAsync(array $args = [])
6474
* @method \Aws\Result updateWorkGroup(array $args = [])
6575
* @method \GuzzleHttp\Promise\Promise updateWorkGroupAsync(array $args = [])
6676
*/

vendor/aws/aws-sdk-php/src/Backup/BackupClient.php

+2
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@
3939
* @method \GuzzleHttp\Promise\Promise describeRegionSettingsAsync(array $args = [])
4040
* @method \Aws\Result describeRestoreJob(array $args = [])
4141
* @method \GuzzleHttp\Promise\Promise describeRestoreJobAsync(array $args = [])
42+
* @method \Aws\Result disassociateRecoveryPoint(array $args = [])
43+
* @method \GuzzleHttp\Promise\Promise disassociateRecoveryPointAsync(array $args = [])
4244
* @method \Aws\Result exportBackupPlanTemplate(array $args = [])
4345
* @method \GuzzleHttp\Promise\Promise exportBackupPlanTemplateAsync(array $args = [])
4446
* @method \Aws\Result getBackupPlan(array $args = [])

vendor/aws/aws-sdk-php/src/ClientResolver.php

+12-7
Original file line numberDiff line numberDiff line change
@@ -679,6 +679,18 @@ public static function _apply_user_agent($value, array &$args, HandlerList $list
679679
if (defined('HHVM_VERSION')) {
680680
array_unshift($value, 'HHVM/' . HHVM_VERSION);
681681
}
682+
683+
$disabledFunctions = explode(',', ini_get('disable_functions'));
684+
if (!ini_get('safe_mode')
685+
&& function_exists('php_uname')
686+
&& !in_array('php_uname', $disabledFunctions, true)
687+
) {
688+
$osName = php_uname('s') . '/' . php_uname('r');
689+
if (!empty($osName)) {
690+
array_unshift($value, $osName);
691+
}
692+
}
693+
682694
array_unshift($value, 'aws-sdk-php/' . Sdk::VERSION);
683695
$args['ua_append'] = $value;
684696

@@ -700,13 +712,6 @@ public static function _apply_user_agent($value, array &$args, HandlerList $list
700712

701713
public static function _apply_endpoint($value, array &$args, HandlerList $list)
702714
{
703-
$parts = parse_url($value);
704-
if (empty($parts['scheme']) || empty($parts['host'])) {
705-
throw new IAE(
706-
'Endpoints must be full URIs and include a scheme and host'
707-
);
708-
}
709-
710715
$args['endpoint'] = $value;
711716
}
712717

vendor/aws/aws-sdk-php/src/CloudWatchEvents/CloudWatchEventsClient.php

+22
Original file line numberDiff line numberDiff line change
@@ -10,24 +10,38 @@
1010
* @method \GuzzleHttp\Promise\Promise activateEventSourceAsync(array $args = [])
1111
* @method \Aws\Result cancelReplay(array $args = [])
1212
* @method \GuzzleHttp\Promise\Promise cancelReplayAsync(array $args = [])
13+
* @method \Aws\Result createApiDestination(array $args = [])
14+
* @method \GuzzleHttp\Promise\Promise createApiDestinationAsync(array $args = [])
1315
* @method \Aws\Result createArchive(array $args = [])
1416
* @method \GuzzleHttp\Promise\Promise createArchiveAsync(array $args = [])
17+
* @method \Aws\Result createConnection(array $args = [])
18+
* @method \GuzzleHttp\Promise\Promise createConnectionAsync(array $args = [])
1519
* @method \Aws\Result createEventBus(array $args = [])
1620
* @method \GuzzleHttp\Promise\Promise createEventBusAsync(array $args = [])
1721
* @method \Aws\Result createPartnerEventSource(array $args = [])
1822
* @method \GuzzleHttp\Promise\Promise createPartnerEventSourceAsync(array $args = [])
1923
* @method \Aws\Result deactivateEventSource(array $args = [])
2024
* @method \GuzzleHttp\Promise\Promise deactivateEventSourceAsync(array $args = [])
25+
* @method \Aws\Result deauthorizeConnection(array $args = [])
26+
* @method \GuzzleHttp\Promise\Promise deauthorizeConnectionAsync(array $args = [])
27+
* @method \Aws\Result deleteApiDestination(array $args = [])
28+
* @method \GuzzleHttp\Promise\Promise deleteApiDestinationAsync(array $args = [])
2129
* @method \Aws\Result deleteArchive(array $args = [])
2230
* @method \GuzzleHttp\Promise\Promise deleteArchiveAsync(array $args = [])
31+
* @method \Aws\Result deleteConnection(array $args = [])
32+
* @method \GuzzleHttp\Promise\Promise deleteConnectionAsync(array $args = [])
2333
* @method \Aws\Result deleteEventBus(array $args = [])
2434
* @method \GuzzleHttp\Promise\Promise deleteEventBusAsync(array $args = [])
2535
* @method \Aws\Result deletePartnerEventSource(array $args = [])
2636
* @method \GuzzleHttp\Promise\Promise deletePartnerEventSourceAsync(array $args = [])
2737
* @method \Aws\Result deleteRule(array $args = [])
2838
* @method \GuzzleHttp\Promise\Promise deleteRuleAsync(array $args = [])
39+
* @method \Aws\Result describeApiDestination(array $args = [])
40+
* @method \GuzzleHttp\Promise\Promise describeApiDestinationAsync(array $args = [])
2941
* @method \Aws\Result describeArchive(array $args = [])
3042
* @method \GuzzleHttp\Promise\Promise describeArchiveAsync(array $args = [])
43+
* @method \Aws\Result describeConnection(array $args = [])
44+
* @method \GuzzleHttp\Promise\Promise describeConnectionAsync(array $args = [])
3145
* @method \Aws\Result describeEventBus(array $args = [])
3246
* @method \GuzzleHttp\Promise\Promise describeEventBusAsync(array $args = [])
3347
* @method \Aws\Result describeEventSource(array $args = [])
@@ -42,8 +56,12 @@
4256
* @method \GuzzleHttp\Promise\Promise disableRuleAsync(array $args = [])
4357
* @method \Aws\Result enableRule(array $args = [])
4458
* @method \GuzzleHttp\Promise\Promise enableRuleAsync(array $args = [])
59+
* @method \Aws\Result listApiDestinations(array $args = [])
60+
* @method \GuzzleHttp\Promise\Promise listApiDestinationsAsync(array $args = [])
4561
* @method \Aws\Result listArchives(array $args = [])
4662
* @method \GuzzleHttp\Promise\Promise listArchivesAsync(array $args = [])
63+
* @method \Aws\Result listConnections(array $args = [])
64+
* @method \GuzzleHttp\Promise\Promise listConnectionsAsync(array $args = [])
4765
* @method \Aws\Result listEventBuses(array $args = [])
4866
* @method \GuzzleHttp\Promise\Promise listEventBusesAsync(array $args = [])
4967
* @method \Aws\Result listEventSources(array $args = [])
@@ -84,7 +102,11 @@
84102
* @method \GuzzleHttp\Promise\Promise testEventPatternAsync(array $args = [])
85103
* @method \Aws\Result untagResource(array $args = [])
86104
* @method \GuzzleHttp\Promise\Promise untagResourceAsync(array $args = [])
105+
* @method \Aws\Result updateApiDestination(array $args = [])
106+
* @method \GuzzleHttp\Promise\Promise updateApiDestinationAsync(array $args = [])
87107
* @method \Aws\Result updateArchive(array $args = [])
88108
* @method \GuzzleHttp\Promise\Promise updateArchiveAsync(array $args = [])
109+
* @method \Aws\Result updateConnection(array $args = [])
110+
* @method \GuzzleHttp\Promise\Promise updateConnectionAsync(array $args = [])
89111
*/
90112
class CloudWatchEventsClient extends AwsClient {}

vendor/aws/aws-sdk-php/src/CodePipeline/CodePipelineClient.php

+4
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@
2626
* @method \GuzzleHttp\Promise\Promise disableStageTransitionAsync(array $args = [])
2727
* @method \Aws\Result enableStageTransition(array $args = [])
2828
* @method \GuzzleHttp\Promise\Promise enableStageTransitionAsync(array $args = [])
29+
* @method \Aws\Result getActionType(array $args = [])
30+
* @method \GuzzleHttp\Promise\Promise getActionTypeAsync(array $args = [])
2931
* @method \Aws\Result getJobDetails(array $args = [])
3032
* @method \GuzzleHttp\Promise\Promise getJobDetailsAsync(array $args = [])
3133
* @method \Aws\Result getPipeline(array $args = [])
@@ -78,6 +80,8 @@
7880
* @method \GuzzleHttp\Promise\Promise tagResourceAsync(array $args = [])
7981
* @method \Aws\Result untagResource(array $args = [])
8082
* @method \GuzzleHttp\Promise\Promise untagResourceAsync(array $args = [])
83+
* @method \Aws\Result updateActionType(array $args = [])
84+
* @method \GuzzleHttp\Promise\Promise updateActionTypeAsync(array $args = [])
8185
* @method \Aws\Result updatePipeline(array $args = [])
8286
* @method \GuzzleHttp\Promise\Promise updatePipelineAsync(array $args = [])
8387
*/

vendor/aws/aws-sdk-php/src/Comprehend/ComprehendClient.php

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
* @method \GuzzleHttp\Promise\Promise batchDetectSyntaxAsync(array $args = [])
1818
* @method \Aws\Result classifyDocument(array $args = [])
1919
* @method \GuzzleHttp\Promise\Promise classifyDocumentAsync(array $args = [])
20+
* @method \Aws\Result containsPiiEntities(array $args = [])
21+
* @method \GuzzleHttp\Promise\Promise containsPiiEntitiesAsync(array $args = [])
2022
* @method \Aws\Result createDocumentClassifier(array $args = [])
2123
* @method \GuzzleHttp\Promise\Promise createDocumentClassifierAsync(array $args = [])
2224
* @method \Aws\Result createEndpoint(array $args = [])

0 commit comments

Comments
 (0)