@@ -642,15 +642,15 @@ export class AddDnsGtmAddressPoolRequest extends $tea.Model {
642
642
* @remarks
643
643
* The extended information. The required parameters vary based on the value of ProtocolType.
644
644
*
645
- * * When ProtocolType is set to HTTP or HTTPS:
645
+ * * HTTP or HTTPS
646
646
*
647
647
* * port: the port that you want to check
648
648
*
649
649
* * host: the host settings
650
650
*
651
651
* * path: the URL path
652
652
*
653
- * * code: the return code. The health check result is deemed abnormal if the returned value is greater than the specified value.
653
+ * * code: the response code. The health check result is deemed abnormal if the returned value is greater than the specified value. Values: 400, 500 .
654
654
*
655
655
* * failureRate: the failure rate
656
656
*
@@ -664,7 +664,7 @@ export class AddDnsGtmAddressPoolRequest extends $tea.Model {
664
664
* * IPV4
665
665
* * IPV6
666
666
*
667
- * * When ProtocolType is set to PING:
667
+ * * PING
668
668
*
669
669
* * failureRate: the failure rate
670
670
*
@@ -677,7 +677,7 @@ export class AddDnsGtmAddressPoolRequest extends $tea.Model {
677
677
* * IPV4
678
678
* * IPV6
679
679
*
680
- * * When ProtocolType is set to TCP:
680
+ * * TCP
681
681
*
682
682
* * port: the port that you want to check
683
683
*
@@ -800,7 +800,7 @@ export class AddDnsGtmAddressPoolResponseBody extends $tea.Model {
800
800
addrPoolId?: string;
801
801
/**
802
802
* @remarks
803
- * The ID of the health check task .
803
+ * The ID of the health check configuration .
804
804
*
805
805
* @example
806
806
* test1
@@ -3774,11 +3774,13 @@ export class CreatePdnsAppKeyResponse extends $tea.Model {
3774
3774
3775
3775
export class CreatePdnsUdpIpSegmentRequest extends $tea.Model {
3776
3776
ip?: string;
3777
+ ipToken?: string;
3777
3778
lang?: string;
3778
3779
name?: string;
3779
3780
static names(): { [key: string]: string } {
3780
3781
return {
3781
3782
ip: 'Ip',
3783
+ ipToken: 'IpToken',
3782
3784
lang: 'Lang',
3783
3785
name: 'Name',
3784
3786
};
@@ -3787,6 +3789,7 @@ export class CreatePdnsUdpIpSegmentRequest extends $tea.Model {
3787
3789
static types(): { [key: string]: any } {
3788
3790
return {
3789
3791
ip: 'string',
3792
+ ipToken: 'string',
3790
3793
lang: 'string',
3791
3794
name: 'string',
3792
3795
};
@@ -29565,17 +29568,20 @@ export class ValidateDnsGtmCnameRrCanUseResponse extends $tea.Model {
29565
29568
29566
29569
export class ValidatePdnsUdpIpSegmentRequest extends $tea.Model {
29567
29570
ip?: string;
29571
+ ipToken?: string;
29568
29572
lang?: string;
29569
29573
static names(): { [key: string]: string } {
29570
29574
return {
29571
29575
ip: 'Ip',
29576
+ ipToken: 'IpToken',
29572
29577
lang: 'Lang',
29573
29578
};
29574
29579
}
29575
29580
29576
29581
static types(): { [key: string]: any } {
29577
29582
return {
29578
29583
ip: 'string',
29584
+ ipToken: 'string',
29579
29585
lang: 'string',
29580
29586
};
29581
29587
}
@@ -29792,7 +29798,7 @@ export class AddDnsGtmAddressPoolRequestAddr extends $tea.Model {
29792
29798
* @remarks
29793
29799
* The information about the source region of the address. The value of this parameter is a JSON string. Valid values:
29794
29800
*
29795
- * * LineCode : the line code of the source region for the address
29801
+ * * lineCode : the line code of the source region for the address
29796
29802
*
29797
29803
* * lineCodeRectifyType: the rectification type of the line code. Default value: AUTO. Valid values:
29798
29804
*
@@ -29808,7 +29814,7 @@ export class AddDnsGtmAddressPoolRequestAddr extends $tea.Model {
29808
29814
attributeInfo?: string;
29809
29815
/**
29810
29816
* @remarks
29811
- * The weight of the address pool .
29817
+ * The weight of the address.
29812
29818
*
29813
29819
* @example
29814
29820
* 1
@@ -29830,7 +29836,7 @@ export class AddDnsGtmAddressPoolRequestAddr extends $tea.Model {
29830
29836
mode?: string;
29831
29837
/**
29832
29838
* @remarks
29833
- * The remarks .
29839
+ * The description of the address pool .
29834
29840
*
29835
29841
* @example
29836
29842
* test
@@ -45249,6 +45255,10 @@ export default class Client extends OpenApi {
45249
45255
query["Ip"] = request.ip;
45250
45256
}
45251
45257
45258
+ if (!Util.isUnset(request.ipToken)) {
45259
+ query["IpToken"] = request.ipToken;
45260
+ }
45261
+
45252
45262
if (!Util.isUnset(request.lang)) {
45253
45263
query["Lang"] = request.lang;
45254
45264
}
@@ -55604,6 +55614,10 @@ export default class Client extends OpenApi {
55604
55614
query["Ip"] = request.ip;
55605
55615
}
55606
55616
55617
+ if (!Util.isUnset(request.ipToken)) {
55618
+ query["IpToken"] = request.ipToken;
55619
+ }
55620
+
55607
55621
if (!Util.isUnset(request.lang)) {
55608
55622
query["Lang"] = request.lang;
55609
55623
}
0 commit comments