PluginProbe ʕ •ᴥ•ʔ
Transferito: WP Migration / trunk
Transferito: WP Migration vtrunk
trunk 11.4.0 12.0.0 13.1.0 14.0.0 14.0.11 14.0.7 14.1.0 14.1.1 14.1.2 14.1.3 14.1.4
transferito / vendor / aws / aws-sdk-php / src / CloudSearch / CloudSearchClient.php
transferito / vendor / aws / aws-sdk-php / src / CloudSearch Last commit date
Exception 11 months ago CloudSearchClient.php 11 months ago
CloudSearchClient.php
63 lines
1 <?php
2 namespace Aws\CloudSearch;
3
4 use Aws\AwsClient;
5
6 /**
7 * This client is used to interact with the **Amazon CloudSearch** service.
8 *
9 * @method \Aws\Result buildSuggesters(array $args = [])
10 * @method \GuzzleHttp\Promise\Promise buildSuggestersAsync(array $args = [])
11 * @method \Aws\Result createDomain(array $args = [])
12 * @method \GuzzleHttp\Promise\Promise createDomainAsync(array $args = [])
13 * @method \Aws\Result defineAnalysisScheme(array $args = [])
14 * @method \GuzzleHttp\Promise\Promise defineAnalysisSchemeAsync(array $args = [])
15 * @method \Aws\Result defineExpression(array $args = [])
16 * @method \GuzzleHttp\Promise\Promise defineExpressionAsync(array $args = [])
17 * @method \Aws\Result defineIndexField(array $args = [])
18 * @method \GuzzleHttp\Promise\Promise defineIndexFieldAsync(array $args = [])
19 * @method \Aws\Result defineSuggester(array $args = [])
20 * @method \GuzzleHttp\Promise\Promise defineSuggesterAsync(array $args = [])
21 * @method \Aws\Result deleteAnalysisScheme(array $args = [])
22 * @method \GuzzleHttp\Promise\Promise deleteAnalysisSchemeAsync(array $args = [])
23 * @method \Aws\Result deleteDomain(array $args = [])
24 * @method \GuzzleHttp\Promise\Promise deleteDomainAsync(array $args = [])
25 * @method \Aws\Result deleteExpression(array $args = [])
26 * @method \GuzzleHttp\Promise\Promise deleteExpressionAsync(array $args = [])
27 * @method \Aws\Result deleteIndexField(array $args = [])
28 * @method \GuzzleHttp\Promise\Promise deleteIndexFieldAsync(array $args = [])
29 * @method \Aws\Result deleteSuggester(array $args = [])
30 * @method \GuzzleHttp\Promise\Promise deleteSuggesterAsync(array $args = [])
31 * @method \Aws\Result describeAnalysisSchemes(array $args = [])
32 * @method \GuzzleHttp\Promise\Promise describeAnalysisSchemesAsync(array $args = [])
33 * @method \Aws\Result describeAvailabilityOptions(array $args = [])
34 * @method \GuzzleHttp\Promise\Promise describeAvailabilityOptionsAsync(array $args = [])
35 * @method \Aws\Result describeDomainEndpointOptions(array $args = [])
36 * @method \GuzzleHttp\Promise\Promise describeDomainEndpointOptionsAsync(array $args = [])
37 * @method \Aws\Result describeDomains(array $args = [])
38 * @method \GuzzleHttp\Promise\Promise describeDomainsAsync(array $args = [])
39 * @method \Aws\Result describeExpressions(array $args = [])
40 * @method \GuzzleHttp\Promise\Promise describeExpressionsAsync(array $args = [])
41 * @method \Aws\Result describeIndexFields(array $args = [])
42 * @method \GuzzleHttp\Promise\Promise describeIndexFieldsAsync(array $args = [])
43 * @method \Aws\Result describeScalingParameters(array $args = [])
44 * @method \GuzzleHttp\Promise\Promise describeScalingParametersAsync(array $args = [])
45 * @method \Aws\Result describeServiceAccessPolicies(array $args = [])
46 * @method \GuzzleHttp\Promise\Promise describeServiceAccessPoliciesAsync(array $args = [])
47 * @method \Aws\Result describeSuggesters(array $args = [])
48 * @method \GuzzleHttp\Promise\Promise describeSuggestersAsync(array $args = [])
49 * @method \Aws\Result indexDocuments(array $args = [])
50 * @method \GuzzleHttp\Promise\Promise indexDocumentsAsync(array $args = [])
51 * @method \Aws\Result listDomainNames(array $args = [])
52 * @method \GuzzleHttp\Promise\Promise listDomainNamesAsync(array $args = [])
53 * @method \Aws\Result updateAvailabilityOptions(array $args = [])
54 * @method \GuzzleHttp\Promise\Promise updateAvailabilityOptionsAsync(array $args = [])
55 * @method \Aws\Result updateDomainEndpointOptions(array $args = [])
56 * @method \GuzzleHttp\Promise\Promise updateDomainEndpointOptionsAsync(array $args = [])
57 * @method \Aws\Result updateScalingParameters(array $args = [])
58 * @method \GuzzleHttp\Promise\Promise updateScalingParametersAsync(array $args = [])
59 * @method \Aws\Result updateServiceAccessPolicies(array $args = [])
60 * @method \GuzzleHttp\Promise\Promise updateServiceAccessPoliciesAsync(array $args = [])
61 */
62 class CloudSearchClient extends AwsClient {}
63