|
57 | 57 | * @method ListNetworkInterfaces listNetworkInterfaces(array $options = [])
|
58 | 58 | * @method ListNodeInfosForPod listNodeInfosForPod(array $options = [])
|
59 | 59 | * @method ListSubnets listSubnets(array $options = [])
|
| 60 | + * @method ListVccFlowInfos listVccFlowInfos(array $options = []) |
60 | 61 | * @method ListVccGrantRules listVccGrantRules(array $options = [])
|
61 | 62 | * @method ListVccRouteEntries listVccRouteEntries(array $options = [])
|
62 | 63 | * @method ListVccs listVccs(array $options = [])
|
@@ -300,6 +301,7 @@ public function withSecondaryCidrBlock($value)
|
300 | 301 | * @method string getSecurityGroupId()
|
301 | 302 | * @method string getDescription()
|
302 | 303 | * @method string getNodeId()
|
| 304 | + * @method string getEnableJumboFrame() |
303 | 305 | * @method string getVSwitchId()
|
304 | 306 | * @method string getVpcId()
|
305 | 307 | * @method string getZoneId()
|
@@ -359,6 +361,19 @@ public function withNodeId($value)
|
359 | 361 | return $this;
|
360 | 362 | }
|
361 | 363 |
|
| 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 | + |
362 | 377 | /**
|
363 | 378 | * @param string $value
|
364 | 379 | *
|
@@ -813,6 +828,7 @@ public function withSubnetName($value)
|
813 | 828 | * @method string getCenId()
|
814 | 829 | * @method string getDescription()
|
815 | 830 | * @method string getCenOwnerId()
|
| 831 | + * @method string getBgpAsn() |
816 | 832 | * @method string getAccessCouldService()
|
817 | 833 | * @method string getResourceGroupId()
|
818 | 834 | * @method string getVccName()
|
@@ -880,6 +896,19 @@ public function withCenOwnerId($value)
|
880 | 896 | return $this;
|
881 | 897 | }
|
882 | 898 |
|
| 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 | + |
883 | 912 | /**
|
884 | 913 | * @param string $value
|
885 | 914 | *
|
@@ -3747,6 +3776,82 @@ public function withStatus($value)
|
3747 | 3776 | }
|
3748 | 3777 | }
|
3749 | 3778 |
|
| 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 | + |
3750 | 3855 | /**
|
3751 | 3856 | * @method string getGrantTenantId()
|
3752 | 3857 | * @method string getPageNumber()
|
|
0 commit comments