tencentcloud-sdk-nodejs-intl-en 3.0.1113 → 3.0.1115
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/cfw/v20190904/cfw_client.js +16 -2
- package/tencentcloud/cfw/v20190904/models.js +366 -24
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/mps/v20190612/models.js +28 -0
- package/tencentcloud/ocr/v20181119/models.js +218 -20
- package/tencentcloud/ocr/v20181119/ocr_client.js +14 -1
- package/tencentcloud/teo/v20220901/models.js +4970 -695
- package/tencentcloud/teo/v20220901/teo_client.js +222 -31
package/package.json
CHANGED
|
@@ -60,8 +60,11 @@ const CreateNatFwInstanceRequest = models.CreateNatFwInstanceRequest;
|
|
|
60
60
|
const ModifySecurityGroupItemRuleStatusResponse = models.ModifySecurityGroupItemRuleStatusResponse;
|
|
61
61
|
const DescribeEnterpriseSecurityGroupRuleResponse = models.DescribeEnterpriseSecurityGroupRuleResponse;
|
|
62
62
|
const VpcDnsInfo = models.VpcDnsInfo;
|
|
63
|
+
const IpStatic = models.IpStatic;
|
|
63
64
|
const DescribeEnterpriseSecurityGroupRuleRequest = models.DescribeEnterpriseSecurityGroupRuleRequest;
|
|
65
|
+
const VpcRuleItem = models.VpcRuleItem;
|
|
64
66
|
const ModifyNatFwReSelectResponse = models.ModifyNatFwReSelectResponse;
|
|
67
|
+
const DescribeVpcAcRuleRequest = models.DescribeVpcAcRuleRequest;
|
|
65
68
|
const DeleteSecurityGroupRuleRequest = models.DeleteSecurityGroupRuleRequest;
|
|
66
69
|
const SetNatFwEipRequest = models.SetNatFwEipRequest;
|
|
67
70
|
const SetNatFwEipResponse = models.SetNatFwEipResponse;
|
|
@@ -107,7 +110,7 @@ const NatFwFilter = models.NatFwFilter;
|
|
|
107
110
|
const ModifyRunSyncAssetResponse = models.ModifyRunSyncAssetResponse;
|
|
108
111
|
const ModifyEnterpriseSecurityGroupRuleResponse = models.ModifyEnterpriseSecurityGroupRuleResponse;
|
|
109
112
|
const ModifySecurityGroupSequenceRulesResponse = models.ModifySecurityGroupSequenceRulesResponse;
|
|
110
|
-
const
|
|
113
|
+
const DescribeResourceGroupNewRequest = models.DescribeResourceGroupNewRequest;
|
|
111
114
|
const AddEnterpriseSecurityGroupRulesResponse = models.AddEnterpriseSecurityGroupRulesResponse;
|
|
112
115
|
const UnHandleEventDetail = models.UnHandleEventDetail;
|
|
113
116
|
const RemoveEnterpriseSecurityGroupRuleRequest = models.RemoveEnterpriseSecurityGroupRuleRequest;
|
|
@@ -118,7 +121,7 @@ const ModifyEnterpriseSecurityGroupRuleRequest = models.ModifyEnterpriseSecurity
|
|
|
118
121
|
const ModifySequenceRulesResponse = models.ModifySequenceRulesResponse;
|
|
119
122
|
const DescribeResourceGroupNewResponse = models.DescribeResourceGroupNewResponse;
|
|
120
123
|
const DescribeNatFwInstanceWithRegionResponse = models.DescribeNatFwInstanceWithRegionResponse;
|
|
121
|
-
const
|
|
124
|
+
const DescribeVpcAcRuleResponse = models.DescribeVpcAcRuleResponse;
|
|
122
125
|
const ModifyBlockTopRequest = models.ModifyBlockTopRequest;
|
|
123
126
|
const DeleteAcRuleResponse = models.DeleteAcRuleResponse;
|
|
124
127
|
const IocListData = models.IocListData;
|
|
@@ -696,6 +699,17 @@ Modify events related with the IPs/domains in the blocked/allowed list
|
|
|
696
699
|
this.request("SetNatFwEip", req, resp, cb);
|
|
697
700
|
}
|
|
698
701
|
|
|
702
|
+
/**
|
|
703
|
+
* Query Inter-VPC rules
|
|
704
|
+
* @param {DescribeVpcAcRuleRequest} req
|
|
705
|
+
* @param {function(string, DescribeVpcAcRuleResponse):void} cb
|
|
706
|
+
* @public
|
|
707
|
+
*/
|
|
708
|
+
DescribeVpcAcRule(req, cb) {
|
|
709
|
+
let resp = new DescribeVpcAcRuleResponse();
|
|
710
|
+
this.request("DescribeVpcAcRule", req, resp, cb);
|
|
711
|
+
}
|
|
712
|
+
|
|
699
713
|
/**
|
|
700
714
|
* This API is used to pin or unpin a blocking log.
|
|
701
715
|
* @param {ModifyBlockTopRequest} req
|
|
@@ -2439,6 +2439,41 @@ Note: This field may return `null`, indicating that no valid value was found.
|
|
|
2439
2439
|
}
|
|
2440
2440
|
}
|
|
2441
2441
|
|
|
2442
|
+
/**
|
|
2443
|
+
* Statistical line graph general structure
|
|
2444
|
+
* @class
|
|
2445
|
+
*/
|
|
2446
|
+
class IpStatic extends AbstractModel {
|
|
2447
|
+
constructor(){
|
|
2448
|
+
super();
|
|
2449
|
+
|
|
2450
|
+
/**
|
|
2451
|
+
* Value
|
|
2452
|
+
* @type {number || null}
|
|
2453
|
+
*/
|
|
2454
|
+
this.Num = null;
|
|
2455
|
+
|
|
2456
|
+
/**
|
|
2457
|
+
* Time shown on the x-axis of the line graph
|
|
2458
|
+
* @type {string || null}
|
|
2459
|
+
*/
|
|
2460
|
+
this.StatTime = null;
|
|
2461
|
+
|
|
2462
|
+
}
|
|
2463
|
+
|
|
2464
|
+
/**
|
|
2465
|
+
* @private
|
|
2466
|
+
*/
|
|
2467
|
+
deserialize(params) {
|
|
2468
|
+
if (!params) {
|
|
2469
|
+
return;
|
|
2470
|
+
}
|
|
2471
|
+
this.Num = 'Num' in params ? params.Num : null;
|
|
2472
|
+
this.StatTime = 'StatTime' in params ? params.StatTime : null;
|
|
2473
|
+
|
|
2474
|
+
}
|
|
2475
|
+
}
|
|
2476
|
+
|
|
2442
2477
|
/**
|
|
2443
2478
|
* DescribeEnterpriseSecurityGroupRule request structure.
|
|
2444
2479
|
* @class
|
|
@@ -2553,6 +2588,210 @@ true: enable; false: disable
|
|
|
2553
2588
|
}
|
|
2554
2589
|
}
|
|
2555
2590
|
|
|
2591
|
+
/**
|
|
2592
|
+
*
|
|
2593
|
+
* @class
|
|
2594
|
+
*/
|
|
2595
|
+
class VpcRuleItem extends AbstractModel {
|
|
2596
|
+
constructor(){
|
|
2597
|
+
super();
|
|
2598
|
+
|
|
2599
|
+
/**
|
|
2600
|
+
*
|
|
2601
|
+
* @type {string || null}
|
|
2602
|
+
*/
|
|
2603
|
+
this.SourceContent = null;
|
|
2604
|
+
|
|
2605
|
+
/**
|
|
2606
|
+
*
|
|
2607
|
+
* @type {string || null}
|
|
2608
|
+
*/
|
|
2609
|
+
this.SourceType = null;
|
|
2610
|
+
|
|
2611
|
+
/**
|
|
2612
|
+
*
|
|
2613
|
+
* @type {string || null}
|
|
2614
|
+
*/
|
|
2615
|
+
this.DestContent = null;
|
|
2616
|
+
|
|
2617
|
+
/**
|
|
2618
|
+
*
|
|
2619
|
+
* @type {string || null}
|
|
2620
|
+
*/
|
|
2621
|
+
this.DestType = null;
|
|
2622
|
+
|
|
2623
|
+
/**
|
|
2624
|
+
*
|
|
2625
|
+
* @type {string || null}
|
|
2626
|
+
*/
|
|
2627
|
+
this.Protocol = null;
|
|
2628
|
+
|
|
2629
|
+
/**
|
|
2630
|
+
*
|
|
2631
|
+
* @type {string || null}
|
|
2632
|
+
*/
|
|
2633
|
+
this.RuleAction = null;
|
|
2634
|
+
|
|
2635
|
+
/**
|
|
2636
|
+
*
|
|
2637
|
+
* @type {string || null}
|
|
2638
|
+
*/
|
|
2639
|
+
this.Port = null;
|
|
2640
|
+
|
|
2641
|
+
/**
|
|
2642
|
+
*
|
|
2643
|
+
* @type {string || null}
|
|
2644
|
+
*/
|
|
2645
|
+
this.Description = null;
|
|
2646
|
+
|
|
2647
|
+
/**
|
|
2648
|
+
*
|
|
2649
|
+
* @type {number || null}
|
|
2650
|
+
*/
|
|
2651
|
+
this.OrderIndex = null;
|
|
2652
|
+
|
|
2653
|
+
/**
|
|
2654
|
+
*
|
|
2655
|
+
* @type {string || null}
|
|
2656
|
+
*/
|
|
2657
|
+
this.Enable = null;
|
|
2658
|
+
|
|
2659
|
+
/**
|
|
2660
|
+
*
|
|
2661
|
+
* @type {string || null}
|
|
2662
|
+
*/
|
|
2663
|
+
this.EdgeId = null;
|
|
2664
|
+
|
|
2665
|
+
/**
|
|
2666
|
+
*
|
|
2667
|
+
* @type {number || null}
|
|
2668
|
+
*/
|
|
2669
|
+
this.Uuid = null;
|
|
2670
|
+
|
|
2671
|
+
/**
|
|
2672
|
+
*
|
|
2673
|
+
* @type {number || null}
|
|
2674
|
+
*/
|
|
2675
|
+
this.DetectedTimes = null;
|
|
2676
|
+
|
|
2677
|
+
/**
|
|
2678
|
+
*
|
|
2679
|
+
* @type {string || null}
|
|
2680
|
+
*/
|
|
2681
|
+
this.EdgeName = null;
|
|
2682
|
+
|
|
2683
|
+
/**
|
|
2684
|
+
*
|
|
2685
|
+
* @type {number || null}
|
|
2686
|
+
*/
|
|
2687
|
+
this.InternalUuid = null;
|
|
2688
|
+
|
|
2689
|
+
/**
|
|
2690
|
+
*
|
|
2691
|
+
* @type {number || null}
|
|
2692
|
+
*/
|
|
2693
|
+
this.Deleted = null;
|
|
2694
|
+
|
|
2695
|
+
/**
|
|
2696
|
+
*
|
|
2697
|
+
* @type {string || null}
|
|
2698
|
+
*/
|
|
2699
|
+
this.FwGroupId = null;
|
|
2700
|
+
|
|
2701
|
+
/**
|
|
2702
|
+
*
|
|
2703
|
+
* @type {string || null}
|
|
2704
|
+
*/
|
|
2705
|
+
this.FwGroupName = null;
|
|
2706
|
+
|
|
2707
|
+
/**
|
|
2708
|
+
*
|
|
2709
|
+
* @type {Array.<BetaInfoByACL> || null}
|
|
2710
|
+
*/
|
|
2711
|
+
this.BetaList = null;
|
|
2712
|
+
|
|
2713
|
+
/**
|
|
2714
|
+
*
|
|
2715
|
+
* @type {string || null}
|
|
2716
|
+
*/
|
|
2717
|
+
this.ParamTemplateId = null;
|
|
2718
|
+
|
|
2719
|
+
/**
|
|
2720
|
+
*
|
|
2721
|
+
* @type {string || null}
|
|
2722
|
+
*/
|
|
2723
|
+
this.ParamTemplateName = null;
|
|
2724
|
+
|
|
2725
|
+
/**
|
|
2726
|
+
*
|
|
2727
|
+
* @type {string || null}
|
|
2728
|
+
*/
|
|
2729
|
+
this.TargetName = null;
|
|
2730
|
+
|
|
2731
|
+
/**
|
|
2732
|
+
*
|
|
2733
|
+
* @type {string || null}
|
|
2734
|
+
*/
|
|
2735
|
+
this.SourceName = null;
|
|
2736
|
+
|
|
2737
|
+
/**
|
|
2738
|
+
*
|
|
2739
|
+
* @type {number || null}
|
|
2740
|
+
*/
|
|
2741
|
+
this.IpVersion = null;
|
|
2742
|
+
|
|
2743
|
+
/**
|
|
2744
|
+
*
|
|
2745
|
+
* @type {number || null}
|
|
2746
|
+
*/
|
|
2747
|
+
this.Invalid = null;
|
|
2748
|
+
|
|
2749
|
+
}
|
|
2750
|
+
|
|
2751
|
+
/**
|
|
2752
|
+
* @private
|
|
2753
|
+
*/
|
|
2754
|
+
deserialize(params) {
|
|
2755
|
+
if (!params) {
|
|
2756
|
+
return;
|
|
2757
|
+
}
|
|
2758
|
+
this.SourceContent = 'SourceContent' in params ? params.SourceContent : null;
|
|
2759
|
+
this.SourceType = 'SourceType' in params ? params.SourceType : null;
|
|
2760
|
+
this.DestContent = 'DestContent' in params ? params.DestContent : null;
|
|
2761
|
+
this.DestType = 'DestType' in params ? params.DestType : null;
|
|
2762
|
+
this.Protocol = 'Protocol' in params ? params.Protocol : null;
|
|
2763
|
+
this.RuleAction = 'RuleAction' in params ? params.RuleAction : null;
|
|
2764
|
+
this.Port = 'Port' in params ? params.Port : null;
|
|
2765
|
+
this.Description = 'Description' in params ? params.Description : null;
|
|
2766
|
+
this.OrderIndex = 'OrderIndex' in params ? params.OrderIndex : null;
|
|
2767
|
+
this.Enable = 'Enable' in params ? params.Enable : null;
|
|
2768
|
+
this.EdgeId = 'EdgeId' in params ? params.EdgeId : null;
|
|
2769
|
+
this.Uuid = 'Uuid' in params ? params.Uuid : null;
|
|
2770
|
+
this.DetectedTimes = 'DetectedTimes' in params ? params.DetectedTimes : null;
|
|
2771
|
+
this.EdgeName = 'EdgeName' in params ? params.EdgeName : null;
|
|
2772
|
+
this.InternalUuid = 'InternalUuid' in params ? params.InternalUuid : null;
|
|
2773
|
+
this.Deleted = 'Deleted' in params ? params.Deleted : null;
|
|
2774
|
+
this.FwGroupId = 'FwGroupId' in params ? params.FwGroupId : null;
|
|
2775
|
+
this.FwGroupName = 'FwGroupName' in params ? params.FwGroupName : null;
|
|
2776
|
+
|
|
2777
|
+
if (params.BetaList) {
|
|
2778
|
+
this.BetaList = new Array();
|
|
2779
|
+
for (let z in params.BetaList) {
|
|
2780
|
+
let obj = new BetaInfoByACL();
|
|
2781
|
+
obj.deserialize(params.BetaList[z]);
|
|
2782
|
+
this.BetaList.push(obj);
|
|
2783
|
+
}
|
|
2784
|
+
}
|
|
2785
|
+
this.ParamTemplateId = 'ParamTemplateId' in params ? params.ParamTemplateId : null;
|
|
2786
|
+
this.ParamTemplateName = 'ParamTemplateName' in params ? params.ParamTemplateName : null;
|
|
2787
|
+
this.TargetName = 'TargetName' in params ? params.TargetName : null;
|
|
2788
|
+
this.SourceName = 'SourceName' in params ? params.SourceName : null;
|
|
2789
|
+
this.IpVersion = 'IpVersion' in params ? params.IpVersion : null;
|
|
2790
|
+
this.Invalid = 'Invalid' in params ? params.Invalid : null;
|
|
2791
|
+
|
|
2792
|
+
}
|
|
2793
|
+
}
|
|
2794
|
+
|
|
2556
2795
|
/**
|
|
2557
2796
|
* ModifyNatFwReSelect response structure.
|
|
2558
2797
|
* @class
|
|
@@ -2581,6 +2820,91 @@ class ModifyNatFwReSelectResponse extends AbstractModel {
|
|
|
2581
2820
|
}
|
|
2582
2821
|
}
|
|
2583
2822
|
|
|
2823
|
+
/**
|
|
2824
|
+
* DescribeVpcAcRule request structure.
|
|
2825
|
+
* @class
|
|
2826
|
+
*/
|
|
2827
|
+
class DescribeVpcAcRuleRequest extends AbstractModel {
|
|
2828
|
+
constructor(){
|
|
2829
|
+
super();
|
|
2830
|
+
|
|
2831
|
+
/**
|
|
2832
|
+
* Limit
|
|
2833
|
+
* @type {number || null}
|
|
2834
|
+
*/
|
|
2835
|
+
this.Limit = null;
|
|
2836
|
+
|
|
2837
|
+
/**
|
|
2838
|
+
* Offset
|
|
2839
|
+
* @type {number || null}
|
|
2840
|
+
*/
|
|
2841
|
+
this.Offset = null;
|
|
2842
|
+
|
|
2843
|
+
/**
|
|
2844
|
+
* Index to be queried, used in specific scenarios, can be left blank
|
|
2845
|
+
* @type {string || null}
|
|
2846
|
+
*/
|
|
2847
|
+
this.Index = null;
|
|
2848
|
+
|
|
2849
|
+
/**
|
|
2850
|
+
* Filter combinations
|
|
2851
|
+
* @type {Array.<CommonFilter> || null}
|
|
2852
|
+
*/
|
|
2853
|
+
this.Filters = null;
|
|
2854
|
+
|
|
2855
|
+
/**
|
|
2856
|
+
* Search start time
|
|
2857
|
+
* @type {string || null}
|
|
2858
|
+
*/
|
|
2859
|
+
this.StartTime = null;
|
|
2860
|
+
|
|
2861
|
+
/**
|
|
2862
|
+
* Search end time
|
|
2863
|
+
* @type {string || null}
|
|
2864
|
+
*/
|
|
2865
|
+
this.EndTime = null;
|
|
2866
|
+
|
|
2867
|
+
/**
|
|
2868
|
+
* Order Type:desc,asc
|
|
2869
|
+
* @type {string || null}
|
|
2870
|
+
*/
|
|
2871
|
+
this.Order = null;
|
|
2872
|
+
|
|
2873
|
+
/**
|
|
2874
|
+
* Order By FileName
|
|
2875
|
+
* @type {string || null}
|
|
2876
|
+
*/
|
|
2877
|
+
this.By = null;
|
|
2878
|
+
|
|
2879
|
+
}
|
|
2880
|
+
|
|
2881
|
+
/**
|
|
2882
|
+
* @private
|
|
2883
|
+
*/
|
|
2884
|
+
deserialize(params) {
|
|
2885
|
+
if (!params) {
|
|
2886
|
+
return;
|
|
2887
|
+
}
|
|
2888
|
+
this.Limit = 'Limit' in params ? params.Limit : null;
|
|
2889
|
+
this.Offset = 'Offset' in params ? params.Offset : null;
|
|
2890
|
+
this.Index = 'Index' in params ? params.Index : null;
|
|
2891
|
+
|
|
2892
|
+
if (params.Filters) {
|
|
2893
|
+
this.Filters = new Array();
|
|
2894
|
+
for (let z in params.Filters) {
|
|
2895
|
+
let obj = new CommonFilter();
|
|
2896
|
+
obj.deserialize(params.Filters[z]);
|
|
2897
|
+
this.Filters.push(obj);
|
|
2898
|
+
}
|
|
2899
|
+
}
|
|
2900
|
+
this.StartTime = 'StartTime' in params ? params.StartTime : null;
|
|
2901
|
+
this.EndTime = 'EndTime' in params ? params.EndTime : null;
|
|
2902
|
+
this.Order = 'Order' in params ? params.Order : null;
|
|
2903
|
+
this.By = 'By' in params ? params.By : null;
|
|
2904
|
+
|
|
2905
|
+
}
|
|
2906
|
+
}
|
|
2907
|
+
|
|
2584
2908
|
/**
|
|
2585
2909
|
* DeleteSecurityGroupRule request structure.
|
|
2586
2910
|
* @class
|
|
@@ -4978,24 +5302,30 @@ class ModifySecurityGroupSequenceRulesResponse extends AbstractModel {
|
|
|
4978
5302
|
}
|
|
4979
5303
|
|
|
4980
5304
|
/**
|
|
4981
|
-
*
|
|
5305
|
+
* DescribeResourceGroupNew request structure.
|
|
4982
5306
|
* @class
|
|
4983
5307
|
*/
|
|
4984
|
-
class
|
|
5308
|
+
class DescribeResourceGroupNewRequest extends AbstractModel {
|
|
4985
5309
|
constructor(){
|
|
4986
5310
|
super();
|
|
4987
5311
|
|
|
4988
5312
|
/**
|
|
4989
|
-
*
|
|
4990
|
-
* @type {
|
|
5313
|
+
* Query type. Network–VPC; business recognition–resource; resource tag–tag
|
|
5314
|
+
* @type {string || null}
|
|
4991
5315
|
*/
|
|
4992
|
-
this.
|
|
5316
|
+
this.QueryType = null;
|
|
4993
5317
|
|
|
4994
5318
|
/**
|
|
4995
|
-
*
|
|
5319
|
+
* Asset group ID, 0: all asset group IDs
|
|
4996
5320
|
* @type {string || null}
|
|
4997
5321
|
*/
|
|
4998
|
-
this.
|
|
5322
|
+
this.GroupId = null;
|
|
5323
|
+
|
|
5324
|
+
/**
|
|
5325
|
+
* all: all, including subgroups; own: my asset groups only
|
|
5326
|
+
* @type {string || null}
|
|
5327
|
+
*/
|
|
5328
|
+
this.ShowType = null;
|
|
4999
5329
|
|
|
5000
5330
|
}
|
|
5001
5331
|
|
|
@@ -5006,8 +5336,9 @@ class IpStatic extends AbstractModel {
|
|
|
5006
5336
|
if (!params) {
|
|
5007
5337
|
return;
|
|
5008
5338
|
}
|
|
5009
|
-
this.
|
|
5010
|
-
this.
|
|
5339
|
+
this.QueryType = 'QueryType' in params ? params.QueryType : null;
|
|
5340
|
+
this.GroupId = 'GroupId' in params ? params.GroupId : null;
|
|
5341
|
+
this.ShowType = 'ShowType' in params ? params.ShowType : null;
|
|
5011
5342
|
|
|
5012
5343
|
}
|
|
5013
5344
|
}
|
|
@@ -5456,30 +5787,30 @@ Note: This field may return `null`, indicating that no valid value was found.
|
|
|
5456
5787
|
}
|
|
5457
5788
|
|
|
5458
5789
|
/**
|
|
5459
|
-
*
|
|
5790
|
+
* DescribeVpcAcRule response structure.
|
|
5460
5791
|
* @class
|
|
5461
5792
|
*/
|
|
5462
|
-
class
|
|
5793
|
+
class DescribeVpcAcRuleResponse extends AbstractModel {
|
|
5463
5794
|
constructor(){
|
|
5464
5795
|
super();
|
|
5465
5796
|
|
|
5466
5797
|
/**
|
|
5467
|
-
*
|
|
5468
|
-
* @type {
|
|
5798
|
+
* Total Data
|
|
5799
|
+
* @type {number || null}
|
|
5469
5800
|
*/
|
|
5470
|
-
this.
|
|
5801
|
+
this.Total = null;
|
|
5471
5802
|
|
|
5472
5803
|
/**
|
|
5473
|
-
*
|
|
5474
|
-
* @type {
|
|
5804
|
+
* Data list
|
|
5805
|
+
* @type {Array.<VpcRuleItem> || null}
|
|
5475
5806
|
*/
|
|
5476
|
-
this.
|
|
5807
|
+
this.Data = null;
|
|
5477
5808
|
|
|
5478
5809
|
/**
|
|
5479
|
-
*
|
|
5810
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
5480
5811
|
* @type {string || null}
|
|
5481
5812
|
*/
|
|
5482
|
-
this.
|
|
5813
|
+
this.RequestId = null;
|
|
5483
5814
|
|
|
5484
5815
|
}
|
|
5485
5816
|
|
|
@@ -5490,9 +5821,17 @@ class DescribeResourceGroupNewRequest extends AbstractModel {
|
|
|
5490
5821
|
if (!params) {
|
|
5491
5822
|
return;
|
|
5492
5823
|
}
|
|
5493
|
-
this.
|
|
5494
|
-
|
|
5495
|
-
|
|
5824
|
+
this.Total = 'Total' in params ? params.Total : null;
|
|
5825
|
+
|
|
5826
|
+
if (params.Data) {
|
|
5827
|
+
this.Data = new Array();
|
|
5828
|
+
for (let z in params.Data) {
|
|
5829
|
+
let obj = new VpcRuleItem();
|
|
5830
|
+
obj.deserialize(params.Data[z]);
|
|
5831
|
+
this.Data.push(obj);
|
|
5832
|
+
}
|
|
5833
|
+
}
|
|
5834
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
5496
5835
|
|
|
5497
5836
|
}
|
|
5498
5837
|
}
|
|
@@ -9066,8 +9405,11 @@ module.exports = {
|
|
|
9066
9405
|
ModifySecurityGroupItemRuleStatusResponse: ModifySecurityGroupItemRuleStatusResponse,
|
|
9067
9406
|
DescribeEnterpriseSecurityGroupRuleResponse: DescribeEnterpriseSecurityGroupRuleResponse,
|
|
9068
9407
|
VpcDnsInfo: VpcDnsInfo,
|
|
9408
|
+
IpStatic: IpStatic,
|
|
9069
9409
|
DescribeEnterpriseSecurityGroupRuleRequest: DescribeEnterpriseSecurityGroupRuleRequest,
|
|
9410
|
+
VpcRuleItem: VpcRuleItem,
|
|
9070
9411
|
ModifyNatFwReSelectResponse: ModifyNatFwReSelectResponse,
|
|
9412
|
+
DescribeVpcAcRuleRequest: DescribeVpcAcRuleRequest,
|
|
9071
9413
|
DeleteSecurityGroupRuleRequest: DeleteSecurityGroupRuleRequest,
|
|
9072
9414
|
SetNatFwEipRequest: SetNatFwEipRequest,
|
|
9073
9415
|
SetNatFwEipResponse: SetNatFwEipResponse,
|
|
@@ -9113,7 +9455,7 @@ module.exports = {
|
|
|
9113
9455
|
ModifyRunSyncAssetResponse: ModifyRunSyncAssetResponse,
|
|
9114
9456
|
ModifyEnterpriseSecurityGroupRuleResponse: ModifyEnterpriseSecurityGroupRuleResponse,
|
|
9115
9457
|
ModifySecurityGroupSequenceRulesResponse: ModifySecurityGroupSequenceRulesResponse,
|
|
9116
|
-
|
|
9458
|
+
DescribeResourceGroupNewRequest: DescribeResourceGroupNewRequest,
|
|
9117
9459
|
AddEnterpriseSecurityGroupRulesResponse: AddEnterpriseSecurityGroupRulesResponse,
|
|
9118
9460
|
UnHandleEventDetail: UnHandleEventDetail,
|
|
9119
9461
|
RemoveEnterpriseSecurityGroupRuleRequest: RemoveEnterpriseSecurityGroupRuleRequest,
|
|
@@ -9124,7 +9466,7 @@ module.exports = {
|
|
|
9124
9466
|
ModifySequenceRulesResponse: ModifySequenceRulesResponse,
|
|
9125
9467
|
DescribeResourceGroupNewResponse: DescribeResourceGroupNewResponse,
|
|
9126
9468
|
DescribeNatFwInstanceWithRegionResponse: DescribeNatFwInstanceWithRegionResponse,
|
|
9127
|
-
|
|
9469
|
+
DescribeVpcAcRuleResponse: DescribeVpcAcRuleResponse,
|
|
9128
9470
|
ModifyBlockTopRequest: ModifyBlockTopRequest,
|
|
9129
9471
|
DeleteAcRuleResponse: DeleteAcRuleResponse,
|
|
9130
9472
|
IocListData: IocListData,
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.1115";
|
|
2
2
|
module.exports = sdkVersion
|
|
@@ -1434,6 +1434,18 @@ class MediaAiAnalysisDescriptionItem extends AbstractModel {
|
|
|
1434
1434
|
*/
|
|
1435
1435
|
this.Confidence = null;
|
|
1436
1436
|
|
|
1437
|
+
/**
|
|
1438
|
+
* Intelligent description title.
|
|
1439
|
+
* @type {string || null}
|
|
1440
|
+
*/
|
|
1441
|
+
this.Title = null;
|
|
1442
|
+
|
|
1443
|
+
/**
|
|
1444
|
+
* Intelligent description keywords.
|
|
1445
|
+
* @type {Array.<string> || null}
|
|
1446
|
+
*/
|
|
1447
|
+
this.Keywords = null;
|
|
1448
|
+
|
|
1437
1449
|
/**
|
|
1438
1450
|
* Segmentation result.
|
|
1439
1451
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
@@ -1452,6 +1464,8 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
1452
1464
|
}
|
|
1453
1465
|
this.Description = 'Description' in params ? params.Description : null;
|
|
1454
1466
|
this.Confidence = 'Confidence' in params ? params.Confidence : null;
|
|
1467
|
+
this.Title = 'Title' in params ? params.Title : null;
|
|
1468
|
+
this.Keywords = 'Keywords' in params ? params.Keywords : null;
|
|
1455
1469
|
|
|
1456
1470
|
if (params.Paragraphs) {
|
|
1457
1471
|
this.Paragraphs = new Array();
|
|
@@ -5559,6 +5573,18 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
5559
5573
|
*/
|
|
5560
5574
|
this.Summary = null;
|
|
5561
5575
|
|
|
5576
|
+
/**
|
|
5577
|
+
* Segment title.
|
|
5578
|
+
* @type {string || null}
|
|
5579
|
+
*/
|
|
5580
|
+
this.Title = null;
|
|
5581
|
+
|
|
5582
|
+
/**
|
|
5583
|
+
* Segment keywords.
|
|
5584
|
+
* @type {Array.<string> || null}
|
|
5585
|
+
*/
|
|
5586
|
+
this.Keywords = null;
|
|
5587
|
+
|
|
5562
5588
|
/**
|
|
5563
5589
|
* Segmentation start time point, in seconds.
|
|
5564
5590
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
@@ -5583,6 +5609,8 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
5583
5609
|
return;
|
|
5584
5610
|
}
|
|
5585
5611
|
this.Summary = 'Summary' in params ? params.Summary : null;
|
|
5612
|
+
this.Title = 'Title' in params ? params.Title : null;
|
|
5613
|
+
this.Keywords = 'Keywords' in params ? params.Keywords : null;
|
|
5586
5614
|
this.StartTimeOffset = 'StartTimeOffset' in params ? params.StartTimeOffset : null;
|
|
5587
5615
|
this.EndTimeOffset = 'EndTimeOffset' in params ? params.EndTimeOffset : null;
|
|
5588
5616
|
|