tencentcloud-sdk-nodejs 4.1.132 → 4.1.134

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.
Files changed (43) hide show
  1. package/es/common/sdk_version.js +1 -1
  2. package/es/services/cdb/v20170320/cdb_client.js +3 -0
  3. package/es/services/ioa/v20220601/ioa_client.js +3 -0
  4. package/es/services/monitor/v20180724/monitor_client.js +3 -0
  5. package/es/services/vpc/v20170312/vpc_client.js +40 -4
  6. package/package.json +1 -1
  7. package/tencentcloud/common/sdk_version.d.ts +1 -1
  8. package/tencentcloud/common/sdk_version.js +1 -1
  9. package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +4 -0
  10. package/tencentcloud/services/cdb/v20170320/cdb_client.d.ts +5 -1
  11. package/tencentcloud/services/cdb/v20170320/cdb_client.js +6 -0
  12. package/tencentcloud/services/cdb/v20170320/cdb_models.d.ts +34 -0
  13. package/tencentcloud/services/cfg/v20210820/cfg_models.d.ts +4 -0
  14. package/tencentcloud/services/csip/v20221121/csip_models.d.ts +22 -0
  15. package/tencentcloud/services/dbbrain/v20210527/dbbrain_models.d.ts +6 -6
  16. package/tencentcloud/services/dts/v20211206/dts_client.d.ts +8 -9
  17. package/tencentcloud/services/dts/v20211206/dts_client.js +8 -9
  18. package/tencentcloud/services/dts/v20211206/dts_models.d.ts +103 -52
  19. package/tencentcloud/services/es/v20180416/es_models.d.ts +40 -0
  20. package/tencentcloud/services/essbasic/v20210526/essbasic_client.d.ts +3 -3
  21. package/tencentcloud/services/essbasic/v20210526/essbasic_client.js +3 -3
  22. package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +2 -6
  23. package/tencentcloud/services/gaap/v20180529/gaap_models.d.ts +5 -1
  24. package/tencentcloud/services/ioa/v20220601/ioa_client.d.ts +5 -1
  25. package/tencentcloud/services/ioa/v20220601/ioa_client.js +6 -0
  26. package/tencentcloud/services/ioa/v20220601/ioa_models.d.ts +59 -0
  27. package/tencentcloud/services/lighthouse/v20200324/lighthouse_models.d.ts +27 -10
  28. package/tencentcloud/services/monitor/v20180724/monitor_client.d.ts +5 -1
  29. package/tencentcloud/services/monitor/v20180724/monitor_client.js +6 -0
  30. package/tencentcloud/services/monitor/v20180724/monitor_models.d.ts +48 -1
  31. package/tencentcloud/services/mps/v20190612/mps_models.d.ts +21 -5
  32. package/tencentcloud/services/oceanus/v20190422/oceanus_models.d.ts +1 -1
  33. package/tencentcloud/services/ocr/v20181119/ocr_client.d.ts +15 -5
  34. package/tencentcloud/services/ocr/v20181119/ocr_client.js +15 -5
  35. package/tencentcloud/services/rum/v20210622/rum_models.d.ts +8 -0
  36. package/tencentcloud/services/teo/v20220901/teo_models.d.ts +12 -8
  37. package/tencentcloud/services/tke/v20180525/tke_models.d.ts +58 -2
  38. package/tencentcloud/services/tmt/v20180321/tmt_client.d.ts +1 -1
  39. package/tencentcloud/services/tmt/v20180321/tmt_models.d.ts +96 -62
  40. package/tencentcloud/services/vpc/v20170312/vpc_client.d.ts +53 -5
  41. package/tencentcloud/services/vpc/v20170312/vpc_client.js +78 -6
  42. package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +610 -181
  43. package/tencentcloud/services/wedata/v20250806/wedata_models.d.ts +17 -0
