tencentcloud-sdk-nodejs-vpc 4.0.537 → 4.0.539

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -22,7 +22,7 @@ export interface CreateNetworkAclResponse {
22
22
  /**
23
23
  * 网络ACL实例。
24
24
  */
25
- NetworkAcl: NetworkAcl
25
+ NetworkAcl?: NetworkAcl
26
26
 
27
27
  /**
28
28
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -157,12 +157,12 @@ export interface DescribeHaVipsResponse {
157
157
  /**
158
158
  * 符合条件的对象数。
159
159
  */
160
- TotalCount: number
160
+ TotalCount?: number
161
161
 
162
162
  /**
163
163
  * `HAVIP`对象数组。
164
164
  */
165
- HaVipSet: Array<HaVip>
165
+ HaVipSet?: Array<HaVip>
166
166
 
167
167
  /**
168
168
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -230,7 +230,7 @@ export interface DeleteServiceTemplateResponse {
230
230
  */
231
231
  export interface CreateServiceTemplateRequest {
232
232
  /**
233
- * 协议端口模板名称
233
+ * 协议端口模板名称。
234
234
  */
235
235
  ServiceTemplateName: string
236
236
 
@@ -401,14 +401,19 @@ export interface DescribeVpcIpv6AddressesRequest {
401
401
  Ipv6Addresses?: Array<string>
402
402
 
403
403
  /**
404
- * 偏移量。
404
+ * 偏移量,默认为0。
405
405
  */
406
406
  Offset?: number
407
407
 
408
408
  /**
409
- * 返回数量。
409
+ * 返回数量,默认为20,最大值为100。
410
410
  */
411
411
  Limit?: number
412
+
413
+ /**
414
+ * VPC下的子网ID。
415
+ */
416
+ SubnetId?: string
412
417
  }
413
418
 
414
419
  /**
@@ -659,9 +664,9 @@ export interface ServiceTemplateGroup {
659
664
  */
660
665
  export interface CreateDhcpIpResponse {
661
666
  /**
662
- * 新创建的`DhcpIp`信息
667
+ * 新创建的`DhcpIp`信息。
663
668
  */
664
- DhcpIpSet: Array<DhcpIp>
669
+ DhcpIpSet?: Array<DhcpIp>
665
670
 
666
671
  /**
667
672
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -1084,7 +1089,7 @@ export interface CreateVpcResponse {
1084
1089
  /**
1085
1090
  * Vpc对象。
1086
1091
  */
1087
- Vpc: Vpc
1092
+ Vpc?: Vpc
1088
1093
 
1089
1094
  /**
1090
1095
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -1860,26 +1865,6 @@ export interface CheckNetDetectStateRequest {
1860
1865
  */
1861
1866
  DetectDestinationIp: Array<string>
1862
1867
 
1863
- /**
1864
- * 下一跳类型,目前我们支持的类型有:
1865
- VPN:VPN网关;
1866
- DIRECTCONNECT:专线网关;
1867
- PEERCONNECTION:对等连接;
1868
- NAT:NAT网关;
1869
- NORMAL_CVM:普通云服务器;
1870
- */
1871
- NextHopType: string
1872
-
1873
- /**
1874
- * 下一跳目的网关,取值与“下一跳类型”相关:
1875
- 下一跳类型为VPN,取值VPN网关ID,形如:vpngw-12345678;
1876
- 下一跳类型为DIRECTCONNECT,取值专线网关ID,形如:dcg-12345678;
1877
- 下一跳类型为PEERCONNECTION,取值对等连接ID,形如:pcx-12345678;
1878
- 下一跳类型为NAT,取值Nat网关,形如:nat-12345678;
1879
- 下一跳类型为NORMAL_CVM,取值云服务器IPv4地址,形如:10.0.0.12;
1880
- */
1881
- NextHopDestination: string
1882
-
1883
1868
  /**
1884
1869
  * 网络探测实例ID。形如:netd-12345678。该参数与(VpcId,SubnetId,NetDetectName),至少要有一个。当NetDetectId存在时,使用NetDetectId。
1885
1870
  */
@@ -1899,6 +1884,30 @@ NORMAL_CVM:普通云服务器;
1899
1884
  * 网络探测名称,最大长度不能超过60个字节。该参数与(VpcId,SubnetId)配合使用,与NetDetectId至少要有一个。当NetDetectId存在时,使用NetDetectId。
1900
1885
  */
1901
1886
  NetDetectName?: string
1887
+
1888
+ /**
1889
+ * 下一跳类型,目前我们支持的类型有:
1890
+ VPN:VPN网关;
1891
+ DIRECTCONNECT:专线网关;
1892
+ PEERCONNECTION:对等连接;
1893
+ NAT:NAT网关;
1894
+ NORMAL_CVM:普通云服务器;
1895
+ CCN:云联网网关;
1896
+ NONEXTHOP:无下一跳;
1897
+ */
1898
+ NextHopType?: string
1899
+
1900
+ /**
1901
+ * 下一跳目的网关,取值与“下一跳类型”相关:
1902
+ 下一跳类型为VPN,取值VPN网关ID,形如:vpngw-12345678;
1903
+ 下一跳类型为DIRECTCONNECT,取值专线网关ID,形如:dcg-12345678;
1904
+ 下一跳类型为PEERCONNECTION,取值对等连接ID,形如:pcx-12345678;
1905
+ 下一跳类型为NAT,取值Nat网关,形如:nat-12345678;
1906
+ 下一跳类型为NORMAL_CVM,取值云服务器IPv4地址,形如:10.0.0.12;
1907
+ 下一跳类型为CCN,取值云联网ID,形如:ccn-12345678;
1908
+ 下一跳类型为NONEXTHOP,指定网络探测为无下一跳的网络探测;
1909
+ */
1910
+ NextHopDestination?: string
1902
1911
  }
1903
1912
 
1904
1913
  /**
@@ -2348,7 +2357,7 @@ export interface DescribeVpcsRequest {
2348
2357
  */
2349
2358
  export interface DescribeRouteConflictsResponse {
2350
2359
  /**
2351
- * 路由策略冲突列表
2360
+ * 路由策略冲突列表。
2352
2361
  */
2353
2362
  RouteConflictSet?: Array<RouteConflict>
2354
2363
 
@@ -2662,12 +2671,12 @@ export interface ModifyVpnGatewayRoutesRequest {
2662
2671
  */
2663
2672
  export interface HaVipAssociateAddressIpRequest {
2664
2673
  /**
2665
- * `HAVIP`唯一`ID`,形如:`havip-9o233uri`。必须是没有绑定`EIP`的`HAVIP`
2674
+ * `HAVIP`唯一`ID`,形如:`havip-9o233uri`。必须是没有绑定`EIP`的`HAVIP`。
2666
2675
  */
2667
2676
  HaVipId: string
2668
2677
 
2669
2678
  /**
2670
- * 弹性公网`IP`。必须是没有绑定`HAVIP`的`EIP`
2679
+ * 弹性公网`IP`。必须是没有绑定`HAVIP`的`EIP`。
2671
2680
  */
2672
2681
  AddressIp: string
2673
2682
  }
@@ -2815,7 +2824,7 @@ export interface ModifyAssistantCidrResponse {
2815
2824
  * 辅助CIDR数组。
2816
2825
  注意:此字段可能返回 null,表示取不到有效值。
2817
2826
  */
2818
- AssistantCidrSet: Array<AssistantCidr>
2827
+ AssistantCidrSet?: Array<AssistantCidr>
2819
2828
 
2820
2829
  /**
2821
2830
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -2989,7 +2998,7 @@ export interface AddIp6RulesRequest {
2989
2998
  */
2990
2999
  export interface DescribeAccountAttributesResponse {
2991
3000
  /**
2992
- * 用户账号属性对象
3001
+ * 用户账号属性对象。
2993
3002
  */
2994
3003
  AccountAttributeSet?: Array<AccountAttribute>
2995
3004
 
@@ -3227,17 +3236,17 @@ export interface DisableVpnGatewaySslClientCertResponse {
3227
3236
  */
3228
3237
  export interface CreateLocalGatewayRequest {
3229
3238
  /**
3230
- * 本地网关名称
3239
+ * 本地网关名称。
3231
3240
  */
3232
3241
  LocalGatewayName: string
3233
3242
 
3234
3243
  /**
3235
- * VPC实例ID
3244
+ * VPC实例ID
3236
3245
  */
3237
3246
  VpcId: string
3238
3247
 
3239
3248
  /**
3240
- * CDC实例ID
3249
+ * CDC实例ID
3241
3250
  */
3242
3251
  CdcId: string
3243
3252
  }
@@ -3372,6 +3381,11 @@ export interface ModifyCcnAttachedInstancesAttributeRequest {
3372
3381
  Instances: Array<CcnInstance>
3373
3382
  }
3374
3383
 
3384
+ /**
3385
+ * DescribeNetworkAccountType请求参数结构体
3386
+ */
3387
+ export type DescribeNetworkAccountTypeRequest = null
3388
+
3375
3389
  /**
3376
3390
  * DeleteAddressTemplate请求参数结构体
3377
3391
  */
@@ -4908,7 +4922,7 @@ export interface AssociateNetworkAclSubnetsRequest {
4908
4922
  NetworkAclId: string
4909
4923
 
4910
4924
  /**
4911
- * 子网实例ID数组。例如:[subnet-12345678]
4925
+ * 子网实例ID数组。例如:[subnet-12345678]
4912
4926
  */
4913
4927
  SubnetIds: Array<string>
4914
4928
  }
@@ -5118,7 +5132,7 @@ export interface CreateSubnetResponse {
5118
5132
  /**
5119
5133
  * 子网对象。
5120
5134
  */
5121
- Subnet: Subnet
5135
+ Subnet?: Subnet
5122
5136
 
5123
5137
  /**
5124
5138
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -5619,7 +5633,7 @@ export interface CreateSubnetsResponse {
5619
5633
  /**
5620
5634
  * 新创建的子网列表。
5621
5635
  */
5622
- SubnetSet: Array<Subnet>
5636
+ SubnetSet?: Array<Subnet>
5623
5637
 
5624
5638
  /**
5625
5639
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -5657,12 +5671,12 @@ export interface DescribeGatewayFlowMonitorDetailRequest {
5657
5671
  NatId?: string
5658
5672
 
5659
5673
  /**
5660
- * 偏移量。
5674
+ * 偏移量,默认为0。
5661
5675
  */
5662
5676
  Offset?: number
5663
5677
 
5664
5678
  /**
5665
- * 返回数量。
5679
+ * 返回数量,默认为20,最大值为100。
5666
5680
  */
5667
5681
  Limit?: number
5668
5682
 
@@ -5976,7 +5990,7 @@ export interface AssignIpv6AddressesRequest {
5976
5990
  Ipv6Addresses?: Array<Ipv6Address>
5977
5991
 
5978
5992
  /**
5979
- * 自动分配`IPv6`地址个数,内网IP地址个数总和不能超过配数。与入参`Ipv6Addresses`合并计算配额。与Ipv6Addresses必填一个。
5993
+ * 自动分配`IPv6`地址个数,内网IP地址个数总和不能超过配额数。与入参`Ipv6Addresses`合并计算配额。与Ipv6Addresses必填一个。
5980
5994
  */
5981
5995
  Ipv6AddressCount?: number
5982
5996
  }
@@ -6573,7 +6587,7 @@ export interface CreateVpnGatewaySslClientResponse {
6573
6587
  */
6574
6588
  export interface DescribeNetworkInterfaceLimitRequest {
6575
6589
  /**
6576
- * 要查询的CVM实例ID或弹性网卡ID
6590
+ * 要查询的CVM实例ID或弹性网卡ID
6577
6591
  */
6578
6592
  InstanceId: string
6579
6593
  }
@@ -6750,7 +6764,7 @@ export interface ModifyIp6AddressesBandwidthResponse {
6750
6764
  */
6751
6765
  export interface CreateSubnetsRequest {
6752
6766
  /**
6753
- * `VPC`实例`ID`。形如:`vpc-6v2ht8q5`
6767
+ * `VPC`实例`ID`。形如:`vpc-6v2ht8q5`。
6754
6768
  */
6755
6769
  VpcId: string
6756
6770
 
@@ -6760,7 +6774,7 @@ export interface CreateSubnetsRequest {
6760
6774
  Subnets: Array<SubnetInput>
6761
6775
 
6762
6776
  /**
6763
- * 指定绑定的标签列表,注意这里的标签集合为列表中所有子网对象所共享,不能为每个子网对象单独指定标签,例如:[{"Key": "city", "Value": "shanghai"}]
6777
+ * 指定绑定的标签列表,注意这里的标签集合为列表中所有子网对象所共享,不能为每个子网对象单独指定标签,例如:[{"Key": "city", "Value": "shanghai"}]
6764
6778
  */
6765
6779
  Tags?: Array<Tag>
6766
6780
 
@@ -6903,7 +6917,7 @@ export interface CreateNetworkAclRequest {
6903
6917
  NetworkAclName: string
6904
6918
 
6905
6919
  /**
6906
- * 网络ACL类型,三元组(TRIPLE)或五元组(QUINTUPLE)
6920
+ * 网络ACL类型,三元组(TRIPLE)或五元组(QUINTUPLE)
6907
6921
  */
6908
6922
  NetworkAclType?: string
6909
6923
 
@@ -7036,38 +7050,38 @@ export interface DescribeVpcsResponse {
7036
7050
  */
7037
7051
  export interface DescribeNetworkInterfaceLimitResponse {
7038
7052
  /**
7039
- * 标准型弹性网卡配额
7053
+ * 标准型弹性网卡配额。
7040
7054
  */
7041
- EniQuantity: number
7055
+ EniQuantity?: number
7042
7056
 
7043
7057
  /**
7044
- * 每个标准型弹性网卡可以分配的IP配额
7058
+ * 每个标准型弹性网卡可以分配的IP配额。
7045
7059
  */
7046
- EniPrivateIpAddressQuantity: number
7060
+ EniPrivateIpAddressQuantity?: number
7047
7061
 
7048
7062
  /**
7049
- * 扩展型网卡配额
7063
+ * 扩展型网卡配额。
7050
7064
  注意:此字段可能返回 null,表示取不到有效值。
7051
7065
  */
7052
- ExtendEniQuantity: number
7066
+ ExtendEniQuantity?: number
7053
7067
 
7054
7068
  /**
7055
- * 每个扩展型弹性网卡可以分配的IP配额
7069
+ * 每个扩展型弹性网卡可以分配的IP配额。
7056
7070
  注意:此字段可能返回 null,表示取不到有效值。
7057
7071
  */
7058
- ExtendEniPrivateIpAddressQuantity: number
7072
+ ExtendEniPrivateIpAddressQuantity?: number
7059
7073
 
7060
7074
  /**
7061
- * 中继网卡配额
7075
+ * 中继网卡配额。
7062
7076
  注意:此字段可能返回 null,表示取不到有效值。
7063
7077
  */
7064
- SubEniQuantity: number
7078
+ SubEniQuantity?: number
7065
7079
 
7066
7080
  /**
7067
- * 每个中继网卡可以分配的IP配额
7081
+ * 每个中继网卡可以分配的IP配额。
7068
7082
  注意:此字段可能返回 null,表示取不到有效值。
7069
7083
  */
7070
- SubEniPrivateIpAddressQuantity: number
7084
+ SubEniPrivateIpAddressQuantity?: number
7071
7085
 
7072
7086
  /**
7073
7087
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -7080,7 +7094,7 @@ export interface DescribeNetworkInterfaceLimitResponse {
7080
7094
  */
7081
7095
  export interface AssignIpv6CidrBlockResponse {
7082
7096
  /**
7083
- * 分配的 `IPv6` 网段。形如:`3402:4e00:20:1000::/56`
7097
+ * 分配的 `IPv6` 网段。形如:`3402:4e00:20:1000::/56`。
7084
7098
  */
7085
7099
  Ipv6CidrBlock?: string
7086
7100
 
@@ -7658,14 +7672,14 @@ NAT类型支持网络地址转换配置,类型确定后不能修改;一个
7658
7672
  */
7659
7673
  export interface DescribeProductQuotaResponse {
7660
7674
  /**
7661
- * ProductQuota对象数组
7675
+ * ProductQuota对象数组。
7662
7676
  */
7663
- ProductQuotaSet: Array<ProductQuota>
7677
+ ProductQuotaSet?: Array<ProductQuota>
7664
7678
 
7665
7679
  /**
7666
- * 符合条件的产品类型个数
7680
+ * 符合条件的产品类型个数。
7667
7681
  */
7668
- TotalCount: number
7682
+ TotalCount?: number
7669
7683
 
7670
7684
  /**
7671
7685
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -7890,7 +7904,7 @@ export interface DisassociateDirectConnectGatewayNatGatewayResponse {
7890
7904
  */
7891
7905
  export interface CreateServiceTemplateGroupRequest {
7892
7906
  /**
7893
- * 协议端口模板集合名称
7907
+ * 协议端口模板集合名称。
7894
7908
  */
7895
7909
  ServiceTemplateGroupName: string
7896
7910
 
@@ -7922,12 +7936,12 @@ export interface DescribeClassicLinkInstancesResponse {
7922
7936
  /**
7923
7937
  * 符合条件的实例数量。
7924
7938
  */
7925
- TotalCount: number
7939
+ TotalCount?: number
7926
7940
 
7927
7941
  /**
7928
7942
  * 私有网络和基础网络互通设备。
7929
7943
  */
7930
- ClassicLinkInstanceSet: Array<ClassicLinkInstance>
7944
+ ClassicLinkInstanceSet?: Array<ClassicLinkInstance>
7931
7945
 
7932
7946
  /**
7933
7947
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -8180,6 +8194,21 @@ export interface SecurityPolicyDatabase {
8180
8194
  RemoteCidrBlock: Array<string>
8181
8195
  }
8182
8196
 
8197
+ /**
8198
+ * DescribeNetworkAccountType返回参数结构体
8199
+ */
8200
+ export interface DescribeNetworkAccountTypeResponse {
8201
+ /**
8202
+ * 用户账号的网络类型,STANDARD为标准用户,LEGACY为传统用户
8203
+ */
8204
+ NetworkAccountType?: string
8205
+
8206
+ /**
8207
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
8208
+ */
8209
+ RequestId?: string
8210
+ }
8211
+
8183
8212
  /**
8184
8213
  * ResetVpnConnection返回参数结构体
8185
8214
  */
@@ -9254,7 +9283,7 @@ export interface CrossBorderCompliance {
9254
9283
  */
9255
9284
  export interface ModifyAssistantCidrRequest {
9256
9285
  /**
9257
- * `VPC`实例`ID`。形如:`vpc-6v2ht8q5`
9286
+ * `VPC`实例`ID`。形如:`vpc-6v2ht8q5`。
9258
9287
  */
9259
9288
  VpcId: string
9260
9289
 
@@ -9668,14 +9697,14 @@ export interface CcnInstance {
9668
9697
  */
9669
9698
  export interface DescribeLocalGatewayResponse {
9670
9699
  /**
9671
- * 本地网关信息集合
9700
+ * 本地网关信息集合。
9672
9701
  */
9673
- LocalGatewaySet: Array<LocalGateway>
9702
+ LocalGatewaySet?: Array<LocalGateway>
9674
9703
 
9675
9704
  /**
9676
- * 本地网关总数
9705
+ * 本地网关总数。
9677
9706
  */
9678
- TotalCount: number
9707
+ TotalCount?: number
9679
9708
 
9680
9709
  /**
9681
9710
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -9780,7 +9809,7 @@ export interface CreateVpcEndPointResponse {
9780
9809
  /**
9781
9810
  * 终端节点对象详细信息。
9782
9811
  */
9783
- EndPoint: EndPoint
9812
+ EndPoint?: EndPoint
9784
9813
 
9785
9814
  /**
9786
9815
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -9935,7 +9964,7 @@ export interface ModifyIpv6AddressesAttributeRequest {
9935
9964
  NetworkInterfaceId: string
9936
9965
 
9937
9966
  /**
9938
- * 指定的内网IPv6`地址信息。
9967
+ * 指定的内网IPv6地址信息。
9939
9968
  */
9940
9969
  Ipv6Addresses: Array<Ipv6Address>
9941
9970
  }
@@ -9988,17 +10017,17 @@ export interface DetachSnapshotInstancesRequest {
9988
10017
  */
9989
10018
  export interface DeleteLocalGatewayRequest {
9990
10019
  /**
9991
- * 本地网关实例ID
10020
+ * 本地网关实例ID
9992
10021
  */
9993
10022
  LocalGatewayId: string
9994
10023
 
9995
10024
  /**
9996
- * CDC实例ID
10025
+ * CDC实例ID
9997
10026
  */
9998
10027
  CdcId: string
9999
10028
 
10000
10029
  /**
10001
- * VPC实例ID
10030
+ * VPC实例ID
10002
10031
  */
10003
10032
  VpcId?: string
10004
10033
  }
@@ -10513,7 +10542,7 @@ export interface CreateHaVipResponse {
10513
10542
  */
10514
10543
  export interface DescribeSecurityGroupReferencesRequest {
10515
10544
  /**
10516
- * 安全组实例ID数组。格式如:['sg-12345678']
10545
+ * 安全组实例ID数组。格式如:['sg-12345678']
10517
10546
  */
10518
10547
  SecurityGroupIds: Array<string>
10519
10548
  }
@@ -10921,12 +10950,12 @@ export interface DhcpIp {
10921
10950
  */
10922
10951
  export interface DeleteAssistantCidrRequest {
10923
10952
  /**
10924
- * `VPC`实例`ID`。形如:`vpc-6v2ht8q5`
10953
+ * `VPC`实例`ID`。形如:`vpc-6v2ht8q5`。
10925
10954
  */
10926
10955
  VpcId: string
10927
10956
 
10928
10957
  /**
10929
- * CIDR数组,格式如["10.0.0.0/16", "172.16.0.0/16"]
10958
+ * CIDR数组,格式如["10.0.0.0/16", "172.16.0.0/16"]
10930
10959
  */
10931
10960
  CidrBlocks: Array<string>
10932
10961
  }
@@ -11292,7 +11321,7 @@ export interface CreateVpcEndPointServiceResponse {
11292
11321
  /**
11293
11322
  * 终端节点服务对象详细信息。
11294
11323
  */
11295
- EndPointService: EndPointService
11324
+ EndPointService?: EndPointService
11296
11325
 
11297
11326
  /**
11298
11327
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -11356,13 +11385,15 @@ export interface DescribeHaVipsRequest {
11356
11385
  Filters?: Array<Filter>
11357
11386
 
11358
11387
  /**
11359
- * 偏移量
11360
- */
11388
+ * 偏移量,默认为0。
11389
+
11390
+ */
11361
11391
  Offset?: number
11362
11392
 
11363
11393
  /**
11364
- * 返回数量
11365
- */
11394
+ * 返回数量,默认为20,最大值为100。
11395
+
11396
+ */
11366
11397
  Limit?: number
11367
11398
  }
11368
11399
 
@@ -11797,12 +11828,12 @@ export interface ModifyVpcAttributeRequest {
11797
11828
  EnableMulticast?: string
11798
11829
 
11799
11830
  /**
11800
- * DNS地址,最多支持4个,第1个默认为主,其余为备
11831
+ * DNS地址,最多支持4个,第1个默认为主,其余为备。
11801
11832
  */
11802
11833
  DnsServers?: Array<string>
11803
11834
 
11804
11835
  /**
11805
- * 域名
11836
+ * 域名。
11806
11837
  */
11807
11838
  DomainName?: string
11808
11839
  }
@@ -11930,7 +11961,7 @@ export interface CreateAddressTemplateGroupResponse {
11930
11961
  /**
11931
11962
  * IP地址模板集合对象。
11932
11963
  */
11933
- AddressTemplateGroup: AddressTemplateGroup
11964
+ AddressTemplateGroup?: AddressTemplateGroup
11934
11965
 
11935
11966
  /**
11936
11967
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -12078,7 +12109,7 @@ export interface DisassociateNetworkAclSubnetsRequest {
12078
12109
  NetworkAclId: string
12079
12110
 
12080
12111
  /**
12081
- * 子网实例ID数组。例如:[subnet-12345678]
12112
+ * 子网实例ID数组。例如:[subnet-12345678]
12082
12113
  */
12083
12114
  SubnetIds: Array<string>
12084
12115
  }
@@ -12143,7 +12174,7 @@ export interface UnassignIpv6CidrBlockRequest {
12143
12174
  VpcId: string
12144
12175
 
12145
12176
  /**
12146
- * `IPv6`网段。形如:`3402:4e00:20:1000::/56`
12177
+ * `IPv6`网段。形如:`3402:4e00:20:1000::/56`。
12147
12178
  */
12148
12179
  Ipv6CidrBlock?: string
12149
12180
  }
@@ -12381,12 +12412,12 @@ export interface CheckAssistantCidrRequest {
12381
12412
  VpcId: string
12382
12413
 
12383
12414
  /**
12384
- * 待添加的负载CIDR。CIDR数组,格式如["10.0.0.0/16", "172.16.0.0/16"]。入参NewCidrBlocks和OldCidrBlocks至少需要其一。
12415
+ * 待添加的辅助CIDR。CIDR数组,格式如["10.0.0.0/16", "172.16.0.0/16"]。入参NewCidrBlocks和OldCidrBlocks至少需要其一。
12385
12416
  */
12386
12417
  NewCidrBlocks?: Array<string>
12387
12418
 
12388
12419
  /**
12389
- * 待删除的负载CIDR。CIDR数组,格式如["10.0.0.0/16", "172.16.0.0/16"]。入参NewCidrBlocks和OldCidrBlocks至少需要其一。
12420
+ * 待删除的辅助CIDR。CIDR数组,格式如["10.0.0.0/16", "172.16.0.0/16"]。入参NewCidrBlocks和OldCidrBlocks至少需要其一。
12390
12421
  */
12391
12422
  OldCidrBlocks?: Array<string>
12392
12423
  }
@@ -12508,7 +12539,7 @@ export interface CheckAssistantCidrResponse {
12508
12539
  /**
12509
12540
  * 冲突资源信息数组。
12510
12541
  */
12511
- ConflictSourceSet: Array<ConflictSource>
12542
+ ConflictSourceSet?: Array<ConflictSource>
12512
12543
 
12513
12544
  /**
12514
12545
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -12651,7 +12682,7 @@ export interface CheckNetDetectStateResponse {
12651
12682
  /**
12652
12683
  * 网络探测验证结果对象数组。
12653
12684
  */
12654
- NetDetectIpStateSet: Array<NetDetectIpState>
12685
+ NetDetectIpStateSet?: Array<NetDetectIpState>
12655
12686
 
12656
12687
  /**
12657
12688
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -12934,22 +12965,22 @@ export interface ModifyNetworkInterfaceQosRequest {
12934
12965
  */
12935
12966
  export interface ModifyLocalGatewayRequest {
12936
12967
  /**
12937
- * 本地网关名称
12968
+ * 本地网关名称。
12938
12969
  */
12939
12970
  LocalGatewayName: string
12940
12971
 
12941
12972
  /**
12942
- * CDC实例ID
12973
+ * CDC实例ID
12943
12974
  */
12944
12975
  CdcId: string
12945
12976
 
12946
12977
  /**
12947
- * 本地网关实例ID
12978
+ * 本地网关实例ID
12948
12979
  */
12949
12980
  LocalGatewayId: string
12950
12981
 
12951
12982
  /**
12952
- * VPC实例ID
12983
+ * VPC实例ID
12953
12984
  */
12954
12985
  VpcId?: string
12955
12986
  }
@@ -12999,9 +13030,9 @@ export interface DeleteHaVipRequest {
12999
13030
  */
13000
13031
  export interface CreateLocalGatewayResponse {
13001
13032
  /**
13002
- * 本地网关信息
13033
+ * 本地网关信息。
13003
13034
  */
13004
- LocalGateway: LocalGateway
13035
+ LocalGateway?: LocalGateway
13005
13036
 
13006
13037
  /**
13007
13038
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -13208,12 +13239,12 @@ export interface DescribeVpcInstancesRequest {
13208
13239
  Filters: Array<Filter>
13209
13240
 
13210
13241
  /**
13211
- * 偏移量。
13242
+ * 偏移量,默认为0。
13212
13243
  */
13213
13244
  Offset?: number
13214
13245
 
13215
13246
  /**
13216
- * 请求对象个数。
13247
+ * 返回数量,默认为20,最大值为100。
13217
13248
  */
13218
13249
  Limit?: number
13219
13250
  }
@@ -13235,12 +13266,12 @@ export interface DescribeServiceTemplatesResponse {
13235
13266
  /**
13236
13267
  * 符合条件的实例数量。
13237
13268
  */
13238
- TotalCount: number
13269
+ TotalCount?: number
13239
13270
 
13240
13271
  /**
13241
13272
  * 协议端口模板对象。
13242
13273
  */
13243
- ServiceTemplateSet: Array<ServiceTemplate>
13274
+ ServiceTemplateSet?: Array<ServiceTemplate>
13244
13275
 
13245
13276
  /**
13246
13277
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -13535,7 +13566,7 @@ export interface AssignIpv6AddressesResponse {
13535
13566
  /**
13536
13567
  * 分配给弹性网卡的`IPv6`地址列表。
13537
13568
  */
13538
- Ipv6AddressSet: Array<Ipv6Address>
13569
+ Ipv6AddressSet?: Array<Ipv6Address>
13539
13570
 
13540
13571
  /**
13541
13572
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -13865,7 +13896,7 @@ export interface DescribeRouteConflictsRequest {
13865
13896
  RouteTableId: string
13866
13897
 
13867
13898
  /**
13868
- * 要检查的与之冲突的目的端列表
13899
+ * 要检查的与之冲突的目的端列表。
13869
13900
  */
13870
13901
  DestinationCidrBlocks: Array<string>
13871
13902
  }
@@ -14725,12 +14756,12 @@ export interface DescribeClassicLinkInstancesRequest {
14725
14756
  Filters?: Array<FilterObject>
14726
14757
 
14727
14758
  /**
14728
- * 偏移量
14759
+ * 偏移量,默认值0。
14729
14760
  */
14730
14761
  Offset?: string
14731
14762
 
14732
14763
  /**
14733
- * 返回数量
14764
+ * 返回数量,默认为20,最大值为100。
14734
14765
  */
14735
14766
  Limit?: string
14736
14767
  }
@@ -14757,7 +14788,7 @@ export interface CreateServiceTemplateResponse {
14757
14788
  /**
14758
14789
  * 协议端口模板对象。
14759
14790
  */
14760
- ServiceTemplate: ServiceTemplate
14791
+ ServiceTemplate?: ServiceTemplate
14761
14792
 
14762
14793
  /**
14763
14794
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -14833,7 +14864,7 @@ export interface CreateAssistantCidrResponse {
14833
14864
  * 辅助CIDR数组。
14834
14865
  注意:此字段可能返回 null,表示取不到有效值。
14835
14866
  */
14836
- AssistantCidrSet: Array<AssistantCidr>
14867
+ AssistantCidrSet?: Array<AssistantCidr>
14837
14868
 
14838
14869
  /**
14839
14870
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -14924,7 +14955,7 @@ export interface CreateDhcpIpRequest {
14924
14955
  DhcpIpName: string
14925
14956
 
14926
14957
  /**
14927
- * 新申请的内网IP地址个数。总数不能超过64个。
14958
+ * 新申请的内网IP地址个数。总数不能超过64个,为了兼容性,当前参数必填。
14928
14959
  */
14929
14960
  SecondaryPrivateIpAddressCount?: number
14930
14961
  }
@@ -14966,12 +14997,12 @@ export interface DescribeAddressTemplatesResponse {
14966
14997
  /**
14967
14998
  * 符合条件的实例数量。
14968
14999
  */
14969
- TotalCount: number
15000
+ TotalCount?: number
14970
15001
 
14971
15002
  /**
14972
15003
  * IP地址模板。
14973
15004
  */
14974
- AddressTemplateSet: Array<AddressTemplate>
15005
+ AddressTemplateSet?: Array<AddressTemplate>
14975
15006
 
14976
15007
  /**
14977
15008
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -15369,12 +15400,12 @@ export interface DescribeVpcEndPointServiceWhiteListResponse {
15369
15400
  /**
15370
15401
  * 白名单对象数组。
15371
15402
  */
15372
- VpcEndpointServiceUserSet: Array<VpcEndPointServiceUser>
15403
+ VpcEndpointServiceUserSet?: Array<VpcEndPointServiceUser>
15373
15404
 
15374
15405
  /**
15375
15406
  * 符合条件的白名单个数。
15376
15407
  */
15377
- TotalCount: number
15408
+ TotalCount?: number
15378
15409
 
15379
15410
  /**
15380
15411
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。