tencentcloud-sdk-nodejs-vpc 4.0.536 → 4.0.538

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。
@@ -2918,7 +2927,24 @@ export interface DescribeFlowLogRequest {
2918
2927
  /**
2919
2928
  * DescribeTenantCcns请求参数结构体
2920
2929
  */
2921
- export type DescribeTenantCcnsRequest = null
2930
+ export interface DescribeTenantCcnsRequest {
2931
+ /**
2932
+ * 过滤条件,目前`value`值个数只支持一个,允许可支持的字段有:
2933
+ <li>`ccn-ids` 云联网ID数组,值形如:`["ccn-12345678"]`</li>
2934
+ <li>`user-account-id` 用户账号ID,值形如:`["12345678"]`</li><li>`is-security-lock` 是否锁定,值形如:`["true"]`</li>
2935
+ */
2936
+ Filters?: Array<Filter>
2937
+
2938
+ /**
2939
+ * 偏移量,默认0。
2940
+ */
2941
+ Offset?: number
2942
+
2943
+ /**
2944
+ * 单页返回数据量,可选值0到100之间的整数,默认20。
2945
+ */
2946
+ Limit?: number
2947
+ }
2922
2948
 
2923
2949
  /**
2924
2950
  * DescribeIp6Addresses请求参数结构体
@@ -2972,7 +2998,7 @@ export interface AddIp6RulesRequest {
2972
2998
  */
2973
2999
  export interface DescribeAccountAttributesResponse {
2974
3000
  /**
2975
- * 用户账号属性对象
3001
+ * 用户账号属性对象。
2976
3002
  */
2977
3003
  AccountAttributeSet?: Array<AccountAttribute>
2978
3004
 
@@ -3130,7 +3156,7 @@ export interface DisassociateNetworkAclSubnetsResponse {
3130
3156
  */
3131
3157
  export interface SetCcnRegionBandwidthLimitsRequest {
3132
3158
  /**
3133
- * CCN实例ID。形如:ccn-f49l6u0z。
3159
+ * CCN实例ID,形如:ccn-f49l6u0z。
3134
3160
  */
3135
3161
  CcnId: string
3136
3162
 
@@ -3210,17 +3236,17 @@ export interface DisableVpnGatewaySslClientCertResponse {
3210
3236
  */
3211
3237
  export interface CreateLocalGatewayRequest {
3212
3238
  /**
3213
- * 本地网关名称
3239
+ * 本地网关名称。
3214
3240
  */
3215
3241
  LocalGatewayName: string
3216
3242
 
3217
3243
  /**
3218
- * VPC实例ID
3244
+ * VPC实例ID
3219
3245
  */
3220
3246
  VpcId: string
3221
3247
 
3222
3248
  /**
3223
- * CDC实例ID
3249
+ * CDC实例ID
3224
3250
  */
3225
3251
  CdcId: string
3226
3252
  }
@@ -3355,6 +3381,11 @@ export interface ModifyCcnAttachedInstancesAttributeRequest {
3355
3381
  Instances: Array<CcnInstance>
3356
3382
  }
3357
3383
 
3384
+ /**
3385
+ * DescribeNetworkAccountType请求参数结构体
3386
+ */
3387
+ export type DescribeNetworkAccountTypeRequest = null
3388
+
3358
3389
  /**
3359
3390
  * DeleteAddressTemplate请求参数结构体
3360
3391
  */
@@ -4691,6 +4722,31 @@ export interface FlowLogStorage {
4691
4722
  StorageTopic?: string
4692
4723
  }
4693
4724
 
4725
+ /**
4726
+ * AllocateIp6AddressesBandwidth请求参数结构体
4727
+ */
4728
+ export interface AllocateIp6AddressesBandwidthRequest {
4729
+ /**
4730
+ * 需要开通公网访问能力的IPV6地址
4731
+ */
4732
+ Ip6Addresses: Array<string>
4733
+
4734
+ /**
4735
+ * 带宽,单位Mbps。默认是1Mbps
4736
+ */
4737
+ InternetMaxBandwidthOut?: number
4738
+
4739
+ /**
4740
+ * 网络计费模式。IPV6当前对标准账户类型支持"TRAFFIC_POSTPAID_BY_HOUR",对传统账户类型支持"BANDWIDTH_PACKAGE"。默认网络计费模式是"TRAFFIC_POSTPAID_BY_HOUR"。
4741
+ */
4742
+ InternetChargeType?: string
4743
+
4744
+ /**
4745
+ * 带宽包id,上移账号,申请带宽包计费模式的ipv6地址需要传入.
4746
+ */
4747
+ BandwidthPackageId?: string
4748
+ }
4749
+
4694
4750
  /**
4695
4751
  * DescribeVpcIpv6Addresses返回参数结构体
4696
4752
  */
@@ -4866,7 +4922,7 @@ export interface AssociateNetworkAclSubnetsRequest {
4866
4922
  NetworkAclId: string
4867
4923
 
4868
4924
  /**
4869
- * 子网实例ID数组。例如:[subnet-12345678]
4925
+ * 子网实例ID数组。例如:[subnet-12345678]
4870
4926
  */
4871
4927
  SubnetIds: Array<string>
4872
4928
  }
@@ -5076,7 +5132,7 @@ export interface CreateSubnetResponse {
5076
5132
  /**
5077
5133
  * 子网对象。
5078
5134
  */
5079
- Subnet: Subnet
5135
+ Subnet?: Subnet
5080
5136
 
5081
5137
  /**
5082
5138
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -5577,7 +5633,7 @@ export interface CreateSubnetsResponse {
5577
5633
  /**
5578
5634
  * 新创建的子网列表。
5579
5635
  */
5580
- SubnetSet: Array<Subnet>
5636
+ SubnetSet?: Array<Subnet>
5581
5637
 
5582
5638
  /**
5583
5639
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -5615,12 +5671,12 @@ export interface DescribeGatewayFlowMonitorDetailRequest {
5615
5671
  NatId?: string
5616
5672
 
5617
5673
  /**
5618
- * 偏移量。
5674
+ * 偏移量,默认为0。
5619
5675
  */
5620
5676
  Offset?: number
5621
5677
 
5622
5678
  /**
5623
- * 返回数量。
5679
+ * 返回数量,默认为20,最大值为100。
5624
5680
  */
5625
5681
  Limit?: number
5626
5682
 
@@ -5934,7 +5990,7 @@ export interface AssignIpv6AddressesRequest {
5934
5990
  Ipv6Addresses?: Array<Ipv6Address>
5935
5991
 
5936
5992
  /**
5937
- * 自动分配`IPv6`地址个数,内网IP地址个数总和不能超过配数。与入参`Ipv6Addresses`合并计算配额。与Ipv6Addresses必填一个。
5993
+ * 自动分配`IPv6`地址个数,内网IP地址个数总和不能超过配额数。与入参`Ipv6Addresses`合并计算配额。与Ipv6Addresses必填一个。
5938
5994
  */
5939
5995
  Ipv6AddressCount?: number
5940
5996
  }
@@ -6531,7 +6587,7 @@ export interface CreateVpnGatewaySslClientResponse {
6531
6587
  */
6532
6588
  export interface DescribeNetworkInterfaceLimitRequest {
6533
6589
  /**
6534
- * 要查询的CVM实例ID或弹性网卡ID
6590
+ * 要查询的CVM实例ID或弹性网卡ID
6535
6591
  */
6536
6592
  InstanceId: string
6537
6593
  }
@@ -6708,7 +6764,7 @@ export interface ModifyIp6AddressesBandwidthResponse {
6708
6764
  */
6709
6765
  export interface CreateSubnetsRequest {
6710
6766
  /**
6711
- * `VPC`实例`ID`。形如:`vpc-6v2ht8q5`
6767
+ * `VPC`实例`ID`。形如:`vpc-6v2ht8q5`。
6712
6768
  */
6713
6769
  VpcId: string
6714
6770
 
@@ -6718,7 +6774,7 @@ export interface CreateSubnetsRequest {
6718
6774
  Subnets: Array<SubnetInput>
6719
6775
 
6720
6776
  /**
6721
- * 指定绑定的标签列表,注意这里的标签集合为列表中所有子网对象所共享,不能为每个子网对象单独指定标签,例如:[{"Key": "city", "Value": "shanghai"}]
6777
+ * 指定绑定的标签列表,注意这里的标签集合为列表中所有子网对象所共享,不能为每个子网对象单独指定标签,例如:[{"Key": "city", "Value": "shanghai"}]
6722
6778
  */
6723
6779
  Tags?: Array<Tag>
6724
6780
 
@@ -6861,7 +6917,7 @@ export interface CreateNetworkAclRequest {
6861
6917
  NetworkAclName: string
6862
6918
 
6863
6919
  /**
6864
- * 网络ACL类型,三元组(TRIPLE)或五元组(QUINTUPLE)
6920
+ * 网络ACL类型,三元组(TRIPLE)或五元组(QUINTUPLE)
6865
6921
  */
6866
6922
  NetworkAclType?: string
6867
6923
 
@@ -6994,38 +7050,38 @@ export interface DescribeVpcsResponse {
6994
7050
  */
6995
7051
  export interface DescribeNetworkInterfaceLimitResponse {
6996
7052
  /**
6997
- * 标准型弹性网卡配额
7053
+ * 标准型弹性网卡配额。
6998
7054
  */
6999
- EniQuantity: number
7055
+ EniQuantity?: number
7000
7056
 
7001
7057
  /**
7002
- * 每个标准型弹性网卡可以分配的IP配额
7058
+ * 每个标准型弹性网卡可以分配的IP配额。
7003
7059
  */
7004
- EniPrivateIpAddressQuantity: number
7060
+ EniPrivateIpAddressQuantity?: number
7005
7061
 
7006
7062
  /**
7007
- * 扩展型网卡配额
7063
+ * 扩展型网卡配额。
7008
7064
  注意:此字段可能返回 null,表示取不到有效值。
7009
7065
  */
7010
- ExtendEniQuantity: number
7066
+ ExtendEniQuantity?: number
7011
7067
 
7012
7068
  /**
7013
- * 每个扩展型弹性网卡可以分配的IP配额
7069
+ * 每个扩展型弹性网卡可以分配的IP配额。
7014
7070
  注意:此字段可能返回 null,表示取不到有效值。
7015
7071
  */
7016
- ExtendEniPrivateIpAddressQuantity: number
7072
+ ExtendEniPrivateIpAddressQuantity?: number
7017
7073
 
7018
7074
  /**
7019
- * 中继网卡配额
7075
+ * 中继网卡配额。
7020
7076
  注意:此字段可能返回 null,表示取不到有效值。
7021
7077
  */
7022
- SubEniQuantity: number
7078
+ SubEniQuantity?: number
7023
7079
 
7024
7080
  /**
7025
- * 每个中继网卡可以分配的IP配额
7081
+ * 每个中继网卡可以分配的IP配额。
7026
7082
  注意:此字段可能返回 null,表示取不到有效值。
7027
7083
  */
7028
- SubEniPrivateIpAddressQuantity: number
7084
+ SubEniPrivateIpAddressQuantity?: number
7029
7085
 
7030
7086
  /**
7031
7087
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -7038,7 +7094,7 @@ export interface DescribeNetworkInterfaceLimitResponse {
7038
7094
  */
7039
7095
  export interface AssignIpv6CidrBlockResponse {
7040
7096
  /**
7041
- * 分配的 `IPv6` 网段。形如:`3402:4e00:20:1000::/56`
7097
+ * 分配的 `IPv6` 网段。形如:`3402:4e00:20:1000::/56`。
7042
7098
  */
7043
7099
  Ipv6CidrBlock?: string
7044
7100
 
@@ -7616,14 +7672,14 @@ NAT类型支持网络地址转换配置,类型确定后不能修改;一个
7616
7672
  */
7617
7673
  export interface DescribeProductQuotaResponse {
7618
7674
  /**
7619
- * ProductQuota对象数组
7675
+ * ProductQuota对象数组。
7620
7676
  */
7621
- ProductQuotaSet: Array<ProductQuota>
7677
+ ProductQuotaSet?: Array<ProductQuota>
7622
7678
 
7623
7679
  /**
7624
- * 符合条件的产品类型个数
7680
+ * 符合条件的产品类型个数。
7625
7681
  */
7626
- TotalCount: number
7682
+ TotalCount?: number
7627
7683
 
7628
7684
  /**
7629
7685
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -7848,7 +7904,7 @@ export interface DisassociateDirectConnectGatewayNatGatewayResponse {
7848
7904
  */
7849
7905
  export interface CreateServiceTemplateGroupRequest {
7850
7906
  /**
7851
- * 协议端口模板集合名称
7907
+ * 协议端口模板集合名称。
7852
7908
  */
7853
7909
  ServiceTemplateGroupName: string
7854
7910
 
@@ -7880,12 +7936,12 @@ export interface DescribeClassicLinkInstancesResponse {
7880
7936
  /**
7881
7937
  * 符合条件的实例数量。
7882
7938
  */
7883
- TotalCount: number
7939
+ TotalCount?: number
7884
7940
 
7885
7941
  /**
7886
7942
  * 私有网络和基础网络互通设备。
7887
7943
  */
7888
- ClassicLinkInstanceSet: Array<ClassicLinkInstance>
7944
+ ClassicLinkInstanceSet?: Array<ClassicLinkInstance>
7889
7945
 
7890
7946
  /**
7891
7947
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -7962,6 +8018,17 @@ export interface ModifyVpcEndPointServiceWhiteListRequest {
7962
8018
  * DescribeTenantCcns返回参数结构体
7963
8019
  */
7964
8020
  export interface DescribeTenantCcnsResponse {
8021
+ /**
8022
+ * 云联网(CCN)对象。
8023
+ 注意:此字段可能返回 null,表示取不到有效值。
8024
+ */
8025
+ CcnSet?: Array<CcnInstanceInfo>
8026
+
8027
+ /**
8028
+ * 符合条件的对象总数。
8029
+ */
8030
+ TotalCount?: number
8031
+
7965
8032
  /**
7966
8033
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
7967
8034
  */
@@ -8127,6 +8194,21 @@ export interface SecurityPolicyDatabase {
8127
8194
  RemoteCidrBlock: Array<string>
8128
8195
  }
8129
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
+
8130
8212
  /**
8131
8213
  * ResetVpnConnection返回参数结构体
8132
8214
  */
@@ -9201,7 +9283,7 @@ export interface CrossBorderCompliance {
9201
9283
  */
9202
9284
  export interface ModifyAssistantCidrRequest {
9203
9285
  /**
9204
- * `VPC`实例`ID`。形如:`vpc-6v2ht8q5`
9286
+ * `VPC`实例`ID`。形如:`vpc-6v2ht8q5`。
9205
9287
  */
9206
9288
  VpcId: string
9207
9289
 
@@ -9615,14 +9697,14 @@ export interface CcnInstance {
9615
9697
  */
9616
9698
  export interface DescribeLocalGatewayResponse {
9617
9699
  /**
9618
- * 本地网关信息集合
9700
+ * 本地网关信息集合。
9619
9701
  */
9620
- LocalGatewaySet: Array<LocalGateway>
9702
+ LocalGatewaySet?: Array<LocalGateway>
9621
9703
 
9622
9704
  /**
9623
- * 本地网关总数
9705
+ * 本地网关总数。
9624
9706
  */
9625
- TotalCount: number
9707
+ TotalCount?: number
9626
9708
 
9627
9709
  /**
9628
9710
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -9727,7 +9809,7 @@ export interface CreateVpcEndPointResponse {
9727
9809
  /**
9728
9810
  * 终端节点对象详细信息。
9729
9811
  */
9730
- EndPoint: EndPoint
9812
+ EndPoint?: EndPoint
9731
9813
 
9732
9814
  /**
9733
9815
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -9882,7 +9964,7 @@ export interface ModifyIpv6AddressesAttributeRequest {
9882
9964
  NetworkInterfaceId: string
9883
9965
 
9884
9966
  /**
9885
- * 指定的内网IPv6`地址信息。
9967
+ * 指定的内网IPv6地址信息。
9886
9968
  */
9887
9969
  Ipv6Addresses: Array<Ipv6Address>
9888
9970
  }
@@ -9935,17 +10017,17 @@ export interface DetachSnapshotInstancesRequest {
9935
10017
  */
9936
10018
  export interface DeleteLocalGatewayRequest {
9937
10019
  /**
9938
- * 本地网关实例ID
10020
+ * 本地网关实例ID
9939
10021
  */
9940
10022
  LocalGatewayId: string
9941
10023
 
9942
10024
  /**
9943
- * CDC实例ID
10025
+ * CDC实例ID
9944
10026
  */
9945
10027
  CdcId: string
9946
10028
 
9947
10029
  /**
9948
- * VPC实例ID
10030
+ * VPC实例ID
9949
10031
  */
9950
10032
  VpcId?: string
9951
10033
  }
@@ -9990,37 +10072,37 @@ export interface AddressChargePrepaid {
9990
10072
  */
9991
10073
  export interface DescribeCrossBorderFlowMonitorRequest {
9992
10074
  /**
9993
- * 源地域
10075
+ * 源地域。
9994
10076
  */
9995
10077
  SourceRegion: string
9996
10078
 
9997
10079
  /**
9998
- * 目的地域
10080
+ * 目的地域。
9999
10081
  */
10000
10082
  DestinationRegion: string
10001
10083
 
10002
10084
  /**
10003
- * 云联网Id
10085
+ * 云联网ID。
10004
10086
  */
10005
10087
  CcnId: string
10006
10088
 
10007
10089
  /**
10008
- * 云联网所属账号
10090
+ * 云联网所属账号。
10009
10091
  */
10010
10092
  CcnUin: string
10011
10093
 
10012
10094
  /**
10013
- * 时间粒度
10095
+ * 时间粒度。
10014
10096
  */
10015
10097
  Period: number
10016
10098
 
10017
10099
  /**
10018
- * 开始时间
10100
+ * 开始时间。
10019
10101
  */
10020
10102
  StartTime: string
10021
10103
 
10022
10104
  /**
10023
- * 结束时间
10105
+ * 结束时间。
10024
10106
  */
10025
10107
  EndTime: string
10026
10108
  }
@@ -10460,7 +10542,7 @@ export interface CreateHaVipResponse {
10460
10542
  */
10461
10543
  export interface DescribeSecurityGroupReferencesRequest {
10462
10544
  /**
10463
- * 安全组实例ID数组。格式如:['sg-12345678']
10545
+ * 安全组实例ID数组。格式如:['sg-12345678']
10464
10546
  */
10465
10547
  SecurityGroupIds: Array<string>
10466
10548
  }
@@ -10868,12 +10950,12 @@ export interface DhcpIp {
10868
10950
  */
10869
10951
  export interface DeleteAssistantCidrRequest {
10870
10952
  /**
10871
- * `VPC`实例`ID`。形如:`vpc-6v2ht8q5`
10953
+ * `VPC`实例`ID`。形如:`vpc-6v2ht8q5`。
10872
10954
  */
10873
10955
  VpcId: string
10874
10956
 
10875
10957
  /**
10876
- * CIDR数组,格式如["10.0.0.0/16", "172.16.0.0/16"]
10958
+ * CIDR数组,格式如["10.0.0.0/16", "172.16.0.0/16"]
10877
10959
  */
10878
10960
  CidrBlocks: Array<string>
10879
10961
  }
@@ -11239,7 +11321,7 @@ export interface CreateVpcEndPointServiceResponse {
11239
11321
  /**
11240
11322
  * 终端节点服务对象详细信息。
11241
11323
  */
11242
- EndPointService: EndPointService
11324
+ EndPointService?: EndPointService
11243
11325
 
11244
11326
  /**
11245
11327
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -11303,13 +11385,15 @@ export interface DescribeHaVipsRequest {
11303
11385
  Filters?: Array<Filter>
11304
11386
 
11305
11387
  /**
11306
- * 偏移量
11307
- */
11388
+ * 偏移量,默认为0。
11389
+
11390
+ */
11308
11391
  Offset?: number
11309
11392
 
11310
11393
  /**
11311
- * 返回数量
11312
- */
11394
+ * 返回数量,默认为20,最大值为100。
11395
+
11396
+ */
11313
11397
  Limit?: number
11314
11398
  }
11315
11399
 
@@ -11744,12 +11828,12 @@ export interface ModifyVpcAttributeRequest {
11744
11828
  EnableMulticast?: string
11745
11829
 
11746
11830
  /**
11747
- * DNS地址,最多支持4个,第1个默认为主,其余为备
11831
+ * DNS地址,最多支持4个,第1个默认为主,其余为备。
11748
11832
  */
11749
11833
  DnsServers?: Array<string>
11750
11834
 
11751
11835
  /**
11752
- * 域名
11836
+ * 域名。
11753
11837
  */
11754
11838
  DomainName?: string
11755
11839
  }
@@ -11877,7 +11961,7 @@ export interface CreateAddressTemplateGroupResponse {
11877
11961
  /**
11878
11962
  * IP地址模板集合对象。
11879
11963
  */
11880
- AddressTemplateGroup: AddressTemplateGroup
11964
+ AddressTemplateGroup?: AddressTemplateGroup
11881
11965
 
11882
11966
  /**
11883
11967
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -12025,7 +12109,7 @@ export interface DisassociateNetworkAclSubnetsRequest {
12025
12109
  NetworkAclId: string
12026
12110
 
12027
12111
  /**
12028
- * 子网实例ID数组。例如:[subnet-12345678]
12112
+ * 子网实例ID数组。例如:[subnet-12345678]
12029
12113
  */
12030
12114
  SubnetIds: Array<string>
12031
12115
  }
@@ -12090,7 +12174,7 @@ export interface UnassignIpv6CidrBlockRequest {
12090
12174
  VpcId: string
12091
12175
 
12092
12176
  /**
12093
- * `IPv6`网段。形如:`3402:4e00:20:1000::/56`
12177
+ * `IPv6`网段。形如:`3402:4e00:20:1000::/56`。
12094
12178
  */
12095
12179
  Ipv6CidrBlock?: string
12096
12180
  }
@@ -12328,12 +12412,12 @@ export interface CheckAssistantCidrRequest {
12328
12412
  VpcId: string
12329
12413
 
12330
12414
  /**
12331
- * 待添加的负载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至少需要其一。
12332
12416
  */
12333
12417
  NewCidrBlocks?: Array<string>
12334
12418
 
12335
12419
  /**
12336
- * 待删除的负载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至少需要其一。
12337
12421
  */
12338
12422
  OldCidrBlocks?: Array<string>
12339
12423
  }
@@ -12455,7 +12539,7 @@ export interface CheckAssistantCidrResponse {
12455
12539
  /**
12456
12540
  * 冲突资源信息数组。
12457
12541
  */
12458
- ConflictSourceSet: Array<ConflictSource>
12542
+ ConflictSourceSet?: Array<ConflictSource>
12459
12543
 
12460
12544
  /**
12461
12545
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -12598,7 +12682,7 @@ export interface CheckNetDetectStateResponse {
12598
12682
  /**
12599
12683
  * 网络探测验证结果对象数组。
12600
12684
  */
12601
- NetDetectIpStateSet: Array<NetDetectIpState>
12685
+ NetDetectIpStateSet?: Array<NetDetectIpState>
12602
12686
 
12603
12687
  /**
12604
12688
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -12881,22 +12965,22 @@ export interface ModifyNetworkInterfaceQosRequest {
12881
12965
  */
12882
12966
  export interface ModifyLocalGatewayRequest {
12883
12967
  /**
12884
- * 本地网关名称
12968
+ * 本地网关名称。
12885
12969
  */
12886
12970
  LocalGatewayName: string
12887
12971
 
12888
12972
  /**
12889
- * CDC实例ID
12973
+ * CDC实例ID
12890
12974
  */
12891
12975
  CdcId: string
12892
12976
 
12893
12977
  /**
12894
- * 本地网关实例ID
12978
+ * 本地网关实例ID
12895
12979
  */
12896
12980
  LocalGatewayId: string
12897
12981
 
12898
12982
  /**
12899
- * VPC实例ID
12983
+ * VPC实例ID
12900
12984
  */
12901
12985
  VpcId?: string
12902
12986
  }
@@ -12946,9 +13030,9 @@ export interface DeleteHaVipRequest {
12946
13030
  */
12947
13031
  export interface CreateLocalGatewayResponse {
12948
13032
  /**
12949
- * 本地网关信息
13033
+ * 本地网关信息。
12950
13034
  */
12951
- LocalGateway: LocalGateway
13035
+ LocalGateway?: LocalGateway
12952
13036
 
12953
13037
  /**
12954
13038
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -13155,12 +13239,12 @@ export interface DescribeVpcInstancesRequest {
13155
13239
  Filters: Array<Filter>
13156
13240
 
13157
13241
  /**
13158
- * 偏移量。
13242
+ * 偏移量,默认为0。
13159
13243
  */
13160
13244
  Offset?: number
13161
13245
 
13162
13246
  /**
13163
- * 请求对象个数。
13247
+ * 返回数量,默认为20,最大值为100。
13164
13248
  */
13165
13249
  Limit?: number
13166
13250
  }
@@ -13182,12 +13266,12 @@ export interface DescribeServiceTemplatesResponse {
13182
13266
  /**
13183
13267
  * 符合条件的实例数量。
13184
13268
  */
13185
- TotalCount: number
13269
+ TotalCount?: number
13186
13270
 
13187
13271
  /**
13188
13272
  * 协议端口模板对象。
13189
13273
  */
13190
- ServiceTemplateSet: Array<ServiceTemplate>
13274
+ ServiceTemplateSet?: Array<ServiceTemplate>
13191
13275
 
13192
13276
  /**
13193
13277
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -13482,7 +13566,7 @@ export interface AssignIpv6AddressesResponse {
13482
13566
  /**
13483
13567
  * 分配给弹性网卡的`IPv6`地址列表。
13484
13568
  */
13485
- Ipv6AddressSet: Array<Ipv6Address>
13569
+ Ipv6AddressSet?: Array<Ipv6Address>
13486
13570
 
13487
13571
  /**
13488
13572
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -13812,7 +13896,7 @@ export interface DescribeRouteConflictsRequest {
13812
13896
  RouteTableId: string
13813
13897
 
13814
13898
  /**
13815
- * 要检查的与之冲突的目的端列表
13899
+ * 要检查的与之冲突的目的端列表。
13816
13900
  */
13817
13901
  DestinationCidrBlocks: Array<string>
13818
13902
  }
@@ -13904,29 +13988,9 @@ export interface DescribeCcnRoutesResponse {
13904
13988
  }
13905
13989
 
13906
13990
  /**
13907
- * AllocateIp6AddressesBandwidth请求参数结构体
13991
+ * 云联网实例对象,该对象特用于运营端使用,不建议给租户的接口中提供该复杂类型。
13908
13992
  */
13909
- export interface AllocateIp6AddressesBandwidthRequest {
13910
- /**
13911
- * 需要开通公网访问能力的IPV6地址
13912
- */
13913
- Ip6Addresses: Array<string>
13914
-
13915
- /**
13916
- * 带宽,单位Mbps。默认是1Mbps
13917
- */
13918
- InternetMaxBandwidthOut?: number
13919
-
13920
- /**
13921
- * 网络计费模式。IPV6当前对标准账户类型支持"TRAFFIC_POSTPAID_BY_HOUR",对传统账户类型支持"BANDWIDTH_PACKAGE"。默认网络计费模式是"TRAFFIC_POSTPAID_BY_HOUR"。
13922
- */
13923
- InternetChargeType?: string
13924
-
13925
- /**
13926
- * 带宽包id,上移账号,申请带宽包计费模式的ipv6地址需要传入.
13927
- */
13928
- BandwidthPackageId?: string
13929
- }
13993
+ export type CcnInstanceInfo = null
13930
13994
 
13931
13995
  /**
13932
13996
  * 安全组对象
@@ -14692,12 +14756,12 @@ export interface DescribeClassicLinkInstancesRequest {
14692
14756
  Filters?: Array<FilterObject>
14693
14757
 
14694
14758
  /**
14695
- * 偏移量
14759
+ * 偏移量,默认值0。
14696
14760
  */
14697
14761
  Offset?: string
14698
14762
 
14699
14763
  /**
14700
- * 返回数量
14764
+ * 返回数量,默认为20,最大值为100。
14701
14765
  */
14702
14766
  Limit?: string
14703
14767
  }
@@ -14724,7 +14788,7 @@ export interface CreateServiceTemplateResponse {
14724
14788
  /**
14725
14789
  * 协议端口模板对象。
14726
14790
  */
14727
- ServiceTemplate: ServiceTemplate
14791
+ ServiceTemplate?: ServiceTemplate
14728
14792
 
14729
14793
  /**
14730
14794
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -14757,7 +14821,7 @@ export interface DisableCcnRoutesResponse {
14757
14821
  */
14758
14822
  export interface DescribeCcnRegionBandwidthLimitsRequest {
14759
14823
  /**
14760
- * CCN实例ID。形如:ccn-f49l6u0z。
14824
+ * CCN实例ID,形如:ccn-f49l6u0z。
14761
14825
  */
14762
14826
  CcnId: string
14763
14827
  }
@@ -14800,7 +14864,7 @@ export interface CreateAssistantCidrResponse {
14800
14864
  * 辅助CIDR数组。
14801
14865
  注意:此字段可能返回 null,表示取不到有效值。
14802
14866
  */
14803
- AssistantCidrSet: Array<AssistantCidr>
14867
+ AssistantCidrSet?: Array<AssistantCidr>
14804
14868
 
14805
14869
  /**
14806
14870
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -14891,7 +14955,7 @@ export interface CreateDhcpIpRequest {
14891
14955
  DhcpIpName: string
14892
14956
 
14893
14957
  /**
14894
- * 新申请的内网IP地址个数。总数不能超过64个。
14958
+ * 新申请的内网IP地址个数。总数不能超过64个,为了兼容性,当前参数必填。
14895
14959
  */
14896
14960
  SecondaryPrivateIpAddressCount?: number
14897
14961
  }
@@ -14933,12 +14997,12 @@ export interface DescribeAddressTemplatesResponse {
14933
14997
  /**
14934
14998
  * 符合条件的实例数量。
14935
14999
  */
14936
- TotalCount: number
15000
+ TotalCount?: number
14937
15001
 
14938
15002
  /**
14939
15003
  * IP地址模板。
14940
15004
  */
14941
- AddressTemplateSet: Array<AddressTemplate>
15005
+ AddressTemplateSet?: Array<AddressTemplate>
14942
15006
 
14943
15007
  /**
14944
15008
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -15271,7 +15335,7 @@ export interface DescribeCrossBorderFlowMonitorResponse {
15271
15335
  * 云联网跨境带宽监控数据
15272
15336
  注意:此字段可能返回 null,表示取不到有效值。
15273
15337
  */
15274
- CrossBorderFlowMonitorData: Array<CrossBorderFlowMonitorData>
15338
+ CrossBorderFlowMonitorData?: Array<CrossBorderFlowMonitorData>
15275
15339
 
15276
15340
  /**
15277
15341
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -15336,12 +15400,12 @@ export interface DescribeVpcEndPointServiceWhiteListResponse {
15336
15400
  /**
15337
15401
  * 白名单对象数组。
15338
15402
  */
15339
- VpcEndpointServiceUserSet: Array<VpcEndPointServiceUser>
15403
+ VpcEndpointServiceUserSet?: Array<VpcEndPointServiceUser>
15340
15404
 
15341
15405
  /**
15342
15406
  * 符合条件的白名单个数。
15343
15407
  */
15344
- TotalCount: number
15408
+ TotalCount?: number
15345
15409
 
15346
15410
  /**
15347
15411
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。