@@ -120,6 +120,23 @@ export interface SecurityGroupLimitSet {
120
120
  * LockCcns请求参数结构体
121
121
  */
122
122
  export type LockCcnsRequest = null;
123
+ /**
124
+ * ResumeSnapshotInstance请求参数结构体
125
+ */
126
+ export interface ResumeSnapshotInstanceRequest {
127
+ /**
128
+ * 快照策略Id。
129
+ */
130
+ SnapshotPolicyId: string;
131
+ /**
132
+ * 快照文件Id。
133
+ */
134
+ SnapshotFileId: string;
135
+ /**
136
+ * 实例Id。
137
+ */
138
+ InstanceId: string;
139
+ }
123
140
  /**
124
141
  * CreateRoutes请求参数结构体
125
142
  */
@@ -692,6 +709,23 @@ export interface CreateDhcpIpResponse {
692
709
  */
693
710
  RequestId?: string;
694
711
  }
712
+ /**
713
+ * DescribeIpGeolocationDatabaseUrl返回参数结构体
714
+ */
715
+ export interface DescribeIpGeolocationDatabaseUrlResponse {
716
+ /**
717
+ * IP地理位置库下载链接地址。
718
+ */
719
+ DownLoadUrl?: string;
720
+ /**
721
+ * 链接到期时间。按照`ISO8601`标准表示,并且使用`UTC`时间。
722
+ */
723
+ ExpiredAt?: string;
724
+ /**
725
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
726
+ */
727
+ RequestId?: string;
728
+ }
695
729
  /**
696
730
  * 安全组规则对象
697
731
  */
@@ -910,25 +944,17 @@ export interface DescribeServiceTemplateInstancesRequest {
910
944
  Limit?: number;
911
945
  }
912
946
  /**
913
- * ModifyVpcPeeringConnection请求参数结构体
947
+ * DeleteRoutePolicyEntries请求参数结构体
914
948
  */
915
- export interface ModifyVpcPeeringConnectionRequest {
916
- /**
917
- * 对等连接ID。
918
- */
919
- PeeringConnectionId: string;
920
- /**
921
- * 对等连接名称。
922
- */
923
- PeeringConnectionName?: string;
949
+ export interface DeleteRoutePolicyEntriesRequest {
924
950
  /**
925
- * 带宽上限,单位Mbps
951
+ * 路由接收策略实例ID
926
952
  */
927
- Bandwidth?: number;
953
+ RoutePolicyId: string;
928
954
  /**
929
- * 计费模式,日峰值POSTPAID_BY_DAY_MAX,月95 POSTPAID_BY_MONTH_95。
955
+ * 路由接收策略条目列表,删除路由策略规则时,仅需使用RoutePolicyEntry的RoutePolicyEntryIdId字段。
930
956
  */
931
- ChargeType?: string;
957
+ RoutePolicyEntrySet?: Array<RoutePolicyEntry>;
932
958
  }
933
959
  /**
934
960
  * DetachClassicLinkVpc请求参数结构体
@@ -1235,6 +1261,19 @@ export interface AddBandwidthPackageResourcesRequest {
1235
1261
  */
1236
1262
  Protocol?: string;
1237
1263
  }
1264
+ /**
1265
+ * ReplaceRoutePolicyEntries请求参数结构体
1266
+ */
1267
+ export interface ReplaceRoutePolicyEntriesRequest {
1268
+ /**
1269
+ * 路由策略实例ID,例如:rrp-azd4dt1c。
1270
+ */
1271
+ RoutePolicyId: string;
1272
+ /**
1273
+ * 路由策略规则列表。需要指定路由策略规则ID(RoutePolicyEntryId)。
1274
+ */
1275
+ RoutePolicyEntrySet: Array<RoutePolicyEntry>;
1276
+ }
1238
1277
  /**
1239
1278
  * AssignIpv6SubnetCidrBlock请求参数结构体
1240
1279
  */
@@ -1410,6 +1449,15 @@ export interface ModifyNetworkAclEntriesRequest {
1410
1449
  */
1411
1450
  EnableUpdateAclEntries?: boolean;
1412
1451
  }
1452
+ /**
1453
+ * ReplaceRoutePolicyAssociations返回参数结构体
1454
+ */
1455
+ export interface ReplaceRoutePolicyAssociationsResponse {
1456
+ /**
1457
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1458
+ */
1459
+ RequestId?: string;
1460
+ }
1413
1461
  /**
1414
1462
  * DescribeVpcPrivateIpAddresses请求参数结构体
1415
1463
  */
@@ -1989,6 +2037,76 @@ export interface DisassociateNetworkInterfaceSecurityGroupsRequest {
1989
2037
  */
1990
2038
  SecurityGroupIds: Array<string>;
1991
2039
  }
2040
+ /**
2041
+ * 路由接收策略条目。
2042
+ */
2043
+ export interface RoutePolicyEntry {
2044
+ /**
2045
+ * 路由策略条目IPv4唯一ID。
2046
+ 注意:此字段可能返回 null,表示取不到有效值。
2047
+ */
2048
+ RoutePolicyEntryId?: string;
2049
+ /**
2050
+ * 目标网段。
2051
+ 注意:此字段可能返回 null,表示取不到有效值。
2052
+ */
2053
+ CidrBlock?: string;
2054
+ /**
2055
+ * 路由策略规则描述。
2056
+ 注意:此字段可能返回 null,表示取不到有效值。
2057
+ */
2058
+ Description?: string;
2059
+ /**
2060
+ * 路由类型。
2061
+ USER:用户自定义类型。
2062
+ NETD:网络探测下发的路由。
2063
+ CCN:云联网路由。
2064
+ 注意:此字段可能返回 null,表示取不到有效值。
2065
+ */
2066
+ RouteType?: string;
2067
+ /**
2068
+ * 下一跳类型。目前我们支持的类型有:
2069
+ CVM:公网网关类型的云服务器;
2070
+ VPN:VPN网关;
2071
+ DIRECTCONNECT:专线网关;
2072
+ PEERCONNECTION:对等连接;
2073
+ HAVIP:高可用虚拟IP;
2074
+ NAT:NAT网关;
2075
+ EIP:云服务器的公网IP;
2076
+ LOCAL_GATEWAY:本地网关;
2077
+ PVGW:PVGW网关。
2078
+ 注意:此字段可能返回 null,表示取不到有效值。
2079
+ */
2080
+ GatewayType?: string;
2081
+ /**
2082
+ * 网关唯一ID。
2083
+ 注意:此字段可能返回 null,表示取不到有效值。
2084
+ */
2085
+ GatewayId?: string;
2086
+ /**
2087
+ * 优先级。数值越小,优先级越高。
2088
+ 注意:此字段可能返回 null,表示取不到有效值。
2089
+ */
2090
+ Priority?: number;
2091
+ /**
2092
+ * 动作。
2093
+ DROP:丢弃。
2094
+ DISABLE:接收且禁用。
2095
+ ACCEPT:接收且启用。
2096
+ 注意:此字段可能返回 null,表示取不到有效值。
2097
+ */
2098
+ Action?: string;
2099
+ /**
2100
+ * 创建时间。
2101
+ 注意:此字段可能返回 null,表示取不到有效值。
2102
+ */
2103
+ CreatedTime?: string;
2104
+ /**
2105
+ * 地域。
2106
+ 注意:此字段可能返回 null,表示取不到有效值。
2107
+ */
2108
+ Region?: string;
2109
+ }
1992
2110
  /**
1993
2111
  * DeleteNetworkAclEntries请求参数结构体
1994
2112
  */
@@ -2633,6 +2751,19 @@ export interface DescribeNatGatewaysRequest {
2633
2751
  */
2634
2752
  Limit?: number;
2635
2753
  }
2754
+ /**
2755
+ * 安全组被引用信息
2756
+ */
2757
+ export interface ReferredSecurityGroup {
2758
+ /**
2759
+ * 安全组实例ID。
2760
+ */
2761
+ SecurityGroupId?: string;
2762
+ /**
2763
+ * 引用安全组实例ID(SecurityGroupId)的所有安全组实例ID。
2764
+ */
2765
+ ReferredSecurityGroupIds?: Array<string>;
2766
+ }
2636
2767
  /**
2637
2768
  * 云服务器巨帧状态
2638
2769
  */
@@ -3122,6 +3253,15 @@ export interface HaVipDisassociateAddressIpResponse {
3122
3253
  */
3123
3254
  RequestId?: string;
3124
3255
  }
3256
+ /**
3257
+ * ResetRoutePolicyAssociations返回参数结构体
3258
+ */
3259
+ export interface ResetRoutePolicyAssociationsResponse {
3260
+ /**
3261
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3262
+ */
3263
+ RequestId?: string;
3264
+ }
3125
3265
  /**
3126
3266
  * 私网网关Snat转发规则修改
3127
3267
  */
@@ -3253,17 +3393,17 @@ export interface SetCcnRegionBandwidthLimitsResponse {
3253
3393
  RequestId?: string;
3254
3394
  }
3255
3395
  /**
3256
- * UnassignIpv6SubnetCidrBlock请求参数结构体
3396
+ * CreateRoutePolicy返回参数结构体
3257
3397
  */
3258
- export interface UnassignIpv6SubnetCidrBlockRequest {
3398
+ export interface CreateRoutePolicyResponse {
3259
3399
  /**
3260
- * 子网所在私有网络`ID`。形如:`vpc-f49l6u0z`。
3400
+ * 路由策略ID及规则。
3261
3401
  */
3262
- VpcId: string;
3402
+ RoutePolicy?: RoutePolicy;
3263
3403
  /**
3264
- * `IPv6` 子网段列表。
3404
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3265
3405
  */
3266
- Ipv6SubnetCidrBlocks: Array<Ipv6SubnetCidrBlock>;
3406
+ RequestId?: string;
3267
3407
  }
3268
3408
  /**
3269
3409
  * ModifyIPv6AddressesBandwidth请求参数结构体
@@ -3279,9 +3419,13 @@ export interface ModifyIPv6AddressesBandwidthRequest {
3279
3419
  InternetMaxBandwidthOut: number;
3280
3420
  }
3281
3421
  /**
3282
- * DeleteVpcEndPointService返回参数结构体
3422
+ * DescribeAccountAttributes返回参数结构体
3283
3423
  */
3284
- export interface DeleteVpcEndPointServiceResponse {
3424
+ export interface DescribeAccountAttributesResponse {
3425
+ /**
3426
+ * 用户账号属性对象。
3427
+ */
3428
+ AccountAttributeSet?: Array<AccountAttribute>;
3285
3429
  /**
3286
3430
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3287
3431
  */
@@ -3599,9 +3743,31 @@ export interface TrafficFlow {
3599
3743
  FormatUnit?: string;
3600
3744
  }
3601
3745
  /**
3602
- * DescribeAccountAttributes请求参数结构体
3746
+ * CreateRoutePolicy请求参数结构体
3603
3747
  */
3604
- export type DescribeAccountAttributesRequest = null;
3748
+ export interface CreateRoutePolicyRequest {
3749
+ /**
3750
+ * 路由策略描述。
3751
+ */
3752
+ RoutePolicyDescription: string;
3753
+ /**
3754
+ * 路由策略名。
3755
+ */
3756
+ RoutePolicyName: string;
3757
+ /**
3758
+ * 路由策略条目列表。
3759
+ */
3760
+ RoutePolicyEntrySet?: Array<RoutePolicyEntry>;
3761
+ }
3762
+ /**
3763
+ * DeleteRoutePolicyAssociations返回参数结构体
3764
+ */
3765
+ export interface DeleteRoutePolicyAssociationsResponse {
3766
+ /**
3767
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3768
+ */
3769
+ RequestId?: string;
3770
+ }
3605
3771
  /**
3606
3772
  * AddIp6Rules请求参数结构体
3607
3773
  */
@@ -3620,13 +3786,9 @@ export interface AddIp6RulesRequest {
3620
3786
  Ip6RuleName?: string;
3621
3787
  }
3622
3788
  /**
3623
- * DescribeAccountAttributes返回参数结构体
3789
+ * DeleteVpcEndPointService返回参数结构体
3624
3790
  */
3625
- export interface DescribeAccountAttributesResponse {
3626
- /**
3627
- * 用户账号属性对象。
3628
- */
3629
- AccountAttributeSet?: Array<AccountAttribute>;
3791
+ export interface DeleteVpcEndPointServiceResponse {
3630
3792
  /**
3631
3793
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3632
3794
  */
@@ -3836,6 +3998,15 @@ export interface DisassociateNetworkAclSubnetsResponse {
3836
3998
  */
3837
3999
  RequestId?: string;
3838
4000
  }
4001
+ /**
4002
+ * ReplaceRoutePolicyEntries返回参数结构体
4003
+ */
4004
+ export interface ReplaceRoutePolicyEntriesResponse {
4005
+ /**
4006
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4007
+ */
4008
+ RequestId?: string;
4009
+ }
3839
4010
  /**
3840
4011
  * 带宽上下限。
3841
4012
  */
@@ -4249,17 +4420,21 @@ export interface ReplaceDirectConnectGatewayCcnRoutesRequest {
4249
4420
  AddressType?: string;
4250
4421
  }
4251
4422
  /**
4252
- * 安全组被引用信息
4423
+ * DescribeRoutePolicyEntries返回参数结构体
4253
4424
  */
4254
- export interface ReferredSecurityGroup {
4425
+ export interface DescribeRoutePolicyEntriesResponse {
4255
4426
  /**
4256
- * 安全组实例ID。
4427
+ * 路由接收策略条目列表。
4257
4428
  */
4258
- SecurityGroupId?: string;
4429
+ RoutePolicyEntrySet?: Array<RoutePolicyEntry>;
4259
4430
  /**
4260
- * 引用安全组实例ID(SecurityGroupId)的所有安全组实例ID。
4431
+ * 符合条件的实例数量。
4261
4432
  */
4262
- ReferredSecurityGroupIds?: Array<string>;
4433
+ TotalCount?: number;
4434
+ /**
4435
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4436
+ */
4437
+ RequestId?: string;
4263
4438
  }
4264
4439
  /**
4265
4440
  * ModifyAddressTemplateAttribute请求参数结构体
@@ -4286,6 +4461,23 @@ export interface ModifyAddressTemplateAttributeRequest {
4286
4461
  * CreateCdcLDCXList请求参数结构体
4287
4462
  */
4288
4463
  export type CreateCdcLDCXListRequest = null;
4464
+ /**
4465
+ * ModifyRoutePolicyAttribute请求参数结构体
4466
+ */
4467
+ export interface ModifyRoutePolicyAttributeRequest {
4468
+ /**
4469
+ * 路由接收策略实例ID,例如:rrp-dz0219jq。
4470
+ */
4471
+ RoutePolicyId: string;
4472
+ /**
4473
+ * 路由接收策略名称。
4474
+ */
4475
+ RoutePolicyName: string;
4476
+ /**
4477
+ * 路由接收策略描述。
4478
+ */
4479
+ RoutePolicyDescription: string;
4480
+ }
4289
4481
  /**
4290
4482
  * CreateNatGateway返回参数结构体
4291
4483
  */
@@ -4620,16 +4812,13 @@ export interface DescribeFlowLogResponse {
4620
4812
  RequestId?: string;
4621
4813
  }
4622
4814
  /**
4623
- * DisableGatewayFlowMonitor请求参数结构体
4815
+ * DeleteRoutePolicyEntries返回参数结构体
4624
4816
  */
4625
- export interface DisableGatewayFlowMonitorRequest {
4817
+ export interface DeleteRoutePolicyEntriesResponse {
4626
4818
  /**
4627
- * 网关实例ID,目前我们支持的网关实例类型有,
4628
- 专线网关实例ID,形如,`dcg-ltjahce6`;
4629
- Nat网关实例ID,形如,`nat-ltjahce6`;
4630
- VPN网关实例ID,形如,`vpn-ltjahce6`。
4819
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4631
4820
  */
4632
- GatewayId: string;
4821
+ RequestId?: string;
4633
4822
  }
4634
4823
  /**
4635
4824
  * DescribeBandwidthPackages请求参数结构体
@@ -5464,21 +5653,13 @@ export interface AllocateIp6AddressesBandwidthRequest {
5464
5653
  Tags?: Array<Tag>;
5465
5654
  }
5466
5655
  /**
5467
- * ResumeSnapshotInstance请求参数结构体
5656
+ * DeleteRoutePolicy返回参数结构体
5468
5657
  */
5469
- export interface ResumeSnapshotInstanceRequest {
5470
- /**
5471
- * 快照策略Id。
5472
- */
5473
- SnapshotPolicyId: string;
5474
- /**
5475
- * 快照文件Id。
5476
- */
5477
- SnapshotFileId: string;
5658
+ export interface DeleteRoutePolicyResponse {
5478
5659
  /**
5479
- * 实例Id
5660
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId
5480
5661
  */
5481
- InstanceId: string;
5662
+ RequestId?: string;
5482
5663
  }
5483
5664
  /**
5484
5665
  * DescribeVpcIpv6Addresses返回参数结构体
@@ -5693,6 +5874,15 @@ export interface AssociateNetworkAclSubnetsRequest {
5693
5874
  */
5694
5875
  SubnetIds: Array<string>;
5695
5876
  }
5877
+ /**
5878
+ * ResetRoutePolicyEntries返回参数结构体
5879
+ */
5880
+ export interface ResetRoutePolicyEntriesResponse {
5881
+ /**
5882
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5883
+ */
5884
+ RequestId?: string;
5885
+ }
5696
5886
  /**
5697
5887
  * ModifyVpnGatewaySslServer返回参数结构体
5698
5888
  */
@@ -6113,6 +6303,27 @@ export interface AssociateDhcpIpWithAddressIpRequest {
6113
6303
  */
6114
6304
  AddressIp: string;
6115
6305
  }
6306
+ /**
6307
+ * ModifyVpcPeeringConnection请求参数结构体
6308
+ */
6309
+ export interface ModifyVpcPeeringConnectionRequest {
6310
+ /**
6311
+ * 对等连接ID。
6312
+ */
6313
+ PeeringConnectionId: string;
6314
+ /**
6315
+ * 对等连接名称。
6316
+ */
6317
+ PeeringConnectionName?: string;
6318
+ /**
6319
+ * 带宽上限,单位Mbps。
6320
+ */
6321
+ Bandwidth?: number;
6322
+ /**
6323
+ * 计费模式,日峰值POSTPAID_BY_DAY_MAX,月95 POSTPAID_BY_MONTH_95。
6324
+ */
6325
+ ChargeType?: string;
6326
+ }
6116
6327
  /**
6117
6328
  * ReplaceRoutes请求参数结构体
6118
6329
  */
@@ -6393,21 +6604,17 @@ export interface DescribeSubnetResourceDashboardRequest {
6393
6604
  SubnetIds: Array<string>;
6394
6605
  }
6395
6606
  /**
6396
- * DescribeIpGeolocationDatabaseUrl返回参数结构体
6607
+ * CreateRoutePolicyEntries请求参数结构体
6397
6608
  */
6398
- export interface DescribeIpGeolocationDatabaseUrlResponse {
6609
+ export interface CreateRoutePolicyEntriesRequest {
6399
6610
  /**
6400
- * IP地理位置库下载链接地址。
6611
+ * 路由接收策略实例ID。
6401
6612
  */
6402
- DownLoadUrl?: string;
6613
+ RoutePolicyId: string;
6403
6614
  /**
6404
- * 链接到期时间。按照`ISO8601`标准表示,并且使用`UTC`时间。
6615
+ * 路由接收策略条目列表。
6405
6616
  */
6406
- ExpiredAt?: string;
6407
- /**
6408
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6409
- */
6410
- RequestId?: string;
6617
+ RoutePolicyEntrySet: Array<RoutePolicyEntry>;
6411
6618
  }
6412
6619
  /**
6413
6620
  * Vpc任务结果详细信息。
@@ -6766,6 +6973,45 @@ export interface CustomerGateway {
6766
6973
  */
6767
6974
  BgpAsn?: number;
6768
6975
  }
6976
+ /**
6977
+ * 路由接收策略。当云联网或其他业务添加路由到VPC自定义路由表时,可以丢弃或启用,禁用相应的路由条目。
6978
+ */
6979
+ export interface RoutePolicy {
6980
+ /**
6981
+ * 路由策略唯一ID。
6982
+ 注意:此字段可能返回 null,表示取不到有效值。
6983
+ */
6984
+ RoutePolicyId?: string;
6985
+ /**
6986
+ * 路由策略名。
6987
+ 注意:此字段可能返回 null,表示取不到有效值。
6988
+ */
6989
+ RoutePolicyName?: string;
6990
+ /**
6991
+ * 路由策略描述。
6992
+ 注意:此字段可能返回 null,表示取不到有效值。
6993
+ */
6994
+ RoutePolicyDescription?: string;
6995
+ /**
6996
+ * 路由策略规则列表。
6997
+ 注意:此字段可能返回 null,表示取不到有效值。
6998
+ */
6999
+ RoutePolicyEntrySet?: Array<RoutePolicyEntry>;
7000
+ /**
7001
+ * 路由策略绑定。
7002
+ 注意:此字段可能返回 null,表示取不到有效值。
7003
+ */
7004
+ RoutePolicyAssociationSet?: Array<RoutePolicyAssociation>;
7005
+ /**
7006
+ * 创建时间。
7007
+ 注意:此字段可能返回 null,表示取不到有效值。
7008
+ */
7009
+ CreatedTime?: string;
7010
+ /**
7011
+ * 标签键值对。
7012
+ */
7013
+ TagSet?: Array<Tag>;
7014
+ }
6769
7015
  /**
6770
7016
  * DescribeCcnRouteTableInputPolicys返回参数结构体
6771
7017
  */
@@ -7976,6 +8222,19 @@ export interface ModifyCcnAttachedInstancesAttributeResponse {
7976
8222
  */
7977
8223
  RequestId?: string;
7978
8224
  }
8225
+ /**
8226
+ * UnassignIpv6SubnetCidrBlock请求参数结构体
8227
+ */
8228
+ export interface UnassignIpv6SubnetCidrBlockRequest {
8229
+ /**
8230
+ * 子网所在私有网络`ID`。形如:`vpc-f49l6u0z`。
8231
+ */
8232
+ VpcId: string;
8233
+ /**
8234
+ * `IPv6` 子网段列表。
8235
+ */
8236
+ Ipv6SubnetCidrBlocks: Array<Ipv6SubnetCidrBlock>;
8237
+ }
7979
8238
  /**
7980
8239
  * CreateNetworkAcl请求参数结构体
7981
8240
  */
@@ -8358,6 +8617,23 @@ export interface DescribeNetworkAclQuintupleEntriesRequest {
8358
8617
  */
8359
8618
  Filters?: Array<Filter>;
8360
8619
  }
8620
+ /**
8621
+ * 云联网路由表信息
8622
+ */
8623
+ export interface ModifyRouteTableInfo {
8624
+ /**
8625
+ * 云联网路由表id。
8626
+ */
8627
+ RouteTableId: string;
8628
+ /**
8629
+ * 云联网路由表名称。Name和Description 两者必传一个。
8630
+ */
8631
+ Name?: string;
8632
+ /**
8633
+ * 云联网路由表描述。Name和Description 两者必传一个。
8634
+ */
8635
+ Description?: string;
8636
+ }
8361
8637
  /**
8362
8638
  * 网络探测验证结果。
8363
8639
  */
@@ -8491,6 +8767,15 @@ export interface DescribeSpecificTrafficPackageUsedDetailsRequest {
8491
8767
  */
8492
8768
  Limit?: number;
8493
8769
  }
8770
+ /**
8771
+ * ModifyRoutePolicyAttribute返回参数结构体
8772
+ */
8773
+ export interface ModifyRoutePolicyAttributeResponse {
8774
+ /**
8775
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
8776
+ */
8777
+ RequestId?: string;
8778
+ }
8494
8779
  /**
8495
8780
  * DeleteVpnConnection请求参数结构体
8496
8781
  */
@@ -9412,13 +9697,77 @@ export interface BgpConfigAndAsn {
9412
9697
  RemoteBgpAsn?: string;
9413
9698
  }
9414
9699
  /**
9415
- * DescribeAddressBandwidthRange请求参数结构体
9700
+ * 云联网(CCN)关联实例(Instance)对象
9416
9701
  */
9417
- export interface DescribeAddressBandwidthRangeRequest {
9702
+ export interface CcnAttachedInstance {
9703
+ /**
9704
+ * 云联网实例ID。
9705
+ */
9706
+ CcnId?: string;
9707
+ /**
9708
+ * 关联实例类型:
9709
+ <li>`VPC`:私有网络</li>
9710
+ <li>`DIRECTCONNECT`:专线网关</li>
9711
+ <li>`BMVPC`:黑石私有网络</li>
9712
+ */
9713
+ InstanceType?: string;
9714
+ /**
9715
+ * 关联实例ID。
9716
+ */
9717
+ InstanceId?: string;
9718
+ /**
9719
+ * 关联实例名称。
9720
+ */
9721
+ InstanceName?: string;
9722
+ /**
9723
+ * 关联实例所属大区,例如:ap-guangzhou。
9724
+ */
9725
+ InstanceRegion?: string;
9726
+ /**
9727
+ * 关联实例所属UIN(根账号)。
9728
+ */
9729
+ InstanceUin?: string;
9730
+ /**
9731
+ * 关联实例CIDR。
9732
+ */
9733
+ CidrBlock?: Array<string>;
9734
+ /**
9735
+ * 关联实例状态:
9736
+ <li>`PENDING`:申请中</li>
9737
+ <li>`ACTIVE`:已连接</li>
9738
+ <li>`EXPIRED`:已过期</li>
9739
+ <li>`REJECTED`:已拒绝</li>
9740
+ <li>`DELETED`:已删除</li>
9741
+ <li>`FAILED`:失败的(2小时后将异步强制解关联)</li>
9742
+ <li>`ATTACHING`:关联中</li>
9743
+ <li>`DETACHING`:解关联中</li>
9744
+ <li>`DETACHFAILED`:解关联失败(2小时后将异步强制解关联)</li>
9745
+ */
9746
+ State?: string;
9747
+ /**
9748
+ * 关联时间。
9749
+ */
9750
+ AttachedTime?: string;
9751
+ /**
9752
+ * 云联网所属UIN(根账号)。
9753
+ */
9754
+ CcnUin?: string;
9755
+ /**
9756
+ * 关联实例所属的大地域,如: CHINA_MAINLAND
9757
+ */
9758
+ InstanceArea?: string;
9759
+ /**
9760
+ * 备注
9761
+ */
9762
+ Description?: string;
9418
9763
  /**
9419
- * EIP资源ID列表,单次查询上限20,可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取AddressId。
9764
+ * 路由表ID
9420
9765
  */
9421
- AddressIds?: Array<string>;
9766
+ RouteTableId?: string;
9767
+ /**
9768
+ * 路由表名称
9769
+ */
9770
+ RouteTableName?: string;
9422
9771
  }
9423
9772
  /**
9424
9773
  * SecurityPolicyDatabase策略
@@ -10214,6 +10563,27 @@ export interface ModifySnapshotPoliciesResponse {
10214
10563
  */
10215
10564
  RequestId?: string;
10216
10565
  }
10566
+ /**
10567
+ * ResetRoutePolicyEntries请求参数结构体
10568
+ */
10569
+ export interface ResetRoutePolicyEntriesRequest {
10570
+ /**
10571
+ * 路由接收策略实例ID,例如:rrp-azd4dt1c。
10572
+ */
10573
+ RoutePolicyId: string;
10574
+ /**
10575
+ * 路由接收策略条目列表。需要指定路由策略条目ID(RoutePolicyEntryId)。
10576
+ */
10577
+ RoutePolicyEntrySet?: Array<RoutePolicyEntry>;
10578
+ /**
10579
+ * 路由接收策略描述。
10580
+ */
10581
+ RoutePolicyDescription?: string;
10582
+ /**
10583
+ * 路由接收策略名字。
10584
+ */
10585
+ RoutePolicyName?: string;
10586
+ }
10217
10587
  /**
10218
10588
  * InquiryPriceRenewAddresses返回参数结构体
10219
10589
  */
@@ -10245,6 +10615,15 @@ export interface DeleteCdcNetPlanesResponse {
10245
10615
  */
10246
10616
  RequestId?: string;
10247
10617
  }
10618
+ /**
10619
+ * CreateRoutePolicyAssociations请求参数结构体
10620
+ */
10621
+ export interface CreateRoutePolicyAssociationsRequest {
10622
+ /**
10623
+ * 路由接收策略绑定对象列表。
10624
+ */
10625
+ RoutePolicyAssociationSet: Array<RoutePolicyAssociation>;
10626
+ }
10248
10627
  /**
10249
10628
  * RenewAddresses返回参数结构体
10250
10629
  */
@@ -11030,6 +11409,15 @@ export interface DescribeServiceTemplateGroupInstancesResponse {
11030
11409
  */
11031
11410
  RequestId?: string;
11032
11411
  }
11412
+ /**
11413
+ * ReplaceRoutePolicyAssociations请求参数结构体
11414
+ */
11415
+ export interface ReplaceRoutePolicyAssociationsRequest {
11416
+ /**
11417
+ * 路由接收策略绑定对象列表。需要指定路由接收策略实例ID(RoutePolicyId)和路由表实例ID(RouteTableId)。
11418
+ */
11419
+ RoutePolicyAssociationSet: Array<RoutePolicyAssociation>;
11420
+ }
11033
11421
  /**
11034
11422
  * CreateCdcNetPlanes返回参数结构体
11035
11423
  */
@@ -11192,31 +11580,13 @@ export interface ModifyBandwidthPackageBandwidthResponse {
11192
11580
  RequestId?: string;
11193
11581
  }
11194
11582
  /**
11195
- * DescribeDirectConnectGatewayCcnRoutes请求参数结构体
11583
+ * DeleteRoutePolicyAssociations请求参数结构体
11196
11584
  */
11197
- export interface DescribeDirectConnectGatewayCcnRoutesRequest {
11585
+ export interface DeleteRoutePolicyAssociationsRequest {
11198
11586
  /**
11199
- * 专线网关ID,形如:`dcg-prpqlmg1`。
11200
- */
11201
- DirectConnectGatewayId: string;
11202
- /**
11203
- * 云联网路由学习类型,可选值:
11204
- <li>`BGP` - 自动学习。</li>
11205
- <li>`STATIC` - 静态,即用户配置,默认值。</li>
11206
- */
11207
- CcnRouteType?: string;
11208
- /**
11209
- * 地址类型,支持:IPv4、IPv6。默认IPv4。
11210
- */
11211
- AddressType?: string;
11212
- /**
11213
- * 偏移量。
11214
- */
11215
- Offset?: number;
11216
- /**
11217
- * 返回数量。
11587
+ * 路由策略绑定对象列表,删除路由策略绑定时,仅需使用RoutePolicyAssociation的RouteTableId字段和RoutePolicyId字段(不需要填写Priority字段)。
11218
11588
  */
11219
- Limit?: number;
11589
+ RoutePolicyAssociationSet: Array<RoutePolicyAssociation>;
11220
11590
  }
11221
11591
  /**
11222
11592
  * 云联网(CCN)关联实例(Instance)对象。
@@ -11469,6 +11839,33 @@ export interface ModifyTemplateMemberRequest {
11469
11839
  */
11470
11840
  TemplateMember: Array<MemberInfo>;
11471
11841
  }
11842
+ /**
11843
+ * DescribeDirectConnectGatewayCcnRoutes请求参数结构体
11844
+ */
11845
+ export interface DescribeDirectConnectGatewayCcnRoutesRequest {
11846
+ /**
11847
+ * 专线网关ID,形如:`dcg-prpqlmg1`。
11848
+ */
11849
+ DirectConnectGatewayId: string;
11850
+ /**
11851
+ * 云联网路由学习类型,可选值:
11852
+ <li>`BGP` - 自动学习。</li>
11853
+ <li>`STATIC` - 静态,即用户配置,默认值。</li>
11854
+ */
11855
+ CcnRouteType?: string;
11856
+ /**
11857
+ * 地址类型,支持:IPv4、IPv6。默认IPv4。
11858
+ */
11859
+ AddressType?: string;
11860
+ /**
11861
+ * 偏移量。
11862
+ */
11863
+ Offset?: number;
11864
+ /**
11865
+ * 返回数量。
11866
+ */
11867
+ Limit?: number;
11868
+ }
11472
11869
  /**
11473
11870
  * DisableCcnRoutes请求参数结构体
11474
11871
  */
@@ -11928,6 +12325,19 @@ export interface DeleteFlowLogResponse {
11928
12325
  */
11929
12326
  RequestId?: string;
11930
12327
  }
12328
+ /**
12329
+ * ResetRoutePolicyAssociations请求参数结构体
12330
+ */
12331
+ export interface ResetRoutePolicyAssociationsRequest {
12332
+ /**
12333
+ * 路由表实例ID,例如:rtb-azd4dt1c。
12334
+ */
12335
+ RouteTableId: string;
12336
+ /**
12337
+ * 路由策略绑定对象(RoutePolicyAssociation)列表。注意:路由策略绑定中的路由表实例ID(RouteTableId)需要和该接口的RouteTableId参数保持一致(也就是该接口只支持修改同一个路由表实例下的路有策略绑定关系及优先级)。
12338
+ */
12339
+ RoutePolicyAssociationSet: Array<RoutePolicyAssociation>;
12340
+ }
11931
12341
  /**
11932
12342
  * 创建路由添加的指向此通道的路由
11933
12343
  */
@@ -12234,6 +12644,19 @@ export interface DeleteDirectConnectGatewayCcnRoutesRequest {
12234
12644
  */
12235
12645
  AddressType?: string;
12236
12646
  }
12647
+ /**
12648
+ * CheckNetDetectState返回参数结构体
12649
+ */
12650
+ export interface CheckNetDetectStateResponse {
12651
+ /**
12652
+ * 网络探测验证结果对象数组。
12653
+ */
12654
+ NetDetectIpStateSet?: Array<NetDetectIpState>;
12655
+ /**
12656
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
12657
+ */
12658
+ RequestId?: string;
12659
+ }
12237
12660
  /**
12238
12661
  * 全局路由对象。
12239
12662
  */
@@ -15415,17 +15838,13 @@ export interface MigratePrivateIpAddressResponse {
15415
15838
  RequestId?: string;
15416
15839
  }
15417
15840
  /**
15418
- * CheckNetDetectState返回参数结构体
15841
+ * DeleteRoutePolicy请求参数结构体
15419
15842
  */
15420
- export interface CheckNetDetectStateResponse {
15421
- /**
15422
- * 网络探测验证结果对象数组。
15423
- */
15424
- NetDetectIpStateSet?: Array<NetDetectIpState>;
15843
+ export interface DeleteRoutePolicyRequest {
15425
15844
  /**
15426
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId
15845
+ * 路由接收策略唯一ID。
15427
15846
  */
15428
- RequestId?: string;
15847
+ RoutePolicyId: string;
15429
15848
  }
15430
15849
  /**
15431
15850
  * DisassociateVpcEndPointSecurityGroups返回参数结构体
@@ -15654,6 +16073,10 @@ export interface DescribeVpcEndPointServiceWhiteListRequest {
15654
16073
  */
15655
16074
  Filters?: Array<Filter>;
15656
16075
  }
16076
+ /**
16077
+ * DescribeTemplateLimits请求参数结构体
16078
+ */
16079
+ export type DescribeTemplateLimitsRequest = null;
15657
16080
  /**
15658
16081
  * DeleteAddressTemplateGroup返回参数结构体
15659
16082
  */
@@ -17179,6 +17602,10 @@ export interface AssociateAddressRequest {
17179
17602
  */
17180
17603
  InstanceRegion?: string;
17181
17604
  }
17605
+ /**
17606
+ * DescribeAccountAttributes请求参数结构体
17607
+ */
17608
+ export type DescribeAccountAttributesRequest = null;
17182
17609
  /**
17183
17610
  * ModifyPrivateNatGatewayTranslationAclRule返回参数结构体
17184
17611
  */
@@ -17222,6 +17649,46 @@ export interface ModifyCcnRouteTablesRequest {
17222
17649
  */
17223
17650
  RouteTableInfo: Array<ModifyRouteTableInfo>;
17224
17651
  }
17652
+ /**
17653
+ * DescribeRoutePolicyEntries请求参数结构体
17654
+ */
17655
+ export interface DescribeRoutePolicyEntriesRequest {
17656
+ /**
17657
+ * 过滤条件,参数不支持同时指定RoutePolicyEntryIds和Filters。
17658
+ <li>route-policy-id - String - (过滤条件)路由接收策略实例ID,形如:rrp-f49l6u0z。</li>
17659
+ <li>cidr-block - String - (过滤条件)CIDR(只取掩码前的子网部分),形如:10.0.0.0/8。</li>
17660
+ <li>priority - Integer - (过滤条件)优先级,形如:20。</li>
17661
+ <li>gateway-type - String - (过滤条件)下一跳类型,形如:CVM。</li>
17662
+ <li>gateway-id - String - (过滤条件)下一跳实例唯一ID,形如:ccn-f49l6u0z。</li>
17663
+ <li>route-type - String - (过滤条件)路由类型,取值:USER(用户路由),NETD(网络探测下发的路由),CCN(云联网路由)。</li>
17664
+ <li>action - String - (过滤条件)动作,取值:DROP(丢弃),DISABLE(接收且禁用),ACCEPT(接收且启用)。</li>
17665
+ <li>description - String - (过滤条件)描述,形如:TEST。</li>
17666
+ <li>route-policy-item-id - String - (过滤条件)路由接收策略条目唯一ID,形如:rrpi-dq782kw7。</li>
17667
+ */
17668
+ Filters?: Array<Filter>;
17669
+ /**
17670
+ * 偏移量。
17671
+ */
17672
+ Offset?: number;
17673
+ /**
17674
+ * 请求对象个数。
17675
+ */
17676
+ Limit?: number;
17677
+ /**
17678
+ * 排序字段。当前只支持优先级Prioriry字段。
17679
+ */
17680
+ OrderField?: string;
17681
+ /**
17682
+ * 排序方向。
17683
+ ASC:升序。
17684
+ DESC:降序。
17685
+ */
17686
+ OrderDirection?: string;
17687
+ /**
17688
+ * 路由策略条目ID。
17689
+ */
17690
+ RoutePolicyEntryIds?: Array<string>;
17691
+ }
17225
17692
  /**
17226
17693
  * ResetAttachCcnInstances请求参数结构体
17227
17694
  */
@@ -17356,21 +17823,16 @@ export interface SnapshotFileInfo {
17356
17823
  Operator: string;
17357
17824
  }
17358
17825
  /**
17359
- * 云联网路由表信息
17826
+ * DisableGatewayFlowMonitor请求参数结构体
17360
17827
  */
17361
- export interface ModifyRouteTableInfo {
17362
- /**
17363
- * 云联网路由表id。
17364
- */
17365
- RouteTableId: string;
17366
- /**
17367
- * 云联网路由表名称。Name和Description 两者必传一个。
17368
- */
17369
- Name?: string;
17828
+ export interface DisableGatewayFlowMonitorRequest {
17370
17829
  /**
17371
- * 云联网路由表描述。Name和Description 两者必传一个。
17830
+ * 网关实例ID,目前我们支持的网关实例类型有,
17831
+ 专线网关实例ID,形如,`dcg-ltjahce6`;
17832
+ Nat网关实例ID,形如,`nat-ltjahce6`;
17833
+ VPN网关实例ID,形如,`vpn-ltjahce6`。
17372
17834
  */
17373
- Description?: string;
17835
+ GatewayId: string;
17374
17836
  }
17375
17837
  /**
17376
17838
  * ModifyNetworkInterfaceAttribute请求参数结构体
@@ -17903,6 +18365,15 @@ export interface ReplaceCcnRouteTableBroadcastPolicysRequest {
17903
18365
  * UnlockCcns请求参数结构体
17904
18366
  */
17905
18367
  export type UnlockCcnsRequest = null;
18368
+ /**
18369
+ * CreateRoutePolicyEntries返回参数结构体
18370
+ */
18371
+ export interface CreateRoutePolicyEntriesResponse {
18372
+ /**
18373
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
18374
+ */
18375
+ RequestId?: string;
18376
+ }
17906
18377
  /**
17907
18378
  * DescribeSnapshotAttachedInstances请求参数结构体
17908
18379
  */
@@ -18060,6 +18531,23 @@ export interface ModifyCcnAttributeResponse {
18060
18531
  * DescribeSecurityGroupLimits请求参数结构体
18061
18532
  */
18062
18533
  export type DescribeSecurityGroupLimitsRequest = null;
18534
+ /**
18535
+ * 路由接收策略绑定。用来绑定路由表和路由接收策略以及绑定的优先级。
18536
+ */
18537
+ export interface RoutePolicyAssociation {
18538
+ /**
18539
+ * 路由表唯一ID。
18540
+ */
18541
+ RouteTableId?: string;
18542
+ /**
18543
+ * 路由接收策略唯一ID。
18544
+ */
18545
+ RoutePolicyId?: string;
18546
+ /**
18547
+ * 优先级。
18548
+ */
18549
+ Priority?: number;
18550
+ }
18063
18551
  /**
18064
18552
  * DescribeClassicLinkInstances请求参数结构体
18065
18553
  */
@@ -18179,77 +18667,13 @@ export interface HealthCheckConfig {
18179
18667
  ProbeTimeout?: number;
18180
18668
  }
18181
18669
  /**
18182
- * 云联网(CCN)关联实例(Instance)对象
18670
+ * DescribeAddressBandwidthRange请求参数结构体
18183
18671
  */
18184
- export interface CcnAttachedInstance {
18185
- /**
18186
- * 云联网实例ID。
18187
- */
18188
- CcnId?: string;
18189
- /**
18190
- * 关联实例类型:
18191
- <li>`VPC`:私有网络</li>
18192
- <li>`DIRECTCONNECT`:专线网关</li>
18193
- <li>`BMVPC`:黑石私有网络</li>
18194
- */
18195
- InstanceType?: string;
18196
- /**
18197
- * 关联实例ID。
18198
- */
18199
- InstanceId?: string;
18200
- /**
18201
- * 关联实例名称。
18202
- */
18203
- InstanceName?: string;
18204
- /**
18205
- * 关联实例所属大区,例如:ap-guangzhou。
18206
- */
18207
- InstanceRegion?: string;
18208
- /**
18209
- * 关联实例所属UIN(根账号)。
18210
- */
18211
- InstanceUin?: string;
18212
- /**
18213
- * 关联实例CIDR。
18214
- */
18215
- CidrBlock?: Array<string>;
18216
- /**
18217
- * 关联实例状态:
18218
- <li>`PENDING`:申请中</li>
18219
- <li>`ACTIVE`:已连接</li>
18220
- <li>`EXPIRED`:已过期</li>
18221
- <li>`REJECTED`:已拒绝</li>
18222
- <li>`DELETED`:已删除</li>
18223
- <li>`FAILED`:失败的(2小时后将异步强制解关联)</li>
18224
- <li>`ATTACHING`:关联中</li>
18225
- <li>`DETACHING`:解关联中</li>
18226
- <li>`DETACHFAILED`:解关联失败(2小时后将异步强制解关联)</li>
18227
- */
18228
- State?: string;
18229
- /**
18230
- * 关联时间。
18231
- */
18232
- AttachedTime?: string;
18233
- /**
18234
- * 云联网所属UIN(根账号)。
18235
- */
18236
- CcnUin?: string;
18237
- /**
18238
- * 关联实例所属的大地域,如: CHINA_MAINLAND
18239
- */
18240
- InstanceArea?: string;
18241
- /**
18242
- * 备注
18243
- */
18244
- Description?: string;
18245
- /**
18246
- * 路由表ID
18247
- */
18248
- RouteTableId?: string;
18672
+ export interface DescribeAddressBandwidthRangeRequest {
18249
18673
  /**
18250
- * 路由表名称
18674
+ * EIP资源ID列表,单次查询上限20,可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取AddressId。
18251
18675
  */
18252
- RouteTableName?: string;
18676
+ AddressIds?: Array<string>;
18253
18677
  }
18254
18678
  /**
18255
18679
  * CreateAssistantCidr返回参数结构体
@@ -18920,9 +19344,14 @@ export interface InstanceChargePrepaid {
18920
19344
  RenewFlag?: string;
18921
19345
  }
18922
19346
  /**
18923
- * DescribeTemplateLimits请求参数结构体
19347
+ * CreateRoutePolicyAssociations返回参数结构体
18924
19348
  */
18925
- export type DescribeTemplateLimitsRequest = null;
19349
+ export interface CreateRoutePolicyAssociationsResponse {
19350
+ /**
19351
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
19352
+ */
19353
+ RequestId?: string;
19354
+ }
18926
19355
  /**
18927
19356
  * AddTemplateMember请求参数结构体
18928
19357
  */