tencentcloud-sdk-nodejs-vpc 4.0.548 → 4.0.550

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.
@@ -3230,6 +3230,7 @@ export interface ModifyNetDetectRequest {
3230
3230
  NAT:NAT网关;
3231
3231
  NORMAL_CVM:普通云服务器;
3232
3232
  CCN:云联网网关;
3233
+ NONEXTHOP:无下一跳;
3233
3234
  */
3234
3235
  NextHopType?: string;
3235
3236
  /**
@@ -3239,7 +3240,8 @@ export interface ModifyNetDetectRequest {
3239
3240
  下一跳类型为PEERCONNECTION,取值对等连接ID,形如:pcx-12345678;
3240
3241
  下一跳类型为NAT,取值Nat网关,形如:nat-12345678;
3241
3242
  下一跳类型为NORMAL_CVM,取值云服务器IPv4地址,形如:10.0.0.12;
3242
- 下一跳类型为CCN,取值云联网ID,形如:ccn-44csczop
3243
+ 下一跳类型为CCN,取值云云联网ID,形如:ccn-12345678
3244
+ 下一跳类型为NONEXTHOP,指定网络探测为无下一跳的网络探测;
3243
3245
  */
3244
3246
  NextHopDestination?: string;
3245
3247
  /**
@@ -3292,12 +3294,12 @@ export interface DescribeNetDetectStatesResponse {
3292
3294
  * 符合条件的网络探测验证结果对象数组。
3293
3295
  注意:此字段可能返回 null,表示取不到有效值。
3294
3296
  */
3295
- NetDetectStateSet: Array<NetDetectState>;
3297
+ NetDetectStateSet?: Array<NetDetectState>;
3296
3298
  /**
3297
3299
  * 符合条件的网络探测验证结果对象数量。
3298
3300
  注意:此字段可能返回 null,表示取不到有效值。
3299
3301
  */
3300
- TotalCount: number;
3302
+ TotalCount?: number;
3301
3303
  /**
3302
3304
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3303
3305
  */
@@ -3334,12 +3336,12 @@ export interface AllocateIp6AddressesBandwidthResponse {
3334
3336
  */
3335
3337
  export interface DescribeNetDetectStatesRequest {
3336
3338
  /**
3337
- * 网络探测实例`ID`数组。形如:[`netd-12345678`]
3339
+ * 网络探测实例`ID`数组。形如:[`netd-12345678`]
3338
3340
  */
3339
3341
  NetDetectIds?: Array<string>;
3340
3342
  /**
3341
3343
  * 过滤条件,参数不支持同时指定NetDetectIds和Filters。
3342
- <li>net-detect-id - String - (过滤条件)网络探测实例ID,形如:netd-12345678</li>
3344
+ <li>net-detect-id - String - (过滤条件)网络探测实例ID,形如:netd-12345678。</li>
3343
3345
  */
3344
3346
  Filters?: Array<Filter>;
3345
3347
  /**
@@ -3809,7 +3811,7 @@ export interface ModifyNatGatewayAttributeResponse {
3809
3811
  */
3810
3812
  export interface DescribeNetDetectsRequest {
3811
3813
  /**
3812
- * 网络探测实例`ID`数组。形如:[`netd-12345678`]
3814
+ * 网络探测实例`ID`数组。形如:[`netd-12345678`]
3813
3815
  */
3814
3816
  NetDetectIds?: Array<string>;
3815
3817
  /**
@@ -4749,13 +4751,25 @@ export interface CreateFlowLogResponse {
4749
4751
  */
4750
4752
  export interface DefaultVpcSubnet {
4751
4753
  /**
4752
- * 默认VpcId
4754
+ * 默认VpcId
4753
4755
  */
4754
4756
  VpcId: string;
4755
4757
  /**
4756
- * 默认SubnetId
4758
+ * 默认SubnetId
4757
4759
  */
4758
4760
  SubnetId: string;
4761
+ /**
4762
+ * 默认Vpc名字。
4763
+ */
4764
+ VpcName?: string;
4765
+ /**
4766
+ * 默认Subnet名字。
4767
+ */
4768
+ SubnetName?: string;
4769
+ /**
4770
+ * 默认子网网段。
4771
+ */
4772
+ CidrBlock?: string;
4759
4773
  }
4760
4774
  /**
4761
4775
  * DescribeIp6Translators请求参数结构体
@@ -5153,6 +5167,7 @@ export interface NetDetect {
5153
5167
  NAT:NAT网关;
5154
5168
  NORMAL_CVM:普通云服务器;
5155
5169
  CCN:云联网网关;
5170
+ NONEXTHOP:无下一跳;
5156
5171
  */
5157
5172
  NextHopType: string;
5158
5173
  /**
@@ -5162,7 +5177,8 @@ export interface NetDetect {
5162
5177
  下一跳类型为PEERCONNECTION,取值对等连接ID,形如:pcx-12345678;
5163
5178
  下一跳类型为NAT,取值Nat网关,形如:nat-12345678;
5164
5179
  下一跳类型为NORMAL_CVM,取值云服务器IPv4地址,形如:10.0.0.12;
5165
- 下一跳类型为CCN,取值云联网网关,形如:ccn-12345678;
5180
+ 下一跳类型为CCN,取值云云联网ID,形如:ccn-12345678;
5181
+ 下一跳类型为NONEXTHOP,指定网络探测为无下一跳的网络探测;
5166
5182
  */
5167
5183
  NextHopDestination: string;
5168
5184
  /**
@@ -5502,7 +5518,7 @@ export interface CreateVpnGatewayRoutesResponse {
5502
5518
  */
5503
5519
  export interface CreateNetDetectRequest {
5504
5520
  /**
5505
- * `VPC`实例`ID`。形如:`vpc-12345678`
5521
+ * `VPC`实例`ID`。形如:`vpc-12345678`。
5506
5522
  */
5507
5523
  VpcId: string;
5508
5524
  /**
@@ -5525,6 +5541,7 @@ export interface CreateNetDetectRequest {
5525
5541
  NAT:NAT网关;
5526
5542
  NORMAL_CVM:普通云服务器;
5527
5543
  CCN:云联网网关;
5544
+ NONEXTHOP:无下一跳;
5528
5545
  */
5529
5546
  NextHopType?: string;
5530
5547
  /**
@@ -5534,7 +5551,8 @@ export interface CreateNetDetectRequest {
5534
5551
  下一跳类型为PEERCONNECTION,取值对等连接ID,形如:pcx-12345678;
5535
5552
  下一跳类型为NAT,取值Nat网关,形如:nat-12345678;
5536
5553
  下一跳类型为NORMAL_CVM,取值云服务器IPv4地址,形如:10.0.0.12;
5537
- 下一跳类型为CCN,取值云联网ID,形如:ccn-12345678;
5554
+ 下一跳类型为CCN,取值云云联网ID,形如:ccn-12345678;
5555
+ 下一跳类型为NONEXTHOP,指定网络探测为无下一跳的网络探测;
5538
5556
  */
5539
5557
  NextHopDestination?: string;
5540
5558
  /**
@@ -5964,7 +5982,7 @@ export interface CreateSecurityGroupResponse {
5964
5982
  /**
5965
5983
  * 安全组对象。
5966
5984
  */
5967
- SecurityGroup: SecurityGroup;
5985
+ SecurityGroup?: SecurityGroup;
5968
5986
  /**
5969
5987
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5970
5988
  */
@@ -8662,7 +8680,7 @@ export interface AttachCcnInstancesResponse {
8662
8680
  */
8663
8681
  export interface CreateDefaultVpcResponse {
8664
8682
  /**
8665
- * 默认VPC和子网ID
8683
+ * 默认VPC和子网ID
8666
8684
  */
8667
8685
  Vpc?: DefaultVpcSubnet;
8668
8686
  /**
@@ -9427,7 +9445,7 @@ export interface CreateNetDetectResponse {
9427
9445
  /**
9428
9446
  * 网络探测(NetDetect)对象。
9429
9447
  */
9430
- NetDetect: NetDetect;
9448
+ NetDetect?: NetDetect;
9431
9449
  /**
9432
9450
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
9433
9451
  */
@@ -9544,7 +9562,7 @@ export interface CreateNatGatewayRequest {
9544
9562
  */
9545
9563
  export interface DeleteNetDetectRequest {
9546
9564
  /**
9547
- * 网络探测实例`ID`。形如:`netd-12345678`
9565
+ * 网络探测实例`ID`。形如:`netd-12345678`。
9548
9566
  */
9549
9567
  NetDetectId: string;
9550
9568
  }
@@ -12571,7 +12589,7 @@ export interface CreateSecurityGroupRequest {
12571
12589
  */
12572
12590
  ProjectId?: string;
12573
12591
  /**
12574
- * 指定绑定的标签列表,例如:[{"Key": "city", "Value": "shanghai"}]
12592
+ * 指定绑定的标签列表,例如:[{"Key": "city", "Value": "shanghai"}]
12575
12593
  */
12576
12594
  Tags?: Array<Tag>;
12577
12595
  }