@@ -1296,6 +1296,7 @@ export class CreateServerGroupRequest extends $tea.Model {
12961296 stickySessionConfig?: CreateServerGroupRequestStickySessionConfig;
12971297 tag?: CreateServerGroupRequestTag[];
12981298 uchConfig?: CreateServerGroupRequestUchConfig;
1299+ upstreamKeepaliveEnabled?: boolean;
12991300 vpcId?: string;
13001301 static names(): { [key: string]: string } {
13011302 return {
@@ -1311,6 +1312,7 @@ export class CreateServerGroupRequest extends $tea.Model {
13111312 stickySessionConfig: 'StickySessionConfig',
13121313 tag: 'Tag',
13131314 uchConfig: 'UchConfig',
1315+ upstreamKeepaliveEnabled: 'UpstreamKeepaliveEnabled',
13141316 vpcId: 'VpcId',
13151317 };
13161318 }
@@ -1329,6 +1331,7 @@ export class CreateServerGroupRequest extends $tea.Model {
13291331 stickySessionConfig: CreateServerGroupRequestStickySessionConfig,
13301332 tag: { 'type': 'array', 'itemType': CreateServerGroupRequestTag },
13311333 uchConfig: CreateServerGroupRequestUchConfig,
1334+ upstreamKeepaliveEnabled: 'boolean',
13321335 vpcId: 'string',
13331336 };
13341337 }
@@ -6419,6 +6422,7 @@ export class UpdateServerGroupAttributeRequest extends $tea.Model {
64196422 serviceName?: string;
64206423 stickySessionConfig?: UpdateServerGroupAttributeRequestStickySessionConfig;
64216424 uchConfig?: UpdateServerGroupAttributeRequestUchConfig;
6425+ upstreamKeepaliveEnabled?: boolean;
64226426 static names(): { [key: string]: string } {
64236427 return {
64246428 clientToken: 'ClientToken',
@@ -6430,6 +6434,7 @@ export class UpdateServerGroupAttributeRequest extends $tea.Model {
64306434 serviceName: 'ServiceName',
64316435 stickySessionConfig: 'StickySessionConfig',
64326436 uchConfig: 'UchConfig',
6437+ upstreamKeepaliveEnabled: 'UpstreamKeepaliveEnabled',
64336438 };
64346439 }
64356440
@@ -6444,6 +6449,7 @@ export class UpdateServerGroupAttributeRequest extends $tea.Model {
64446449 serviceName: 'string',
64456450 stickySessionConfig: UpdateServerGroupAttributeRequestStickySessionConfig,
64466451 uchConfig: UpdateServerGroupAttributeRequestUchConfig,
6452+ upstreamKeepaliveEnabled: 'boolean',
64476453 };
64486454 }
64496455
@@ -7029,11 +7035,13 @@ export class CreateLoadBalancerRequestTag extends $tea.Model {
70297035}
70307036
70317037export class CreateLoadBalancerRequestZoneMappings extends $tea.Model {
7038+ allocationId?: string;
70327039 intranetAddress?: string;
70337040 vSwitchId?: string;
70347041 zoneId?: string;
70357042 static names(): { [key: string]: string } {
70367043 return {
7044+ allocationId: 'AllocationId',
70377045 intranetAddress: 'IntranetAddress',
70387046 vSwitchId: 'VSwitchId',
70397047 zoneId: 'ZoneId',
@@ -7042,6 +7050,7 @@ export class CreateLoadBalancerRequestZoneMappings extends $tea.Model {
70427050
70437051 static types(): { [key: string]: any } {
70447052 return {
7053+ allocationId: 'string',
70457054 intranetAddress: 'string',
70467055 vSwitchId: 'string',
70477056 zoneId: 'string',
@@ -9177,12 +9186,14 @@ export class GetLoadBalancerAttributeResponseBodyZoneMappingsLoadBalancerAddress
91779186 address?: string;
91789187 allocationId?: string;
91799188 eipType?: string;
9189+ intranetAddress?: string;
91809190 ipv6Address?: string;
91819191 static names(): { [key: string]: string } {
91829192 return {
91839193 address: 'Address',
91849194 allocationId: 'AllocationId',
91859195 eipType: 'EipType',
9196+ intranetAddress: 'IntranetAddress',
91869197 ipv6Address: 'Ipv6Address',
91879198 };
91889199 }
@@ -9192,6 +9203,7 @@ export class GetLoadBalancerAttributeResponseBodyZoneMappingsLoadBalancerAddress
91929203 address: 'string',
91939204 allocationId: 'string',
91949205 eipType: 'string',
9206+ intranetAddress: 'string',
91959207 ipv6Address: 'string',
91969208 };
91979209 }
@@ -14258,6 +14270,10 @@ export default class Client extends OpenApi {
1425814270 query["UchConfig"] = request.uchConfig;
1425914271 }
1426014272
14273+ if (!Util.isUnset(request.upstreamKeepaliveEnabled)) {
14274+ query["UpstreamKeepaliveEnabled"] = request.upstreamKeepaliveEnabled;
14275+ }
14276+
1426114277 if (!Util.isUnset(request.vpcId)) {
1426214278 query["VpcId"] = request.vpcId;
1426314279 }
@@ -17525,6 +17541,10 @@ export default class Client extends OpenApi {
1752517541 query["UchConfig"] = request.uchConfig;
1752617542 }
1752717543
17544+ if (!Util.isUnset(request.upstreamKeepaliveEnabled)) {
17545+ query["UpstreamKeepaliveEnabled"] = request.upstreamKeepaliveEnabled;
17546+ }
17547+
1752817548 let req = new $OpenApi.OpenApiRequest({
1752917549 query: OpenApiUtil.query(query),
1753017550 });
0 commit comments