Skip to content

Commit 937273c

Browse files
committed
-Supported DeleteEip
1 parent abda8b0 commit 937273c

File tree

3 files changed

+31
-1
lines changed

3 files changed

+31
-1
lines changed

CHANGELOG.md

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

3+
## 1.8.2235 - 2024-12-25
4+
-- Supported DeleteEip
5+
6+
37
## 1.8.2234 - 2024-12-24
48
- Supported Jumbo for HDENI and LENI.
59

src/Ens/V20171110/EnsApiResolver.php

+26
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@
6262
* @method DeleteBucketLifecycle deleteBucketLifecycle(array $options = [])
6363
* @method DeleteDeviceInternetPort deleteDeviceInternetPort(array $options = [])
6464
* @method DeleteDisk deleteDisk(array $options = [])
65+
* @method DeleteEip deleteEip(array $options = [])
6566
* @method DeleteEnsRouteEntry deleteEnsRouteEntry(array $options = [])
6667
* @method DeleteEnsSaleConditionControl deleteEnsSaleConditionControl(array $options = [])
6768
* @method DeleteEnsSaleControl deleteEnsSaleControl(array $options = [])
@@ -224,6 +225,7 @@
224225
* @method ModifyPrepayInstanceSpec modifyPrepayInstanceSpec(array $options = [])
225226
* @method ModifySecurityGroupAttribute modifySecurityGroupAttribute(array $options = [])
226227
* @method ModifySnapshotAttribute modifySnapshotAttribute(array $options = [])
228+
* @method ModifySnatEntry modifySnatEntry(array $options = [])
227229
* @method ModifyVSwitchAttribute modifyVSwitchAttribute(array $options = [])
228230
* @method MountInstanceSDG mountInstanceSDG(array $options = [])
229231
* @method PreloadRegionSDG preloadRegionSDG(array $options = [])
@@ -1318,6 +1320,8 @@ class CreateSnapshot extends Rpc
13181320
* @method $this withIdleTimeout($value)
13191321
* @method string getSnatEntryName()
13201322
* @method $this withSnatEntryName($value)
1323+
* @method string getIspAffinity()
1324+
* @method $this withIspAffinity($value)
13211325
*/
13221326
class CreateSnatEntry extends Rpc
13231327
{
@@ -1445,6 +1449,14 @@ class DeleteDisk extends Rpc
14451449
{
14461450
}
14471451

1452+
/**
1453+
* @method string getInstanceId()
1454+
* @method $this withInstanceId($value)
1455+
*/
1456+
class DeleteEip extends Rpc
1457+
{
1458+
}
1459+
14481460
/**
14491461
* @method string getRouteEntryId()
14501462
* @method $this withRouteEntryId($value)
@@ -2449,6 +2461,8 @@ class DescribeInstanceMonitorData extends Rpc
24492461
}
24502462

24512463
/**
2464+
* @method string getServiceStatus()
2465+
* @method $this withServiceStatus($value)
24522466
* @method string getOrderByParams()
24532467
* @method $this withOrderByParams($value)
24542468
* @method string getEnsRegionId()
@@ -3748,6 +3762,18 @@ class ModifySnapshotAttribute extends Rpc
37483762
{
37493763
}
37503764

3765+
/**
3766+
* @method string getSnatEntryId()
3767+
* @method $this withSnatEntryId($value)
3768+
* @method string getSnatEntryName()
3769+
* @method $this withSnatEntryName($value)
3770+
* @method string getIspAffinity()
3771+
* @method $this withIspAffinity($value)
3772+
*/
3773+
class ModifySnatEntry extends Rpc
3774+
{
3775+
}
3776+
37513777
/**
37523778
* @method string getDescription()
37533779
* @method $this withDescription($value)

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.2234';
19+
const VERSION = '1.8.2235';
2020

2121
/**
2222
* @param Event $event

0 commit comments

Comments
 (0)