allow vendord
All checks were successful
Build, Push and Deploy / build-and-push (push) Successful in 3m3s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 16s
Build, Push and Deploy / deploy-staging (push) Successful in 32s
Build, Push and Deploy / deploy-production (push) Has been skipped
Build, Push and Deploy / cleanup (push) Successful in 1s

This commit is contained in:
2026-03-30 14:54:57 +07:00
parent 66aed7c4e8
commit b5e3a778ce
21316 changed files with 2777892 additions and 13 deletions

View File

@@ -0,0 +1,9 @@
<?php
namespace Aws\IoTEventsData\Exception;
use Aws\Exception\AwsException;
/**
* Represents an error interacting with the **AWS IoT Events Data** service.
*/
class IoTEventsDataException extends AwsException {}

View File

@@ -0,0 +1,33 @@
<?php
namespace Aws\IoTEventsData;
use Aws\AwsClient;
/**
* This client is used to interact with the **AWS IoT Events Data** service.
* @method \Aws\Result batchAcknowledgeAlarm(array $args = [])
* @method \GuzzleHttp\Promise\Promise batchAcknowledgeAlarmAsync(array $args = [])
* @method \Aws\Result batchDeleteDetector(array $args = [])
* @method \GuzzleHttp\Promise\Promise batchDeleteDetectorAsync(array $args = [])
* @method \Aws\Result batchDisableAlarm(array $args = [])
* @method \GuzzleHttp\Promise\Promise batchDisableAlarmAsync(array $args = [])
* @method \Aws\Result batchEnableAlarm(array $args = [])
* @method \GuzzleHttp\Promise\Promise batchEnableAlarmAsync(array $args = [])
* @method \Aws\Result batchPutMessage(array $args = [])
* @method \GuzzleHttp\Promise\Promise batchPutMessageAsync(array $args = [])
* @method \Aws\Result batchResetAlarm(array $args = [])
* @method \GuzzleHttp\Promise\Promise batchResetAlarmAsync(array $args = [])
* @method \Aws\Result batchSnoozeAlarm(array $args = [])
* @method \GuzzleHttp\Promise\Promise batchSnoozeAlarmAsync(array $args = [])
* @method \Aws\Result batchUpdateDetector(array $args = [])
* @method \GuzzleHttp\Promise\Promise batchUpdateDetectorAsync(array $args = [])
* @method \Aws\Result describeAlarm(array $args = [])
* @method \GuzzleHttp\Promise\Promise describeAlarmAsync(array $args = [])
* @method \Aws\Result describeDetector(array $args = [])
* @method \GuzzleHttp\Promise\Promise describeDetectorAsync(array $args = [])
* @method \Aws\Result listAlarms(array $args = [])
* @method \GuzzleHttp\Promise\Promise listAlarmsAsync(array $args = [])
* @method \Aws\Result listDetectors(array $args = [])
* @method \GuzzleHttp\Promise\Promise listDetectorsAsync(array $args = [])
*/
class IoTEventsDataClient extends AwsClient {}