Skip to content

Commit 0a41690

Browse files
committed
Supported Jumbo for HDENI and LENI.
1 parent 2d2204e commit 0a41690

13 files changed

+628
-4
lines changed

CHANGELOG

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2024-12-24 Version: 1.0.11
2+
- Supported Jumbo for HDENI and LENI.
3+
14
2024-12-19 Version: 1.8.23
25
- Generated 2017-08-01 for `polardb`.
36

aliyun-net-sdk-eflo/Eflo/Model/V20220530/CreateElasticNetworkInterfaceRequest.cs

+15
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ public CreateElasticNetworkInterfaceRequest()
4343

4444
private string nodeId;
4545

46+
private bool? enableJumboFrame;
47+
4648
private string vSwitchId;
4749

4850
private string vpcId;
@@ -101,6 +103,19 @@ public string NodeId
101103
}
102104
}
103105

106+
public bool? EnableJumboFrame
107+
{
108+
get
109+
{
110+
return enableJumboFrame;
111+
}
112+
set
113+
{
114+
enableJumboFrame = value;
115+
DictionaryUtil.Add(BodyParameters, "EnableJumboFrame", value.ToString());
116+
}
117+
}
118+
104119
public string VSwitchId
105120
{
106121
get

aliyun-net-sdk-eflo/Eflo/Model/V20220530/CreateVccRequest.cs

+15
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ public CreateVccRequest()
4343

4444
private string cenOwnerId;
4545

46+
private long? bgpAsn;
47+
4648
private bool? accessCouldService;
4749

4850
private string resourceGroupId;
@@ -117,6 +119,19 @@ public string CenOwnerId
117119
}
118120
}
119121

122+
public long? BgpAsn
123+
{
124+
get
125+
{
126+
return bgpAsn;
127+
}
128+
set
129+
{
130+
bgpAsn = value;
131+
DictionaryUtil.Add(BodyParameters, "BgpAsn", value.ToString());
132+
}
133+
}
134+
120135
public bool? AccessCouldService
121136
{
122137
get

aliyun-net-sdk-eflo/Eflo/Model/V20220530/GetElasticNetworkInterfaceResponse.cs

+158
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,12 @@ public class GetElasticNetworkInterface_Content
118118

119119
private string securityGroupId;
120120

121+
private bool? enableJumboFrame;
122+
121123
private List<GetElasticNetworkInterface_PrivateIpAddress> privateIpAddresses;
122124

125+
private List<GetElasticNetworkInterface_Ipv6Addresse> ipv6Addresses;
126+
123127
public string RegionId
124128
{
125129
get
@@ -324,6 +328,18 @@ public string SecurityGroupId
324328
}
325329
}
326330

331+
public bool? EnableJumboFrame
332+
{
333+
get
334+
{
335+
return enableJumboFrame;
336+
}
337+
set
338+
{
339+
enableJumboFrame = value;
340+
}
341+
}
342+
327343
public List<GetElasticNetworkInterface_PrivateIpAddress> PrivateIpAddresses
328344
{
329345
get
@@ -336,6 +352,18 @@ public List<GetElasticNetworkInterface_PrivateIpAddress> PrivateIpAddresses
336352
}
337353
}
338354

355+
public List<GetElasticNetworkInterface_Ipv6Addresse> Ipv6Addresses
356+
{
357+
get
358+
{
359+
return ipv6Addresses;
360+
}
361+
set
362+
{
363+
ipv6Addresses = value;
364+
}
365+
}
366+
339367
public class GetElasticNetworkInterface_PrivateIpAddress
340368
{
341369

@@ -465,6 +493,136 @@ public string Message
465493
}
466494
}
467495
}
496+
497+
public class GetElasticNetworkInterface_Ipv6Addresse
498+
{
499+
500+
private string elasticNetworkInterfaceId;
501+
502+
private string ipName;
503+
504+
private string ipv6Address;
505+
506+
private string status;
507+
508+
private string description;
509+
510+
private string message;
511+
512+
private string regionId;
513+
514+
private string gmtCreate;
515+
516+
private string gmtModified;
517+
518+
public string ElasticNetworkInterfaceId
519+
{
520+
get
521+
{
522+
return elasticNetworkInterfaceId;
523+
}
524+
set
525+
{
526+
elasticNetworkInterfaceId = value;
527+
}
528+
}
529+
530+
public string IpName
531+
{
532+
get
533+
{
534+
return ipName;
535+
}
536+
set
537+
{
538+
ipName = value;
539+
}
540+
}
541+
542+
public string Ipv6Address
543+
{
544+
get
545+
{
546+
return ipv6Address;
547+
}
548+
set
549+
{
550+
ipv6Address = value;
551+
}
552+
}
553+
554+
public string Status
555+
{
556+
get
557+
{
558+
return status;
559+
}
560+
set
561+
{
562+
status = value;
563+
}
564+
}
565+
566+
public string Description
567+
{
568+
get
569+
{
570+
return description;
571+
}
572+
set
573+
{
574+
description = value;
575+
}
576+
}
577+
578+
public string Message
579+
{
580+
get
581+
{
582+
return message;
583+
}
584+
set
585+
{
586+
message = value;
587+
}
588+
}
589+
590+
public string RegionId
591+
{
592+
get
593+
{
594+
return regionId;
595+
}
596+
set
597+
{
598+
regionId = value;
599+
}
600+
}
601+
602+
public string GmtCreate
603+
{
604+
get
605+
{
606+
return gmtCreate;
607+
}
608+
set
609+
{
610+
gmtCreate = value;
611+
}
612+
}
613+
614+
public string GmtModified
615+
{
616+
get
617+
{
618+
return gmtModified;
619+
}
620+
set
621+
{
622+
gmtModified = value;
623+
}
624+
}
625+
}
468626
}
469627
}
470628
}

aliyun-net-sdk-eflo/Eflo/Model/V20220530/GetVccResponse.cs

+14
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,8 @@ public class GetVcc_Content
144144

145145
private string cenOwnerId;
146146

147+
private string bgpAsn;
148+
147149
private List<GetVcc_ErInfo> erInfos;
148150

149151
private List<GetVcc_AliyunRouterInfoItem> aliyunRouterInfo;
@@ -516,6 +518,18 @@ public string CenOwnerId
516518
}
517519
}
518520

521+
public string BgpAsn
522+
{
523+
get
524+
{
525+
return bgpAsn;
526+
}
527+
set
528+
{
529+
bgpAsn = value;
530+
}
531+
}
532+
519533
public List<GetVcc_ErInfo> ErInfos
520534
{
521535
get

0 commit comments

Comments
 (0)