tencentcloud-sdk-nodejs-vpc 4.0.602 → 4.0.608

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.
@@ -367,15 +367,15 @@ export interface DescribeVpcIpv6AddressesRequest {
367
367
  */
368
368
  export interface SslVpnClient {
369
369
  /**
370
- * VPC实例ID
370
+ * VPC实例ID
371
371
  */
372
372
  VpcId: string;
373
373
  /**
374
- * SSL-VPN-SERVER 实例ID
374
+ * SSL-VPN-SERVER 实例ID
375
375
  */
376
376
  SslVpnServerId: string;
377
377
  /**
378
- * 证书状态.
378
+ * 证书状态。
379
379
  0:创建中
380
380
  1:正常
381
381
  2:已停用
@@ -384,19 +384,19 @@ export interface SslVpnClient {
384
384
  */
385
385
  CertStatus: number;
386
386
  /**
387
- * SSL-VPN-CLIENT 实例ID
387
+ * SSL-VPN-CLIENT 实例ID
388
388
  */
389
389
  SslVpnClientId: string;
390
390
  /**
391
- * 证书开始时间
391
+ * 证书开始时间。
392
392
  */
393
393
  CertBeginTime: string;
394
394
  /**
395
- * 证书到期时间
395
+ * 证书到期时间。
396
396
  */
397
397
  CertEndTime: string;
398
398
  /**
399
- * CLIENT NAME
399
+ * CLIENT NAME
400
400
  */
401
401
  Name: string;
402
402
  /**
@@ -590,7 +590,7 @@ export interface DeleteVpnGatewaySslServerResponse {
590
590
  /**
591
591
  * 异步任务ID。
592
592
  */
593
- TaskId: number;
593
+ TaskId?: number;
594
594
  /**
595
595
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
596
596
  */
@@ -1321,51 +1321,51 @@ export interface CreateDirectConnectGatewayRequest {
1321
1321
  */
1322
1322
  export interface CreateVpnGatewaySslServerRequest {
1323
1323
  /**
1324
- * VPN实例ID
1324
+ * VPN网关实例ID
1325
1325
  */
1326
1326
  VpnGatewayId: string;
1327
1327
  /**
1328
- * SSL_VPN_SERVER 实例名
1328
+ * SSL-VPN-SERVER 实例名称,长度不超过60个字节。
1329
1329
  */
1330
1330
  SslVpnServerName: string;
1331
1331
  /**
1332
- * 本端地址网段
1332
+ * 云端地址(CIDR)列表。
1333
1333
  */
1334
1334
  LocalAddress: Array<string>;
1335
1335
  /**
1336
- * 客户端地址网段
1336
+ * 客户端地址网段。
1337
1337
  */
1338
1338
  RemoteAddress: string;
1339
1339
  /**
1340
- * SSL VPN服务端监听协议。当前仅支持 UDP。默认UDP
1340
+ * SSL VPN服务端监听协议。当前仅支持 UDP,默认UDP
1341
1341
  */
1342
1342
  SslVpnProtocol?: string;
1343
1343
  /**
1344
- * SSL VPN服务端监听协议端口。默认1194。
1344
+ * SSL VPN服务端监听协议端口,默认1194。
1345
1345
  */
1346
1346
  SslVpnPort?: number;
1347
1347
  /**
1348
- * 认证算法。可选 'SHA1', 'MD5', 'NONE'。默认NONE
1348
+ * 认证算法。可选 'SHA1', 'MD5', 'NONE',默认NONE
1349
1349
  */
1350
1350
  IntegrityAlgorithm?: string;
1351
1351
  /**
1352
- * 加密算法。可选 'AES-128-CBC', 'AES-192-CBC', 'AES-256-CBC', 'NONE'。默认NONE
1352
+ * 加密算法。可选 'AES-128-CBC','AES-192-CBC', 'AES-256-CBC', 'NONE',默认NONE
1353
1353
  */
1354
1354
  EncryptAlgorithm?: string;
1355
1355
  /**
1356
- * 是否支持压缩。当前仅支持不支持压缩。默认False
1356
+ * 是否支持压缩。当前仅支持不支持压缩,默认False
1357
1357
  */
1358
1358
  Compress?: boolean;
1359
1359
  /**
1360
- * 是否开启SSO认证
1360
+ * 是否开启SSO认证。默认为False
1361
1361
  */
1362
1362
  SsoEnabled?: boolean;
1363
1363
  /**
1364
- * 是否开启策略访问控制
1364
+ * 是否开启策略访问控制。默认为False
1365
1365
  */
1366
1366
  AccessPolicyEnabled?: boolean;
1367
1367
  /**
1368
- * SAML-DATA
1368
+ * SAML-DATA,开启SSO时传。
1369
1369
  */
1370
1370
  SamlData?: string;
1371
1371
  }
@@ -2207,7 +2207,7 @@ export interface DescribeSnapshotFilesRequest {
2207
2207
  */
2208
2208
  Offset?: number;
2209
2209
  /**
2210
- * 返回数量,默认为20,最大为200
2210
+ * 返回数量,默认为20,最大为100
2211
2211
  */
2212
2212
  Limit?: number;
2213
2213
  }
@@ -3164,22 +3164,23 @@ export interface DescribeVpnGatewaySslClientsRequest {
3164
3164
  * 过滤条件,参数不支持同时指定SslVpnClientIds和Filters。
3165
3165
  <li>vpc-id - String - (过滤条件)VPC实例ID形如:vpc-f49l6u0z。</li>
3166
3166
  <li>vpn-gateway-id - String - (过滤条件)VPN实例ID形如:vpngw-5aluhh9t。</li>
3167
- <li>ssl-vpn-server-id - String - (过滤条件)SSL-VPN-SERVER实例ID形如:vpngwSslServer-123456。</li>
3168
- <li>ssl-vpn-client-id - String - (过滤条件)SSL-VPN-CLIENT实例ID形如:vpngwSslClient-123456。</li>
3167
+ <li>ssl-vpn-server-id - String - (过滤条件)SSL-VPN-SERVER实例ID形如:vpns-1j2w6xpx。</li>
3168
+ <li>ssl-vpn-client-id - String - (过滤条件)SSL-VPN-CLIENT实例ID形如:vpnc-3rlxp4nd。</li>
3169
3169
  <li>ssl-vpn-client-name - String - (过滤条件)SSL-VPN-CLIENT实例名称。</li>
3170
3170
  */
3171
3171
  Filters?: Array<Filter>;
3172
3172
  /**
3173
- * 偏移量
3173
+ * 偏移量,默认值0。
3174
3174
  */
3175
3175
  Offset?: number;
3176
3176
  /**
3177
- * 请求对象个数
3177
+ * 请求对象个数,默认值20。
3178
3178
  */
3179
3179
  Limit?: number;
3180
3180
  /**
3181
- * SSL-VPN-CLIENT实例ID。形如:vpngwSslClient-f49l6u0z。每次请求的实例的上限为100。参数不支持同时指定SslVpnClientIds和Filters。
3182
- */
3181
+ * SSL-VPN-CLIENT实例ID。形如:
3182
+ vpns-1jww3xpx。每次请求的实例的上限为100。参数不支持同时指定SslVpnClientIds和Filters。
3183
+ */
3183
3184
  SslVpnClientIds?: Array<string>;
3184
3185
  /**
3185
3186
  * VPN门户网站使用。默认是False。
@@ -3255,11 +3256,11 @@ export interface ModifySecurityGroupAttributeRequest {
3255
3256
  */
3256
3257
  export interface DescribeVpnGatewaySslServersRequest {
3257
3258
  /**
3258
- * 偏移量
3259
+ * 偏移量。
3259
3260
  */
3260
3261
  Offset?: number;
3261
3262
  /**
3262
- * 请求对象个数
3263
+ * 请求对象个数。
3263
3264
  */
3264
3265
  Limit?: number;
3265
3266
  /**
@@ -3268,11 +3269,11 @@ export interface DescribeVpnGatewaySslServersRequest {
3268
3269
  SslVpnServerIds?: Array<string>;
3269
3270
  /**
3270
3271
  * 过滤条件,参数不支持同时指定SslVpnServerIds和Filters。
3271
- <li>vpc-id - String - (过滤条件)VPC实例ID形如:vpc-f49l6u0z。</li>
3272
- <li>vpn-gateway-id - String - (过滤条件)VPN实例ID形如:vpngw-5aluhh9t。</li>
3272
+ <li>vpc-id - String - (过滤条件)VPC实例ID,形如:vpc-f49l6u0z。</li>
3273
+ <li>vpn-gateway-id - String - (过滤条件)VPN实例ID,形如:vpngw-5aluhh9t。</li>
3273
3274
  <li>vpn-gateway-name - String - (过滤条件)VPN实例名称。</li>
3274
3275
  <li>ssl-vpn-server-name - String - (过滤条件)SSL-VPN-SERVER实例名称。</li>
3275
- <li>ssl-vpn-server-id - String - (过滤条件)SSL-VPN-SERVER实例ID形如:vpngwSslServer-123456。</li>
3276
+ <li>ssl-vpn-server-id - String - (过滤条件)SSL-VPN-SERVER实例ID,形如:vpns-xxx。</li>
3276
3277
  */
3277
3278
  Filters?: Array<FilterObject>;
3278
3279
  /**
@@ -4785,11 +4786,11 @@ export interface DescribeVpnGatewaySslClientsResponse {
4785
4786
  /**
4786
4787
  * 符合条件的实例数量。
4787
4788
  */
4788
- TotalCount: number;
4789
+ TotalCount?: number;
4789
4790
  /**
4790
- * 符合条件的实例个数。
4791
+ * SSL-VPN-CLIENT 实例列表。
4791
4792
  */
4792
- SslVpnClientSet: Array<SslVpnClient>;
4793
+ SslVpnClientSet?: Array<SslVpnClient>;
4793
4794
  /**
4794
4795
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4795
4796
  */
@@ -5045,13 +5046,13 @@ export interface ModifyBandwidthPackageAttributeResponse {
5045
5046
  */
5046
5047
  export interface CreateVpnGatewaySslServerResponse {
5047
5048
  /**
5048
- * 创建SSL-VPN server 异步任务ID
5049
+ * 创建SSL-VPN server 异步任务ID
5049
5050
  */
5050
- TaskId: number;
5051
+ TaskId?: number;
5051
5052
  /**
5052
- * SSL-VPN server 唯一ID
5053
+ * SSL-VPN-SERVER 唯一ID
5053
5054
  */
5054
- SslVpnServerId: string;
5055
+ SslVpnServerId?: string;
5055
5056
  /**
5056
5057
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5057
5058
  */
@@ -5619,11 +5620,11 @@ export interface DescribeSnapshotFilesResponse {
5619
5620
  /**
5620
5621
  * 快照文件集合。
5621
5622
  */
5622
- SnapshotFileSet: Array<SnapshotFileInfo>;
5623
+ SnapshotFileSet?: Array<SnapshotFileInfo>;
5623
5624
  /**
5624
5625
  * 符合条件的对象数。
5625
5626
  */
5626
- TotalCount: number;
5627
+ TotalCount?: number;
5627
5628
  /**
5628
5629
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5629
5630
  */
@@ -5955,7 +5956,7 @@ export interface CreateSubnetsRequest {
5955
5956
  */
5956
5957
  export interface DescribeVpcEndPointServiceRequest {
5957
5958
  /**
5958
- * 过滤条件。
5959
+ * 过滤条件。不支持同时传入参数 EndPointServiceIds and Filters。
5959
5960
  <li> service-id - String - (过滤条件)终端节点服务唯一ID。</li>
5960
5961
  <li>service-name - String - (过滤条件)终端节点实例名称。</li>
5961
5962
  <li>service-instance-id - String - (过滤条件)后端服务的唯一ID,比如lb-xxx。</li>
@@ -5971,7 +5972,7 @@ export interface DescribeVpcEndPointServiceRequest {
5971
5972
  */
5972
5973
  Limit?: number;
5973
5974
  /**
5974
- * 终端节点服务ID。
5975
+ * 终端节点服务ID。不支持同时传入参数 EndPointServiceIds and Filters
5975
5976
  */
5976
5977
  EndPointServiceIds?: Array<string>;
5977
5978
  }
@@ -6042,6 +6043,11 @@ export interface AccessPolicy {
6042
6043
  * 更新时间
6043
6044
  */
6044
6045
  UpdateTime: string;
6046
+ /**
6047
+ * Remark
6048
+ 注意:此字段可能返回 null,表示取不到有效值。
6049
+ */
6050
+ Remark?: string;
6045
6051
  }
6046
6052
  /**
6047
6053
  * ModifyCcnAttachedInstancesAttribute返回参数结构体
@@ -7273,7 +7279,7 @@ export interface CreateNetworkInterfaceRequest {
7273
7279
  */
7274
7280
  SecondaryPrivateIpAddressCount?: number;
7275
7281
  /**
7276
- * IP服务质量等级,和SecondaryPrivateIpAddressCount配合使用,可选值:PT、AU、AG、DEFAULT,分别代表白金、金、银、默认四个等级。
7282
+ * IP服务质量等级,和SecondaryPrivateIpAddressCount配合使用,可选值:PT、AU、AG、DEFAULT,分别代表云金、云银、云铜、默认四个等级。
7277
7283
  */
7278
7284
  QosLevel?: string;
7279
7285
  /**
@@ -7793,7 +7799,7 @@ export interface CreateAndAttachNetworkInterfaceRequest {
7793
7799
  */
7794
7800
  SecondaryPrivateIpAddressCount?: number;
7795
7801
  /**
7796
- * IP服务质量等级,和SecondaryPrivateIpAddressCount配合使用,可选值:PT、AU、AG、DEFAULT,分别代表白金、金、银、默认四个等级。
7802
+ * IP服务质量等级,和SecondaryPrivateIpAddressCount配合使用,可选值:PT、AU、AG、DEFAULT,分别代表云金、云银、云铜、默认四个等级。
7797
7803
  */
7798
7804
  QosLevel?: string;
7799
7805
  /**
@@ -8299,11 +8305,11 @@ export interface DescribeVpnGatewaySslServersResponse {
8299
8305
  /**
8300
8306
  * 符合条件的实例数量。
8301
8307
  */
8302
- TotalCount: number;
8308
+ TotalCount?: number;
8303
8309
  /**
8304
8310
  * SSL-VPN-SERVER 实例详细信息列表。
8305
8311
  */
8306
- SslVpnSeverSet: Array<SslVpnSever>;
8312
+ SslVpnSeverSet?: Array<SslVpnSever>;
8307
8313
  /**
8308
8314
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
8309
8315
  */
@@ -8822,7 +8828,7 @@ export interface DescribeCrossBorderFlowMonitorRequest {
8822
8828
  */
8823
8829
  CcnUin: string;
8824
8830
  /**
8825
- * 时间粒度。
8831
+ * 时间粒度。单位为:秒,如60为60s的时间粒度
8826
8832
  */
8827
8833
  Period: number;
8828
8834
  /**
@@ -11387,7 +11393,7 @@ export interface ModifyNetworkInterfaceQosRequest {
11387
11393
  */
11388
11394
  NetworkInterfaceIds: Array<string>;
11389
11395
  /**
11390
- * 服务质量,可选值:PT、AU、AG、DEFAULT,分别代表白金、金、银、默认四个等级。
11396
+ * 服务质量,可选值:PT、AU、AG、DEFAULT,分别代表云金、云银、云铜、默认四个等级。
11391
11397
  */
11392
11398
  QosLevel: string;
11393
11399
  /**
@@ -11511,7 +11517,7 @@ export interface AssignPrivateIpAddressesRequest {
11511
11517
  */
11512
11518
  SecondaryPrivateIpAddressCount?: number;
11513
11519
  /**
11514
- * IP服务质量等级,和SecondaryPrivateIpAddressCount配合使用,可选值:PT、AU、AG、DEFAULT,分别代表白金、金、银、默认四个等级。
11520
+ * IP服务质量等级,和SecondaryPrivateIpAddressCount配合使用,可选值:PT、AU、AG、DEFAULT,分别代表云金、云银、云铜、默认四个等级。
11515
11521
  */
11516
11522
  QosLevel?: string;
11517
11523
  }