Skip to content

Commit d484f20

Browse files
committed
CreateJob and UpdateJob support ExecutorBlockStrategy.
1 parent 937273c commit d484f20

File tree

8 files changed

+2232
-1
lines changed

8 files changed

+2232
-1
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# CHANGELOG
22

3+
## 1.8.2236 - 2024-12-26
4+
- CreateJob and UpdateJob support ExecutorBlockStrategy.
5+
- TimeType support fixed_delay.
6+
- ListJobs support return LastExecuteEndTime, LastExecuteStatus and CurrentExecuteStatus.
7+
8+
39
## 1.8.2235 - 2024-12-25
410
-- Supported DeleteEip
511

src/IdeHelper.php

+1
Original file line numberDiff line numberDiff line change
@@ -247,6 +247,7 @@
247247
* @method static SasApi\SasApi sasApi()
248248
* @method static Sasti\Sasti sasti()
249249
* @method static Scdn\Scdn scdn()
250+
* @method static SchedulerX3\SchedulerX3 schedulerX3()
250251
* @method static Schedulerx2\Schedulerx2 schedulerx2()
251252
* @method static Scsp\Scsp scsp()
252253
* @method static Sddp\Sddp sddp()

src/Release.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class Release
1616
/**
1717
* Version of the SDK
1818
*/
19-
const VERSION = '1.8.2235';
19+
const VERSION = '1.8.2236';
2020

2121
/**
2222
* @param Event $event

src/SchedulerX3/README-EN.md

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
[简体中文](./README.md) | English
2+
3+
<p align="center">
4+
<a href=" https://www.aliyun.com"><img src="https://aliyunsdk-pages.alicdn.com/icons/AlibabaCloud.svg"></a>
5+
</p>
6+
7+
<h1 align="center">Alibaba Cloud SchedulerX3 SDK for PHP</h1>
8+
9+
If [Alibaba Cloud SDK for PHP][sdk] is installed, there is no need to install the product dependency package. This product dependency package is only part of the synchronization from [Alibaba Cloud SDK for PHP][sdk], and its namespace and usage are consistent with [Alibaba Cloud SDK for PHP][sdk].
10+
11+
If you don't care about file size, we recommend that you install [Alibaba Cloud SDK for PHP][sdk] and update it regularly so as to maintain the latest and most complete product support:
12+
```
13+
composer require alibabacloud/sdk
14+
```
15+
16+
The product can also be installed only:
17+
> The version of this product is always synchronized with [Alibaba Cloud SDK for PHP][sdk] to ensure that it can switch with [Alibaba Cloud SDK for PHP][sdk] at any time without changing the business code, although the code between different versions of this product may not change.
18+
```
19+
composer require alibabacloud/schedulerx3
20+
```
21+
22+
***
23+
Refer to document [Alibaba Cloud SDK for PHP][sdk] for more SDK usage.
24+
25+
[sdk]: https://github.com/aliyun/openapi-sdk-php

src/SchedulerX3/README.md

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
简体中文 | [English](./README-EN.md)
2+
3+
<p align="center">
4+
<a href=" https://www.aliyun.com"><img src="https://aliyunsdk-pages.alicdn.com/icons/Aliyun.svg"></a>
5+
</p>
6+
7+
<h1 align="center">Alibaba Cloud SchedulerX3 SDK for PHP</h1>
8+
9+
若已安装 [Alibaba Cloud SDK for PHP][sdk] 则无需安装本产品依赖包。本产品依赖包只是从 [Alibaba Cloud SDK for PHP][sdk] 中同步出来的一部分,其命名空间、用法与 [Alibaba Cloud SDK for PHP][sdk] 一致。
10+
11+
如果您不在乎文件体积,建议您安装 [Alibaba Cloud SDK for PHP][sdk] 并经常更新,以便保持最新、最全的产品支持:
12+
```
13+
composer require alibabacloud/sdk
14+
```
15+
16+
也可仅安装本产品:
17+
> 本产品的版本始终和 [Alibaba Cloud SDK for PHP][sdk] 保持同步,以保证在不改变业务代码的情况下随时和 [Alibaba Cloud SDK for PHP][sdk] 相互切换,尽管本产品不同版本之间的代码可能没有变化。
18+
```
19+
composer require alibabacloud/schedulerx3
20+
```
21+
22+
***
23+
更多 SDK 的使用请参考 [Alibaba Cloud SDK for PHP][sdk] 文档。
24+
25+
[sdk]: https://github.com/aliyun/openapi-sdk-php

src/SchedulerX3/SchedulerX3.php

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?php
2+
3+
namespace AlibabaCloud\SchedulerX3;
4+
5+
use AlibabaCloud\Client\Resolver\VersionResolver;
6+
7+
/**
8+
* @method static V20240624\SchedulerX3ApiResolver v20240624()
9+
*/
10+
class SchedulerX3 extends VersionResolver
11+
{
12+
}

0 commit comments

Comments
 (0)