tencentcloud-sdk-nodejs-tcb 4.0.1053 → 4.1.1

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.
@@ -231,7 +231,6 @@ export interface DescribeEnvDealRegionResponse {
231
231
  export interface DeleteCloudBaseRunServerVersionResponse {
232
232
  /**
233
233
  * 返回结果,succ为成功
234
- 注意:此字段可能返回 null,表示取不到有效值。
235
234
  */
236
235
  Result?: string;
237
236
  /**
@@ -335,53 +334,53 @@ export interface StandaloneGatewayInfo {
335
334
  */
336
335
  InternalClbIp: string;
337
336
  }
337
+ /**
338
+ * EditAuthConfig返回参数结构体
339
+ */
340
+ export interface EditAuthConfigResponse {
341
+ /**
342
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
343
+ */
344
+ RequestId?: string;
345
+ }
338
346
  /**
339
347
  * CloudBaseRun 的 Side 描述定义
340
348
  */
341
349
  export interface CloudBaseRunSideSpec {
342
350
  /**
343
351
  * 容器镜像
344
- 注意:此字段可能返回 null,表示取不到有效值。
345
352
  */
346
353
  ContainerImage?: string;
347
354
  /**
348
355
  * 容器端口
349
- 注意:此字段可能返回 null,表示取不到有效值。
350
356
  */
351
357
  ContainerPort?: number;
352
358
  /**
353
359
  * 容器的名称
354
- 注意:此字段可能返回 null,表示取不到有效值。
355
360
  */
356
361
  ContainerName?: string;
357
362
  /**
358
363
  * kv的json字符串
359
- 注意:此字段可能返回 null,表示取不到有效值。
360
364
  */
361
365
  EnvVar?: string;
362
366
  /**
363
367
  * InitialDelaySeconds 延迟多长时间启动健康检查
364
- 注意:此字段可能返回 null,表示取不到有效值。
365
368
  */
366
369
  InitialDelaySeconds?: number;
367
370
  /**
368
371
  * CPU大小
369
- 注意:此字段可能返回 null,表示取不到有效值。
370
372
  */
371
373
  Cpu?: number;
372
374
  /**
373
375
  * 内存大小(单位:M)
374
- 注意:此字段可能返回 null,表示取不到有效值。
375
376
  */
376
377
  Mem?: number;
377
378
  /**
378
379
  * 安全特性
379
- 注意:此字段可能返回 null,表示取不到有效值。
380
380
  */
381
381
  Security?: CloudBaseSecurityContext;
382
382
  /**
383
383
  * 挂载信息
384
- 注意:此字段可能返回 null,表示取不到有效值。
385
384
  */
386
385
  VolumeMountInfos?: Array<CloudBaseRunVolumeMount>;
387
386
  }
@@ -654,147 +653,118 @@ export interface DestroyStandaloneGatewayRequest {
654
653
  export interface CloudRunServiceSimpleVersionSnapshot {
655
654
  /**
656
655
  * 版本名
657
- 注意:此字段可能返回 null,表示取不到有效值。
658
656
  */
659
657
  VersionName?: string;
660
658
  /**
661
659
  * 版本备注
662
- 注意:此字段可能返回 null,表示取不到有效值。
663
660
  */
664
661
  Remark?: string;
665
662
  /**
666
663
  * cpu规格
667
- 注意:此字段可能返回 null,表示取不到有效值。
668
664
  */
669
665
  Cpu?: number;
670
666
  /**
671
667
  * 内存规格
672
- 注意:此字段可能返回 null,表示取不到有效值。
673
668
  */
674
669
  Mem?: number;
675
670
  /**
676
671
  * 最小副本数
677
- 注意:此字段可能返回 null,表示取不到有效值。
678
672
  */
679
673
  MinNum?: number;
680
674
  /**
681
675
  * 最大副本数
682
- 注意:此字段可能返回 null,表示取不到有效值。
683
676
  */
684
677
  MaxNum?: number;
685
678
  /**
686
679
  * 镜像url
687
- 注意:此字段可能返回 null,表示取不到有效值。
688
680
  */
689
681
  ImageUrl?: string;
690
682
  /**
691
683
  * 扩容策略
692
- 注意:此字段可能返回 null,表示取不到有效值。
693
684
  */
694
685
  PolicyType?: string;
695
686
  /**
696
687
  * 策略阈值
697
- 注意:此字段可能返回 null,表示取不到有效值。
698
688
  */
699
689
  PolicyThreshold?: number;
700
690
  /**
701
691
  * 环境参数
702
- 注意:此字段可能返回 null,表示取不到有效值。
703
692
  */
704
693
  EnvParams?: string;
705
694
  /**
706
695
  * 容器端口
707
- 注意:此字段可能返回 null,表示取不到有效值。
708
696
  */
709
697
  ContainerPort?: number;
710
698
  /**
711
699
  * 创建时间
712
- 注意:此字段可能返回 null,表示取不到有效值。
713
700
  */
714
701
  CreateTime?: string;
715
702
  /**
716
703
  * 更新时间
717
- 注意:此字段可能返回 null,表示取不到有效值。
718
704
  */
719
705
  UpdateTime?: string;
720
706
  /**
721
707
  * 更新类型
722
- 注意:此字段可能返回 null,表示取不到有效值。
723
708
  */
724
709
  UploadType?: string;
725
710
  /**
726
711
  * dockerfile路径
727
- 注意:此字段可能返回 null,表示取不到有效值。
728
712
  */
729
713
  DockerfilePath?: string;
730
714
  /**
731
715
  * 构建路径
732
- 注意:此字段可能返回 null,表示取不到有效值。
733
716
  */
734
717
  BuildDir?: string;
735
718
  /**
736
719
  * repo类型
737
- 注意:此字段可能返回 null,表示取不到有效值。
738
720
  */
739
721
  RepoType?: string;
740
722
  /**
741
723
  * 仓库
742
- 注意:此字段可能返回 null,表示取不到有效值。
743
724
  */
744
725
  Repo?: string;
745
726
  /**
746
727
  * 分支
747
- 注意:此字段可能返回 null,表示取不到有效值。
748
728
  */
749
729
  Branch?: string;
750
730
  /**
751
731
  * 环境id
752
- 注意:此字段可能返回 null,表示取不到有效值。
753
732
  */
754
733
  EnvId?: string;
755
734
  /**
756
735
  * 服务名
757
- 注意:此字段可能返回 null,表示取不到有效值。
758
736
  */
759
737
  ServerName?: string;
760
738
  /**
761
739
  * package名字
762
- 注意:此字段可能返回 null,表示取不到有效值。
763
740
  */
764
741
  PackageName?: string;
765
742
  /**
766
743
  * package版本
767
- 注意:此字段可能返回 null,表示取不到有效值。
768
744
  */
769
745
  PackageVersion?: string;
770
746
  /**
771
747
  * 自定义log路径
772
- 注意:此字段可能返回 null,表示取不到有效值。
773
748
  */
774
749
  CustomLogs?: string;
775
750
  /**
776
751
  * 延时健康检查时间
777
- 注意:此字段可能返回 null,表示取不到有效值。
778
752
  */
779
753
  InitialDelaySeconds?: number;
780
754
  /**
781
755
  * snapshot名
782
- 注意:此字段可能返回 null,表示取不到有效值。
783
756
  */
784
757
  SnapshotName?: string;
785
758
  /**
786
759
  * 镜像信息
787
- 注意:此字段可能返回 null,表示取不到有效值。
788
760
  */
789
761
  ImageInfo?: CloudBaseRunImageInfo;
790
762
  /**
791
763
  * 代码仓库信息
792
- 注意:此字段可能返回 null,表示取不到有效值。
793
764
  */
794
765
  CodeDetail?: CloudBaseCodeRepoDetail;
795
766
  /**
796
767
  * 状态
797
- 注意:此字段可能返回 null,表示取不到有效值。
798
768
  */
799
769
  Status?: string;
800
770
  }
@@ -1231,17 +1201,14 @@ export interface DescribeCloudBaseRunServerRequest {
1231
1201
  export interface CloudBaseRunEmptyDirVolumeSource {
1232
1202
  /**
1233
1203
  * 启用emptydir数据卷
1234
- 注意:此字段可能返回 null,表示取不到有效值。
1235
1204
  */
1236
1205
  EnableEmptyDirVolume?: boolean;
1237
1206
  /**
1238
1207
  * "","Memory","HugePages"
1239
- 注意:此字段可能返回 null,表示取不到有效值。
1240
1208
  */
1241
1209
  Medium?: string;
1242
1210
  /**
1243
1211
  * emptydir数据卷大小
1244
- 注意:此字段可能返回 null,表示取不到有效值。
1245
1212
  */
1246
1213
  SizeLimit?: string;
1247
1214
  }
@@ -1251,17 +1218,14 @@ export interface CloudBaseRunEmptyDirVolumeSource {
1251
1218
  export interface CloudBaseRunVolumeMount {
1252
1219
  /**
1253
1220
  * 资源名
1254
- 注意:此字段可能返回 null,表示取不到有效值。
1255
1221
  */
1256
1222
  Name?: string;
1257
1223
  /**
1258
1224
  * 挂载路径
1259
- 注意:此字段可能返回 null,表示取不到有效值。
1260
1225
  */
1261
1226
  MountPath?: string;
1262
1227
  /**
1263
1228
  * 是否只读
1264
- 注意:此字段可能返回 null,表示取不到有效值。
1265
1229
  */
1266
1230
  ReadOnly?: boolean;
1267
1231
  /**
@@ -1271,7 +1235,6 @@ export interface CloudBaseRunVolumeMount {
1271
1235
  NfsVolumes?: Array<CloudBaseRunNfsVolumeSource>;
1272
1236
  /**
1273
1237
  * 挂载配置
1274
- 注意:此字段可能返回 null,表示取不到有效值。
1275
1238
  */
1276
1239
  MountPropagation?: string;
1277
1240
  }
@@ -1298,17 +1261,37 @@ export interface DescribePostpayFreeQuotasRequest {
1298
1261
  EnvId: string;
1299
1262
  }
1300
1263
  /**
1301
- * DescribeActivityInfo返回参数结构体
1264
+ * DeleteGatewayVersion请求参数结构体
1302
1265
  */
1303
- export interface DescribeActivityInfoResponse {
1266
+ export interface DeleteGatewayVersionRequest {
1304
1267
  /**
1305
- * 活动详情
1268
+ * 环境id
1306
1269
  */
1307
- ActivityInfoList: Array<ActivityInfoItem>;
1270
+ EnvId: string;
1308
1271
  /**
1309
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1272
+ * 网关id
1310
1273
  */
1311
- RequestId?: string;
1274
+ GatewayId: string;
1275
+ /**
1276
+ * 版本名
1277
+ */
1278
+ VersionName: string;
1279
+ /**
1280
+ * 是否删除服务
1281
+ */
1282
+ IsDeleteServer?: boolean;
1283
+ /**
1284
+ * 是否删除镜像
1285
+ */
1286
+ IsDeleteImage?: boolean;
1287
+ /**
1288
+ * 是否强制删除
1289
+ */
1290
+ IsForce?: boolean;
1291
+ /**
1292
+ * 操作者记录
1293
+ */
1294
+ OperatorRemark?: string;
1312
1295
  }
1313
1296
  /**
1314
1297
  * CloudBaseRun 镜像信息
@@ -1765,35 +1748,6 @@ export interface DescribeGatewayCurveDataResponse {
1765
1748
  */
1766
1749
  RequestId?: string;
1767
1750
  }
1768
- /**
1769
- * 活动信息
1770
- */
1771
- export interface ActivityInfoItem {
1772
- /**
1773
- * 活动id
1774
- */
1775
- ActivityId?: number;
1776
- /**
1777
- * 记录插入时间
1778
- */
1779
- CreateTime?: string;
1780
- /**
1781
- * 记录最后一次变更时间
1782
- */
1783
- UpdateTime?: string;
1784
- /**
1785
- * 活动开始时间
1786
- */
1787
- StartTime?: string;
1788
- /**
1789
- * 活动结束时间
1790
- */
1791
- ExpireTime?: string;
1792
- /**
1793
- * 自定义备注信息
1794
- */
1795
- Tag?: string;
1796
- }
1797
1751
  /**
1798
1752
  * 键值对
1799
1753
  */
@@ -1808,37 +1762,29 @@ export interface KVPair {
1808
1762
  Value: string;
1809
1763
  }
1810
1764
  /**
1811
- * DeleteGatewayVersion请求参数结构体
1765
+ * 短信免费量
1812
1766
  */
1813
- export interface DeleteGatewayVersionRequest {
1814
- /**
1815
- * 环境id
1816
- */
1817
- EnvId: string;
1818
- /**
1819
- * 网关id
1820
- */
1821
- GatewayId: string;
1767
+ export interface SmsFreeQuota {
1822
1768
  /**
1823
- * 版本名
1769
+ * 免费量总条数
1824
1770
  */
1825
- VersionName: string;
1771
+ FreeQuota?: number;
1826
1772
  /**
1827
- * 是否删除服务
1773
+ * 共计已使用总条数
1828
1774
  */
1829
- IsDeleteServer?: boolean;
1775
+ TotalUsedQuota?: number;
1830
1776
  /**
1831
- * 是否删除镜像
1777
+ * 免费周期起点,0000-00-00 00:00:00 形式
1832
1778
  */
1833
- IsDeleteImage?: boolean;
1779
+ CycleStart?: string;
1834
1780
  /**
1835
- * 是否强制删除
1781
+ * 免费周期终点,0000-00-00 00:00:00 形式
1836
1782
  */
1837
- IsForce?: boolean;
1783
+ CycleEnd?: string;
1838
1784
  /**
1839
- * 操作者记录
1785
+ * 今天已使用总条数
1840
1786
  */
1841
- OperatorRemark?: string;
1787
+ TodayUsedQuota?: number;
1842
1788
  }
1843
1789
  /**
1844
1790
  * 函数的信息
@@ -2172,27 +2118,22 @@ export interface DescribeEnvsRequest {
2172
2118
  export interface CloudBaseRunVersionFlowItem {
2173
2119
  /**
2174
2120
  * 版本名称
2175
- 注意:此字段可能返回 null,表示取不到有效值。
2176
2121
  */
2177
2122
  VersionName: string;
2178
2123
  /**
2179
2124
  * 流量占比
2180
- 注意:此字段可能返回 null,表示取不到有效值。
2181
2125
  */
2182
2126
  FlowRatio?: number;
2183
2127
  /**
2184
2128
  * 流量参数键值对(URL参数/HEADERS参数)
2185
- 注意:此字段可能返回 null,表示取不到有效值。
2186
2129
  */
2187
2130
  UrlParam?: ObjectKV;
2188
2131
  /**
2189
2132
  * 优先级
2190
- 注意:此字段可能返回 null,表示取不到有效值。
2191
2133
  */
2192
2134
  Priority?: number;
2193
2135
  /**
2194
2136
  * 是否是默认兜底版本
2195
- 注意:此字段可能返回 null,表示取不到有效值。
2196
2137
  */
2197
2138
  IsDefaultPriority?: boolean;
2198
2139
  }
@@ -2315,7 +2256,6 @@ export interface CbrRepoInfo {
2315
2256
  RepoLanguage?: string;
2316
2257
  /**
2317
2258
  * 分支名称
2318
- 注意:此字段可能返回 null,表示取不到有效值。
2319
2259
  */
2320
2260
  Branch?: string;
2321
2261
  }
@@ -2356,36 +2296,13 @@ export interface DescribeBillingInfoRequest {
2356
2296
  export interface HpaPolicy {
2357
2297
  /**
2358
2298
  * 策略类型
2359
- 注意:此字段可能返回 null,表示取不到有效值。
2360
2299
  */
2361
2300
  PolicyType?: string;
2362
2301
  /**
2363
2302
  * 策略阈值
2364
- 注意:此字段可能返回 null,表示取不到有效值。
2365
2303
  */
2366
2304
  PolicyThreshold?: number;
2367
2305
  }
2368
- /**
2369
- * ImageSecretInfo的信息
2370
- */
2371
- export interface CloudBaseRunImageSecretInfo {
2372
- /**
2373
- * 镜像地址
2374
- */
2375
- RegistryServer?: string;
2376
- /**
2377
- * 用户名
2378
- */
2379
- UserName?: string;
2380
- /**
2381
- * 仓库密码
2382
- */
2383
- Password?: string;
2384
- /**
2385
- * 邮箱
2386
- */
2387
- Email?: string;
2388
- }
2389
2306
  /**
2390
2307
  * CreateCloudBaseRunResource返回参数结构体
2391
2308
  */
@@ -2948,17 +2865,14 @@ export interface CreateHostingDomainResponse {
2948
2865
  export interface TkeClusterInfo {
2949
2866
  /**
2950
2867
  * 集群ID
2951
- 注意:此字段可能返回 null,表示取不到有效值。
2952
2868
  */
2953
2869
  ClusterId?: string;
2954
2870
  /**
2955
2871
  * 集群的vpcId
2956
- 注意:此字段可能返回 null,表示取不到有效值。
2957
2872
  */
2958
2873
  VpcId?: string;
2959
2874
  /**
2960
2875
  * 版本内网CLB所在子网Id
2961
- 注意:此字段可能返回 null,表示取不到有效值。
2962
2876
  */
2963
2877
  VersionClbSubnetId?: string;
2964
2878
  }
@@ -3620,37 +3534,30 @@ export interface DescribeEndUserStatisticRequest {
3620
3534
  export interface CloudBaseRunVpcSubnet {
3621
3535
  /**
3622
3536
  * 子网id
3623
- 注意:此字段可能返回 null,表示取不到有效值。
3624
3537
  */
3625
3538
  Id?: string;
3626
3539
  /**
3627
3540
  * 子网的ipv4
3628
- 注意:此字段可能返回 null,表示取不到有效值。
3629
3541
  */
3630
3542
  Cidr?: string;
3631
3543
  /**
3632
3544
  * 可用区
3633
- 注意:此字段可能返回 null,表示取不到有效值。
3634
3545
  */
3635
3546
  Zone?: string;
3636
3547
  /**
3637
3548
  * 类型
3638
- 注意:此字段可能返回 null,表示取不到有效值。
3639
3549
  */
3640
3550
  Type?: string;
3641
3551
  /**
3642
3552
  * subnet类型
3643
- 注意:此字段可能返回 null,表示取不到有效值。
3644
3553
  */
3645
3554
  Target?: string;
3646
3555
  /**
3647
3556
  * 地域
3648
- 注意:此字段可能返回 null,表示取不到有效值。
3649
3557
  */
3650
3558
  Region?: string;
3651
3559
  /**
3652
3560
  * 名字
3653
- 注意:此字段可能返回 null,表示取不到有效值。
3654
3561
  */
3655
3562
  Name?: string;
3656
3563
  }
@@ -3764,7 +3671,6 @@ export interface DescribeCloudBaseRunResourceForExtendResponse {
3764
3671
  Region?: string;
3765
3672
  /**
3766
3673
  * 子网信息
3767
- 注意:此字段可能返回 null,表示取不到有效值。
3768
3674
  */
3769
3675
  SubnetIds?: Array<CloudBaseRunVpcSubnet>;
3770
3676
  /**
@@ -3973,13 +3879,10 @@ export interface DatabasesInfo {
3973
3879
  }
3974
3880
  /**
3975
3881
  * cloudrun安全特性
3976
-
3977
-
3978
3882
  */
3979
3883
  export interface CloudBaseSecurityContext {
3980
3884
  /**
3981
3885
  * 安全特性
3982
- 注意:此字段可能返回 null,表示取不到有效值。
3983
3886
  */
3984
3887
  Capabilities?: CloudBaseCapabilities;
3985
3888
  }
@@ -4051,31 +3954,6 @@ export interface DescribeDatabaseACLRequest {
4051
3954
  */
4052
3955
  CollectionName: string;
4053
3956
  }
4054
- /**
4055
- * 短信免费量
4056
- */
4057
- export interface SmsFreeQuota {
4058
- /**
4059
- * 免费量总条数
4060
- */
4061
- FreeQuota?: number;
4062
- /**
4063
- * 共计已使用总条数
4064
- */
4065
- TotalUsedQuota?: number;
4066
- /**
4067
- * 免费周期起点,0000-00-00 00:00:00 形式
4068
- */
4069
- CycleStart?: string;
4070
- /**
4071
- * 免费周期终点,0000-00-00 00:00:00 形式
4072
- */
4073
- CycleEnd?: string;
4074
- /**
4075
- * 今天已使用总条数
4076
- */
4077
- TodayUsedQuota?: number;
4078
- }
4079
3957
  /**
4080
3958
  * CreateCloudBaseRunServerVersion返回参数结构体
4081
3959
  */
@@ -4338,7 +4216,6 @@ export interface DescribeWxCloudBaseRunEnvsRequest {
4338
4216
  export interface CloudBaseRunServiceVolumeHostPath {
4339
4217
  /**
4340
4218
  * 主机路径
4341
- 注意:此字段可能返回 null,表示取不到有效值。
4342
4219
  */
4343
4220
  Path?: string;
4344
4221
  }
@@ -4392,13 +4269,25 @@ export interface DescribeCurveDataRequest {
4392
4269
  ResourceID?: string;
4393
4270
  }
4394
4271
  /**
4395
- * DescribeActivityInfo请求参数结构体
4272
+ * ImageSecretInfo的信息
4396
4273
  */
4397
- export interface DescribeActivityInfoRequest {
4274
+ export interface CloudBaseRunImageSecretInfo {
4398
4275
  /**
4399
- * 活动id列表
4276
+ * 镜像地址
4400
4277
  */
4401
- ActivityIdList?: Array<number | bigint>;
4278
+ RegistryServer?: string;
4279
+ /**
4280
+ * 用户名
4281
+ */
4282
+ UserName?: string;
4283
+ /**
4284
+ * 仓库密码
4285
+ */
4286
+ Password?: string;
4287
+ /**
4288
+ * 邮箱
4289
+ */
4290
+ Email?: string;
4402
4291
  }
4403
4292
  /**
4404
4293
  * BindEnvGateway请求参数结构体
@@ -4625,23 +4514,41 @@ export interface CreateStaticStoreResponse {
4625
4514
  */
4626
4515
  RequestId?: string;
4627
4516
  }
4517
+ /**
4518
+ * EditAuthConfig请求参数结构体
4519
+ */
4520
+ export interface EditAuthConfigRequest {
4521
+ /**
4522
+ * 环境id
4523
+ */
4524
+ EnvId: string;
4525
+ /**
4526
+ * 手机号登录配置 "TRUE", "FALSE", "LOGIN_ONLY"
4527
+ */
4528
+ PhoneNumberLogin?: string;
4529
+ /**
4530
+ * 匿名登录配置 "TRUE", "FALSE"
4531
+ */
4532
+ AnonymousLogin?: string;
4533
+ /**
4534
+ * 用户名密码登录配置 "TRUE", "FALSE"
4535
+ */
4536
+ UsernameLogin?: string;
4537
+ }
4628
4538
  /**
4629
4539
  * vpc信息
4630
4540
  */
4631
4541
  export interface CloudBaseRunVpcInfo {
4632
4542
  /**
4633
4543
  * vpc的id
4634
- 注意:此字段可能返回 null,表示取不到有效值。
4635
4544
  */
4636
4545
  VpcId?: string;
4637
4546
  /**
4638
4547
  * 子网id
4639
- 注意:此字段可能返回 null,表示取不到有效值。
4640
4548
  */
4641
4549
  SubnetIds?: Array<string>;
4642
4550
  /**
4643
4551
  * 创建类型(0=继承; 1=新建; 2=指定)
4644
- 注意:此字段可能返回 null,表示取不到有效值。
4645
4552
  */
4646
4553
  CreateType?: number;
4647
4554
  }
@@ -4777,7 +4684,6 @@ export interface CloudBaseRunVersionPod {
4777
4684
  PodId?: string;
4778
4685
  /**
4779
4686
  * pod ip
4780
- 注意:此字段可能返回 null,表示取不到有效值。
4781
4687
  */
4782
4688
  PodIp?: string;
4783
4689
  /**
@@ -4786,7 +4692,6 @@ export interface CloudBaseRunVersionPod {
4786
4692
  Status?: string;
4787
4693
  /**
4788
4694
  * 创建时间
4789
- 注意:此字段可能返回 null,表示取不到有效值。
4790
4695
  */
4791
4696
  CreateTime?: string;
4792
4697
  }
@@ -5604,32 +5509,26 @@ export interface FreezeCloudBaseRunServersResponse {
5604
5509
  export interface CloudRunServiceVolume {
5605
5510
  /**
5606
5511
  * 名称
5607
- 注意:此字段可能返回 null,表示取不到有效值。
5608
5512
  */
5609
5513
  Name?: string;
5610
5514
  /**
5611
5515
  * NFS的挂载方式
5612
- 注意:此字段可能返回 null,表示取不到有效值。
5613
5516
  */
5614
5517
  NFS?: CloudBaseRunNfsVolumeSource;
5615
5518
  /**
5616
5519
  * secret名称
5617
- 注意:此字段可能返回 null,表示取不到有效值。
5618
5520
  */
5619
5521
  SecretName?: string;
5620
5522
  /**
5621
5523
  * 是否开启临时目录逐步废弃,请使用 EmptyDir
5622
- 注意:此字段可能返回 null,表示取不到有效值。
5623
5524
  */
5624
5525
  EnableEmptyDirVolume?: boolean;
5625
5526
  /**
5626
5527
  * emptydir数据卷详细信息
5627
- 注意:此字段可能返回 null,表示取不到有效值。
5628
5528
  */
5629
5529
  EmptyDir?: CloudBaseRunEmptyDirVolumeSource;
5630
5530
  /**
5631
5531
  * 主机路径挂载信息
5632
- 注意:此字段可能返回 null,表示取不到有效值。
5633
5532
  */
5634
5533
  HostPath?: CloudBaseRunServiceVolumeHostPath;
5635
5534
  }
package/index.d.ts DELETED
@@ -1,2 +0,0 @@
1
- import * as tencentcloud from './tencentcloud';
2
- export default tencentcloud;
package/index.js DELETED
@@ -1,6 +0,0 @@
1
- 'use strict'
2
- Object.defineProperty(exports, '__esModule', { value: true })
3
- const tslib_1 = require('tslib')
4
- const tencentcloud = tslib_1.__importStar(require('./tencentcloud'))
5
- exports.default = tencentcloud
6
- //# sourceMappingURL=index.js.map