tencentcloud-sdk-nodejs-tcb 4.0.1054 → 4.1.2

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