tencentcloud-sdk-nodejs-intl-en 3.0.1374 → 3.0.1376
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.
- package/package.json +1 -1
- package/tencentcloud/billing/v20180709/models.js +11 -11
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/cvm/v20170312/cvm_client.js +4 -4
- package/tencentcloud/cvm/v20170312/models.js +20 -22
- package/tencentcloud/gme/v20180711/models.js +13 -3
- package/tencentcloud/postgres/v20170312/models.js +9 -9
- package/tencentcloud/tcsas/v20250106/models.js +185 -0
- package/tencentcloud/tcsas/v20250106/tcsas_client.js +1 -0
- package/tencentcloud/trtc/v20190722/models.js +315 -83
- package/tencentcloud/trtc/v20190722/trtc_client.js +5 -1
- package/tencentcloud/vod/v20180717/models.js +1 -1
|
@@ -876,6 +876,41 @@ class DeleteUserRequest extends AbstractModel {
|
|
|
876
876
|
}
|
|
877
877
|
}
|
|
878
878
|
|
|
879
|
+
/**
|
|
880
|
+
* Subpackage information.
|
|
881
|
+
* @class
|
|
882
|
+
*/
|
|
883
|
+
class MNPVersionSubPackageInfo extends AbstractModel {
|
|
884
|
+
constructor(){
|
|
885
|
+
super();
|
|
886
|
+
|
|
887
|
+
/**
|
|
888
|
+
* Package name.
|
|
889
|
+
* @type {string || null}
|
|
890
|
+
*/
|
|
891
|
+
this.Name = null;
|
|
892
|
+
|
|
893
|
+
/**
|
|
894
|
+
* Package size.
|
|
895
|
+
* @type {number || null}
|
|
896
|
+
*/
|
|
897
|
+
this.Size = null;
|
|
898
|
+
|
|
899
|
+
}
|
|
900
|
+
|
|
901
|
+
/**
|
|
902
|
+
* @private
|
|
903
|
+
*/
|
|
904
|
+
deserialize(params) {
|
|
905
|
+
if (!params) {
|
|
906
|
+
return;
|
|
907
|
+
}
|
|
908
|
+
this.Name = 'Name' in params ? params.Name : null;
|
|
909
|
+
this.Size = 'Size' in params ? params.Size : null;
|
|
910
|
+
|
|
911
|
+
}
|
|
912
|
+
}
|
|
913
|
+
|
|
879
914
|
/**
|
|
880
915
|
* CreateMNPVersion request structure.
|
|
881
916
|
* @class
|
|
@@ -914,6 +949,36 @@ class CreateMNPVersionRequest extends AbstractModel {
|
|
|
914
949
|
*/
|
|
915
950
|
this.MNPVersionIntro = null;
|
|
916
951
|
|
|
952
|
+
/**
|
|
953
|
+
* <p>Version type. Valid values: 1: Debug; 2: Development. Default value: 2.</p>
|
|
954
|
+
* @type {number || null}
|
|
955
|
+
*/
|
|
956
|
+
this.VersionType = null;
|
|
957
|
+
|
|
958
|
+
/**
|
|
959
|
+
* <p>Compilation condition.</p>
|
|
960
|
+
* @type {string || null}
|
|
961
|
+
*/
|
|
962
|
+
this.CompileCondition = null;
|
|
963
|
+
|
|
964
|
+
/**
|
|
965
|
+
* <p>Compilation configuration.</p>
|
|
966
|
+
* @type {string || null}
|
|
967
|
+
*/
|
|
968
|
+
this.CompileConfig = null;
|
|
969
|
+
|
|
970
|
+
/**
|
|
971
|
+
* <p>CI/CD key ID.</p>
|
|
972
|
+
* @type {string || null}
|
|
973
|
+
*/
|
|
974
|
+
this.PipelineId = null;
|
|
975
|
+
|
|
976
|
+
/**
|
|
977
|
+
* <p>Internal file URL.</p>
|
|
978
|
+
* @type {string || null}
|
|
979
|
+
*/
|
|
980
|
+
this.FileInnerUrl = null;
|
|
981
|
+
|
|
917
982
|
}
|
|
918
983
|
|
|
919
984
|
/**
|
|
@@ -928,6 +993,11 @@ class CreateMNPVersionRequest extends AbstractModel {
|
|
|
928
993
|
this.FileUrl = 'FileUrl' in params ? params.FileUrl : null;
|
|
929
994
|
this.PlatformId = 'PlatformId' in params ? params.PlatformId : null;
|
|
930
995
|
this.MNPVersionIntro = 'MNPVersionIntro' in params ? params.MNPVersionIntro : null;
|
|
996
|
+
this.VersionType = 'VersionType' in params ? params.VersionType : null;
|
|
997
|
+
this.CompileCondition = 'CompileCondition' in params ? params.CompileCondition : null;
|
|
998
|
+
this.CompileConfig = 'CompileConfig' in params ? params.CompileConfig : null;
|
|
999
|
+
this.PipelineId = 'PipelineId' in params ? params.PipelineId : null;
|
|
1000
|
+
this.FileInnerUrl = 'FileInnerUrl' in params ? params.FileInnerUrl : null;
|
|
931
1001
|
|
|
932
1002
|
}
|
|
933
1003
|
}
|
|
@@ -2756,6 +2826,12 @@ class CreateMNPSecretKeyRequest extends AbstractModel {
|
|
|
2756
2826
|
*/
|
|
2757
2827
|
this.MNPId = null;
|
|
2758
2828
|
|
|
2829
|
+
/**
|
|
2830
|
+
* <p>CI/CD key ID.</p>
|
|
2831
|
+
* @type {string || null}
|
|
2832
|
+
*/
|
|
2833
|
+
this.PipelineId = null;
|
|
2834
|
+
|
|
2759
2835
|
}
|
|
2760
2836
|
|
|
2761
2837
|
/**
|
|
@@ -2767,6 +2843,7 @@ class CreateMNPSecretKeyRequest extends AbstractModel {
|
|
|
2767
2843
|
}
|
|
2768
2844
|
this.PlatformId = 'PlatformId' in params ? params.PlatformId : null;
|
|
2769
2845
|
this.MNPId = 'MNPId' in params ? params.MNPId : null;
|
|
2846
|
+
this.PipelineId = 'PipelineId' in params ? params.PipelineId : null;
|
|
2770
2847
|
|
|
2771
2848
|
}
|
|
2772
2849
|
}
|
|
@@ -5660,6 +5737,36 @@ class CreateMNGVersionRequest extends AbstractModel {
|
|
|
5660
5737
|
*/
|
|
5661
5738
|
this.MNPVersionIntro = null;
|
|
5662
5739
|
|
|
5740
|
+
/**
|
|
5741
|
+
* <p>Version type. Valid values: 1: Debug; 2: Development. Default value: 2.</p>
|
|
5742
|
+
* @type {number || null}
|
|
5743
|
+
*/
|
|
5744
|
+
this.VersionType = null;
|
|
5745
|
+
|
|
5746
|
+
/**
|
|
5747
|
+
* <p>Compilation condition.</p>
|
|
5748
|
+
* @type {string || null}
|
|
5749
|
+
*/
|
|
5750
|
+
this.CompileCondition = null;
|
|
5751
|
+
|
|
5752
|
+
/**
|
|
5753
|
+
* <p>Compilation configuration.</p>
|
|
5754
|
+
* @type {string || null}
|
|
5755
|
+
*/
|
|
5756
|
+
this.CompileConfig = null;
|
|
5757
|
+
|
|
5758
|
+
/**
|
|
5759
|
+
* <p>CI/CD key ID.</p>
|
|
5760
|
+
* @type {string || null}
|
|
5761
|
+
*/
|
|
5762
|
+
this.PipelineId = null;
|
|
5763
|
+
|
|
5764
|
+
/**
|
|
5765
|
+
* <p>Internal file URL.</p>
|
|
5766
|
+
* @type {string || null}
|
|
5767
|
+
*/
|
|
5768
|
+
this.FileInnerUrl = null;
|
|
5769
|
+
|
|
5663
5770
|
}
|
|
5664
5771
|
|
|
5665
5772
|
/**
|
|
@@ -5674,6 +5781,11 @@ class CreateMNGVersionRequest extends AbstractModel {
|
|
|
5674
5781
|
this.FileUrl = 'FileUrl' in params ? params.FileUrl : null;
|
|
5675
5782
|
this.PlatformId = 'PlatformId' in params ? params.PlatformId : null;
|
|
5676
5783
|
this.MNPVersionIntro = 'MNPVersionIntro' in params ? params.MNPVersionIntro : null;
|
|
5784
|
+
this.VersionType = 'VersionType' in params ? params.VersionType : null;
|
|
5785
|
+
this.CompileCondition = 'CompileCondition' in params ? params.CompileCondition : null;
|
|
5786
|
+
this.CompileConfig = 'CompileConfig' in params ? params.CompileConfig : null;
|
|
5787
|
+
this.PipelineId = 'PipelineId' in params ? params.PipelineId : null;
|
|
5788
|
+
this.FileInnerUrl = 'FileInnerUrl' in params ? params.FileInnerUrl : null;
|
|
5677
5789
|
|
|
5678
5790
|
}
|
|
5679
5791
|
}
|
|
@@ -7747,6 +7859,12 @@ class DescribeMNGVersionRequest extends AbstractModel {
|
|
|
7747
7859
|
*/
|
|
7748
7860
|
this.PlatformId = null;
|
|
7749
7861
|
|
|
7862
|
+
/**
|
|
7863
|
+
* <p>CI/CD key ID.</p>
|
|
7864
|
+
* @type {string || null}
|
|
7865
|
+
*/
|
|
7866
|
+
this.PipelineId = null;
|
|
7867
|
+
|
|
7750
7868
|
}
|
|
7751
7869
|
|
|
7752
7870
|
/**
|
|
@@ -7758,6 +7876,7 @@ class DescribeMNGVersionRequest extends AbstractModel {
|
|
|
7758
7876
|
}
|
|
7759
7877
|
this.BusinessId = 'BusinessId' in params ? params.BusinessId : null;
|
|
7760
7878
|
this.PlatformId = 'PlatformId' in params ? params.PlatformId : null;
|
|
7879
|
+
this.PipelineId = 'PipelineId' in params ? params.PipelineId : null;
|
|
7761
7880
|
|
|
7762
7881
|
}
|
|
7763
7882
|
}
|
|
@@ -16243,6 +16362,12 @@ class DescribeMNPVersionRequest extends AbstractModel {
|
|
|
16243
16362
|
*/
|
|
16244
16363
|
this.PlatformId = null;
|
|
16245
16364
|
|
|
16365
|
+
/**
|
|
16366
|
+
* <p>CI/CD key ID.</p>
|
|
16367
|
+
* @type {string || null}
|
|
16368
|
+
*/
|
|
16369
|
+
this.PipelineId = null;
|
|
16370
|
+
|
|
16246
16371
|
}
|
|
16247
16372
|
|
|
16248
16373
|
/**
|
|
@@ -16254,6 +16379,7 @@ class DescribeMNPVersionRequest extends AbstractModel {
|
|
|
16254
16379
|
}
|
|
16255
16380
|
this.BusinessId = 'BusinessId' in params ? params.BusinessId : null;
|
|
16256
16381
|
this.PlatformId = 'PlatformId' in params ? params.PlatformId : null;
|
|
16382
|
+
this.PipelineId = 'PipelineId' in params ? params.PipelineId : null;
|
|
16257
16383
|
|
|
16258
16384
|
}
|
|
16259
16385
|
}
|
|
@@ -16443,6 +16569,24 @@ class DescribeMNGVersionResp extends AbstractModel {
|
|
|
16443
16569
|
*/
|
|
16444
16570
|
this.MNPVersionId = null;
|
|
16445
16571
|
|
|
16572
|
+
/**
|
|
16573
|
+
* <p>QR code expiration time.</p>
|
|
16574
|
+
* @type {number || null}
|
|
16575
|
+
*/
|
|
16576
|
+
this.ExpireTime = null;
|
|
16577
|
+
|
|
16578
|
+
/**
|
|
16579
|
+
* <p>Version QR code.</p>
|
|
16580
|
+
* @type {string || null}
|
|
16581
|
+
*/
|
|
16582
|
+
this.QRCode = null;
|
|
16583
|
+
|
|
16584
|
+
/**
|
|
16585
|
+
* <p>Compilation package information.</p>
|
|
16586
|
+
* @type {Array.<MNPVersionSubPackageInfo> || null}
|
|
16587
|
+
*/
|
|
16588
|
+
this.SubPackageInfos = null;
|
|
16589
|
+
|
|
16446
16590
|
}
|
|
16447
16591
|
|
|
16448
16592
|
/**
|
|
@@ -16457,6 +16601,17 @@ class DescribeMNGVersionResp extends AbstractModel {
|
|
|
16457
16601
|
this.TaskStatus = 'TaskStatus' in params ? params.TaskStatus : null;
|
|
16458
16602
|
this.TaskMsg = 'TaskMsg' in params ? params.TaskMsg : null;
|
|
16459
16603
|
this.MNPVersionId = 'MNPVersionId' in params ? params.MNPVersionId : null;
|
|
16604
|
+
this.ExpireTime = 'ExpireTime' in params ? params.ExpireTime : null;
|
|
16605
|
+
this.QRCode = 'QRCode' in params ? params.QRCode : null;
|
|
16606
|
+
|
|
16607
|
+
if (params.SubPackageInfos) {
|
|
16608
|
+
this.SubPackageInfos = new Array();
|
|
16609
|
+
for (let z in params.SubPackageInfos) {
|
|
16610
|
+
let obj = new MNPVersionSubPackageInfo();
|
|
16611
|
+
obj.deserialize(params.SubPackageInfos[z]);
|
|
16612
|
+
this.SubPackageInfos.push(obj);
|
|
16613
|
+
}
|
|
16614
|
+
}
|
|
16460
16615
|
|
|
16461
16616
|
}
|
|
16462
16617
|
}
|
|
@@ -19870,6 +20025,24 @@ class DescribeMNPVersionResp extends AbstractModel {
|
|
|
19870
20025
|
*/
|
|
19871
20026
|
this.MNPVersionId = null;
|
|
19872
20027
|
|
|
20028
|
+
/**
|
|
20029
|
+
* <p>QR code expiration time.</p>
|
|
20030
|
+
* @type {number || null}
|
|
20031
|
+
*/
|
|
20032
|
+
this.ExpireTime = null;
|
|
20033
|
+
|
|
20034
|
+
/**
|
|
20035
|
+
* <p>Version QR code.</p>
|
|
20036
|
+
* @type {string || null}
|
|
20037
|
+
*/
|
|
20038
|
+
this.QRCode = null;
|
|
20039
|
+
|
|
20040
|
+
/**
|
|
20041
|
+
* <p>Compilation package information.</p>
|
|
20042
|
+
* @type {Array.<MNPVersionSubPackageInfo> || null}
|
|
20043
|
+
*/
|
|
20044
|
+
this.SubPackageInfos = null;
|
|
20045
|
+
|
|
19873
20046
|
}
|
|
19874
20047
|
|
|
19875
20048
|
/**
|
|
@@ -19884,6 +20057,17 @@ class DescribeMNPVersionResp extends AbstractModel {
|
|
|
19884
20057
|
this.TaskStatus = 'TaskStatus' in params ? params.TaskStatus : null;
|
|
19885
20058
|
this.TaskMsg = 'TaskMsg' in params ? params.TaskMsg : null;
|
|
19886
20059
|
this.MNPVersionId = 'MNPVersionId' in params ? params.MNPVersionId : null;
|
|
20060
|
+
this.ExpireTime = 'ExpireTime' in params ? params.ExpireTime : null;
|
|
20061
|
+
this.QRCode = 'QRCode' in params ? params.QRCode : null;
|
|
20062
|
+
|
|
20063
|
+
if (params.SubPackageInfos) {
|
|
20064
|
+
this.SubPackageInfos = new Array();
|
|
20065
|
+
for (let z in params.SubPackageInfos) {
|
|
20066
|
+
let obj = new MNPVersionSubPackageInfo();
|
|
20067
|
+
obj.deserialize(params.SubPackageInfos[z]);
|
|
20068
|
+
this.SubPackageInfos.push(obj);
|
|
20069
|
+
}
|
|
20070
|
+
}
|
|
19887
20071
|
|
|
19888
20072
|
}
|
|
19889
20073
|
}
|
|
@@ -21175,6 +21359,7 @@ module.exports = {
|
|
|
21175
21359
|
DeleteApplicationResponse: DeleteApplicationResponse,
|
|
21176
21360
|
ResetMNPAppSecretResp: ResetMNPAppSecretResp,
|
|
21177
21361
|
DeleteUserRequest: DeleteUserRequest,
|
|
21362
|
+
MNPVersionSubPackageInfo: MNPVersionSubPackageInfo,
|
|
21178
21363
|
CreateMNPVersionRequest: CreateMNPVersionRequest,
|
|
21179
21364
|
DescribeMNPAccessAnalysisOverviewRequest: DescribeMNPAccessAnalysisOverviewRequest,
|
|
21180
21365
|
DescribeApplicationConfigInfosResponse: DescribeApplicationConfigInfosResponse,
|
|
@@ -36,6 +36,7 @@ const DescribeMNGListResp = models.DescribeMNGListResp;
|
|
|
36
36
|
const DeleteApplicationResponse = models.DeleteApplicationResponse;
|
|
37
37
|
const ResetMNPAppSecretResp = models.ResetMNPAppSecretResp;
|
|
38
38
|
const DeleteUserRequest = models.DeleteUserRequest;
|
|
39
|
+
const MNPVersionSubPackageInfo = models.MNPVersionSubPackageInfo;
|
|
39
40
|
const CreateMNPVersionRequest = models.CreateMNPVersionRequest;
|
|
40
41
|
const DescribeMNPAccessAnalysisOverviewRequest = models.DescribeMNPAccessAnalysisOverviewRequest;
|
|
41
42
|
const DescribeApplicationConfigInfosResponse = models.DescribeApplicationConfigInfosResponse;
|