Skip to content

Commit abda8b0

Browse files
committed
Supported Jumbo for HDENI and LENI.
1 parent 40be4b4 commit abda8b0

File tree

3 files changed

+110
-1
lines changed

3 files changed

+110
-1
lines changed

CHANGELOG.md

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

3+
## 1.8.2234 - 2024-12-24
4+
- Supported Jumbo for HDENI and LENI.
5+
6+
37
## 1.8.2233 - 2024-12-23
48
- Generated 2020-06-16 for `Alb`.
59

src/Eflo/V20220530/EfloApiResolver.php

+105
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@
5757
* @method ListNetworkInterfaces listNetworkInterfaces(array $options = [])
5858
* @method ListNodeInfosForPod listNodeInfosForPod(array $options = [])
5959
* @method ListSubnets listSubnets(array $options = [])
60+
* @method ListVccFlowInfos listVccFlowInfos(array $options = [])
6061
* @method ListVccGrantRules listVccGrantRules(array $options = [])
6162
* @method ListVccRouteEntries listVccRouteEntries(array $options = [])
6263
* @method ListVccs listVccs(array $options = [])
@@ -300,6 +301,7 @@ public function withSecondaryCidrBlock($value)
300301
* @method string getSecurityGroupId()
301302
* @method string getDescription()
302303
* @method string getNodeId()
304+
* @method string getEnableJumboFrame()
303305
* @method string getVSwitchId()
304306
* @method string getVpcId()
305307
* @method string getZoneId()
@@ -359,6 +361,19 @@ public function withNodeId($value)
359361
return $this;
360362
}
361363

364+
/**
365+
* @param string $value
366+
*
367+
* @return $this
368+
*/
369+
public function withEnableJumboFrame($value)
370+
{
371+
$this->data['EnableJumboFrame'] = $value;
372+
$this->options['form_params']['EnableJumboFrame'] = $value;
373+
374+
return $this;
375+
}
376+
362377
/**
363378
* @param string $value
364379
*
@@ -813,6 +828,7 @@ public function withSubnetName($value)
813828
* @method string getCenId()
814829
* @method string getDescription()
815830
* @method string getCenOwnerId()
831+
* @method string getBgpAsn()
816832
* @method string getAccessCouldService()
817833
* @method string getResourceGroupId()
818834
* @method string getVccName()
@@ -880,6 +896,19 @@ public function withCenOwnerId($value)
880896
return $this;
881897
}
882898

899+
/**
900+
* @param string $value
901+
*
902+
* @return $this
903+
*/
904+
public function withBgpAsn($value)
905+
{
906+
$this->data['BgpAsn'] = $value;
907+
$this->options['form_params']['BgpAsn'] = $value;
908+
909+
return $this;
910+
}
911+
883912
/**
884913
* @param string $value
885914
*
@@ -3747,6 +3776,82 @@ public function withStatus($value)
37473776
}
37483777
}
37493778

3779+
/**
3780+
* @method string getFrom()
3781+
* @method string getTo()
3782+
* @method string getVccId()
3783+
* @method string getMetricName()
3784+
* @method string getDirection()
3785+
*/
3786+
class ListVccFlowInfos extends Rpc
3787+
{
3788+
3789+
/**
3790+
* @param string $value
3791+
*
3792+
* @return $this
3793+
*/
3794+
public function withFrom($value)
3795+
{
3796+
$this->data['From'] = $value;
3797+
$this->options['form_params']['From'] = $value;
3798+
3799+
return $this;
3800+
}
3801+
3802+
/**
3803+
* @param string $value
3804+
*
3805+
* @return $this
3806+
*/
3807+
public function withTo($value)
3808+
{
3809+
$this->data['To'] = $value;
3810+
$this->options['form_params']['To'] = $value;
3811+
3812+
return $this;
3813+
}
3814+
3815+
/**
3816+
* @param string $value
3817+
*
3818+
* @return $this
3819+
*/
3820+
public function withVccId($value)
3821+
{
3822+
$this->data['VccId'] = $value;
3823+
$this->options['form_params']['VccId'] = $value;
3824+
3825+
return $this;
3826+
}
3827+
3828+
/**
3829+
* @param string $value
3830+
*
3831+
* @return $this
3832+
*/
3833+
public function withMetricName($value)
3834+
{
3835+
$this->data['MetricName'] = $value;
3836+
$this->options['form_params']['MetricName'] = $value;
3837+
3838+
return $this;
3839+
}
3840+
3841+
/**
3842+
* @param string $value
3843+
*
3844+
* @return $this
3845+
*/
3846+
public function withDirection($value)
3847+
{
3848+
$this->data['Direction'] = $value;
3849+
$this->options['form_params']['Direction'] = $value;
3850+
3851+
return $this;
3852+
}
3853+
}
3854+
37503855
/**
37513856
* @method string getGrantTenantId()
37523857
* @method string getPageNumber()

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

2121
/**
2222
* @param Event $event

0 commit comments

Comments
 (0)