tencentcloud-sdk-nodejs-intl-en 3.0.1265 → 3.0.1267
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/ccc/v20200210/ccc_client.js +20 -6
- package/tencentcloud/ccc/v20200210/models.js +132 -0
- package/tencentcloud/ciam/index.js +1 -1
- package/tencentcloud/clb/v20180317/clb_client.js +4 -4
- package/tencentcloud/clb/v20180317/models.js +13 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/cynosdb/v20190107/cynosdb_client.js +37 -6
- package/tencentcloud/cynosdb/v20190107/models.js +728 -3
- package/tencentcloud/dlc/v20210125/dlc_client.js +42 -2
- package/tencentcloud/dlc/v20210125/models.js +379 -25
- package/tencentcloud/mdl/v20200326/mdl_client.js +5 -2
- package/tencentcloud/mdl/v20200326/models.js +157 -15
- package/tencentcloud/monitor/v20180724/models.js +1054 -237
- package/tencentcloud/monitor/v20180724/monitor_client.js +92 -20
- package/tencentcloud/mps/v20190612/models.js +231 -31
- package/tencentcloud/mps/v20190612/mps_client.js +3 -0
- package/tencentcloud/organization/index.js +1 -1
- package/tencentcloud/quota/v20241204/models.js +8 -1
- package/tencentcloud/redis/v20180412/models.js +199 -84
- package/tencentcloud/redis/v20180412/redis_client.js +4 -4
- package/tencentcloud/vm/index.js +1 -1
- package/tencentcloud/vod/index.js +1 -1
- package/tencentcloud/wedata/index.js +1 -1
- package/tencentcloud/wedata/v20250806/index.js +4 -0
- package/tencentcloud/wedata/v20250806/models.js +16704 -0
- package/tencentcloud/wedata/v20250806/wedata_client.js +1139 -0
|
@@ -2819,6 +2819,41 @@ Specifies that the database kernel version is larger than 3.1.12.
|
|
|
2819
2819
|
}
|
|
2820
2820
|
}
|
|
2821
2821
|
|
|
2822
|
+
/**
|
|
2823
|
+
* DescribeIntegrateTask request structure.
|
|
2824
|
+
* @class
|
|
2825
|
+
*/
|
|
2826
|
+
class DescribeIntegrateTaskRequest extends AbstractModel {
|
|
2827
|
+
constructor(){
|
|
2828
|
+
super();
|
|
2829
|
+
|
|
2830
|
+
/**
|
|
2831
|
+
* Large order id. must choose between large order id and sub-order id.
|
|
2832
|
+
* @type {string || null}
|
|
2833
|
+
*/
|
|
2834
|
+
this.BigDealId = null;
|
|
2835
|
+
|
|
2836
|
+
/**
|
|
2837
|
+
* Order list
|
|
2838
|
+
* @type {Array.<string> || null}
|
|
2839
|
+
*/
|
|
2840
|
+
this.DealNames = null;
|
|
2841
|
+
|
|
2842
|
+
}
|
|
2843
|
+
|
|
2844
|
+
/**
|
|
2845
|
+
* @private
|
|
2846
|
+
*/
|
|
2847
|
+
deserialize(params) {
|
|
2848
|
+
if (!params) {
|
|
2849
|
+
return;
|
|
2850
|
+
}
|
|
2851
|
+
this.BigDealId = 'BigDealId' in params ? params.BigDealId : null;
|
|
2852
|
+
this.DealNames = 'DealNames' in params ? params.DealNames : null;
|
|
2853
|
+
|
|
2854
|
+
}
|
|
2855
|
+
}
|
|
2856
|
+
|
|
2822
2857
|
/**
|
|
2823
2858
|
* Database proxy group details
|
|
2824
2859
|
* @class
|
|
@@ -3569,6 +3604,283 @@ class DescribeProxyNodesResponse extends AbstractModel {
|
|
|
3569
3604
|
}
|
|
3570
3605
|
}
|
|
3571
3606
|
|
|
3607
|
+
/**
|
|
3608
|
+
* CreateIntegrateCluster request structure.
|
|
3609
|
+
* @class
|
|
3610
|
+
*/
|
|
3611
|
+
class CreateIntegrateClusterRequest extends AbstractModel {
|
|
3612
|
+
constructor(){
|
|
3613
|
+
super();
|
|
3614
|
+
|
|
3615
|
+
/**
|
|
3616
|
+
* Availability zone
|
|
3617
|
+
* @type {string || null}
|
|
3618
|
+
*/
|
|
3619
|
+
this.Zone = null;
|
|
3620
|
+
|
|
3621
|
+
/**
|
|
3622
|
+
* Specifies the ID of the VPC network it belongs to.
|
|
3623
|
+
* @type {string || null}
|
|
3624
|
+
*/
|
|
3625
|
+
this.VpcId = null;
|
|
3626
|
+
|
|
3627
|
+
/**
|
|
3628
|
+
* Subnet ID.
|
|
3629
|
+
* @type {string || null}
|
|
3630
|
+
*/
|
|
3631
|
+
this.SubnetId = null;
|
|
3632
|
+
|
|
3633
|
+
/**
|
|
3634
|
+
* Database version. valid values:.
|
|
3635
|
+
<li>Specifies the available values for MYSQL: 5.7, 8.0.</li>.
|
|
3636
|
+
* @type {string || null}
|
|
3637
|
+
*/
|
|
3638
|
+
this.DbVersion = null;
|
|
3639
|
+
|
|
3640
|
+
/**
|
|
3641
|
+
* Project ID
|
|
3642
|
+
* @type {number || null}
|
|
3643
|
+
*/
|
|
3644
|
+
this.ProjectId = null;
|
|
3645
|
+
|
|
3646
|
+
/**
|
|
3647
|
+
* Cluster name, length less than 64 characters. each character value ranges from uppercase/lowercase letters, digits, special symbols ('-','_','.').
|
|
3648
|
+
* @type {string || null}
|
|
3649
|
+
*/
|
|
3650
|
+
this.ClusterName = null;
|
|
3651
|
+
|
|
3652
|
+
/**
|
|
3653
|
+
* Account password (8-64 characters, a combination of uppercase and lowercase letters, digits and symbols ~!@#$%^&*_-+=`|\(){}[]:;'<>,.?/ with any three types).
|
|
3654
|
+
* @type {string || null}
|
|
3655
|
+
*/
|
|
3656
|
+
this.AdminPassword = null;
|
|
3657
|
+
|
|
3658
|
+
/**
|
|
3659
|
+
* Port, default 3306, in the range of [0, 65535).
|
|
3660
|
+
* @type {number || null}
|
|
3661
|
+
*/
|
|
3662
|
+
this.Port = null;
|
|
3663
|
+
|
|
3664
|
+
/**
|
|
3665
|
+
* Billing mode. 0: pay-as-you-go; 1: monthly subscription. default is pay-as-you-go.
|
|
3666
|
+
* @type {number || null}
|
|
3667
|
+
*/
|
|
3668
|
+
this.PayMode = null;
|
|
3669
|
+
|
|
3670
|
+
/**
|
|
3671
|
+
* Number of clusters to purchase. value range: [1,3]. default is 1.
|
|
3672
|
+
* @type {number || null}
|
|
3673
|
+
*/
|
|
3674
|
+
this.Count = null;
|
|
3675
|
+
|
|
3676
|
+
/**
|
|
3677
|
+
* Maximum storage limit of a regular instance, in GB.
|
|
3678
|
+
When DbType is MYSQL and the storage billing mode is prepaid, this parameter should not exceed the maximum storage specification corresponding to cpu and memory.
|
|
3679
|
+
* @type {number || null}
|
|
3680
|
+
*/
|
|
3681
|
+
this.StorageLimit = null;
|
|
3682
|
+
|
|
3683
|
+
/**
|
|
3684
|
+
* Specifies the annual and monthly subscription duration.
|
|
3685
|
+
* @type {number || null}
|
|
3686
|
+
*/
|
|
3687
|
+
this.TimeSpan = null;
|
|
3688
|
+
|
|
3689
|
+
/**
|
|
3690
|
+
* Specifies the measurement unit for annual and monthly subscription duration. valid values: 's', 'd', 'm', 'y'.
|
|
3691
|
+
* @type {string || null}
|
|
3692
|
+
*/
|
|
3693
|
+
this.TimeUnit = null;
|
|
3694
|
+
|
|
3695
|
+
/**
|
|
3696
|
+
* Whether annual/monthly subscription is auto-renewed. default value is 0.
|
|
3697
|
+
0 identifies the default renewal method, 1 means auto-renew, 2 indicates no auto-renewal.
|
|
3698
|
+
* @type {number || null}
|
|
3699
|
+
*/
|
|
3700
|
+
this.AutoRenewFlag = null;
|
|
3701
|
+
|
|
3702
|
+
/**
|
|
3703
|
+
* Whether to automatically select a voucher. 1: yes; 0: no. default value: 0.
|
|
3704
|
+
* @type {number || null}
|
|
3705
|
+
*/
|
|
3706
|
+
this.AutoVoucher = null;
|
|
3707
|
+
|
|
3708
|
+
/**
|
|
3709
|
+
* Specifies the tag array information that needs to be bound during cluster creation.
|
|
3710
|
+
* @type {Array.<Tag> || null}
|
|
3711
|
+
*/
|
|
3712
|
+
this.ResourceTags = null;
|
|
3713
|
+
|
|
3714
|
+
/**
|
|
3715
|
+
* Specifies the cluster storage billing mode. 0: pay-as-you-go; 1: monthly subscription. default is pay-as-you-go.
|
|
3716
|
+
When DbType is MYSQL and the cluster billing mode for computing is postpaid (including DbMode as SERVERLESS), the storage billing mode can only be pay-as-you-go.
|
|
3717
|
+
Rollback and clone do not support monthly subscription storage.
|
|
3718
|
+
* @type {number || null}
|
|
3719
|
+
*/
|
|
3720
|
+
this.StoragePayMode = null;
|
|
3721
|
+
|
|
3722
|
+
/**
|
|
3723
|
+
* Security group id array.
|
|
3724
|
+
* @type {Array.<string> || null}
|
|
3725
|
+
*/
|
|
3726
|
+
this.SecurityGroupIds = null;
|
|
3727
|
+
|
|
3728
|
+
/**
|
|
3729
|
+
* Specifies the Alarm policy Id array.
|
|
3730
|
+
* @type {Array.<string> || null}
|
|
3731
|
+
*/
|
|
3732
|
+
this.AlarmPolicyIds = null;
|
|
3733
|
+
|
|
3734
|
+
/**
|
|
3735
|
+
* Parameter array, temporarily supports character_set_server (utf8|latin1|gbk|utf8mb4), lower_case_table_names. valid values: 1 (case-insensitive), 0 (case-sensitive).
|
|
3736
|
+
* @type {Array.<ParamItem> || null}
|
|
3737
|
+
*/
|
|
3738
|
+
this.ClusterParams = null;
|
|
3739
|
+
|
|
3740
|
+
/**
|
|
3741
|
+
* Transaction mode. valid values: 0 (place order and pay), 1 (place order).
|
|
3742
|
+
* @type {number || null}
|
|
3743
|
+
*/
|
|
3744
|
+
this.DealMode = null;
|
|
3745
|
+
|
|
3746
|
+
/**
|
|
3747
|
+
* Parameter template ID. can be obtained through querying parameter template information DescribeParamTemplates.
|
|
3748
|
+
* @type {number || null}
|
|
3749
|
+
*/
|
|
3750
|
+
this.ParamTemplateId = null;
|
|
3751
|
+
|
|
3752
|
+
/**
|
|
3753
|
+
* Multi-AZ address.
|
|
3754
|
+
* @type {string || null}
|
|
3755
|
+
*/
|
|
3756
|
+
this.SlaveZone = null;
|
|
3757
|
+
|
|
3758
|
+
/**
|
|
3759
|
+
* Initializes configuration information, mainly used to purchase clusters with different specification instances.
|
|
3760
|
+
* @type {Array.<IntegrateInstanceInfo> || null}
|
|
3761
|
+
*/
|
|
3762
|
+
this.InstanceInitInfos = null;
|
|
3763
|
+
|
|
3764
|
+
/**
|
|
3765
|
+
* Global database unique identifier.
|
|
3766
|
+
* @type {string || null}
|
|
3767
|
+
*/
|
|
3768
|
+
this.GdnId = null;
|
|
3769
|
+
|
|
3770
|
+
/**
|
|
3771
|
+
* Database proxy configuration.
|
|
3772
|
+
* @type {ProxyConfigInfo || null}
|
|
3773
|
+
*/
|
|
3774
|
+
this.ProxyConfig = null;
|
|
3775
|
+
|
|
3776
|
+
/**
|
|
3777
|
+
* Specifies whether to automatically archive.
|
|
3778
|
+
* @type {string || null}
|
|
3779
|
+
*/
|
|
3780
|
+
this.AutoArchive = null;
|
|
3781
|
+
|
|
3782
|
+
/**
|
|
3783
|
+
* Processing time after pausing.
|
|
3784
|
+
* @type {number || null}
|
|
3785
|
+
*/
|
|
3786
|
+
this.AutoArchiveDelayHours = null;
|
|
3787
|
+
|
|
3788
|
+
/**
|
|
3789
|
+
* Encryption method (consists of encryption algorithm and key pair version).
|
|
3790
|
+
* @type {string || null}
|
|
3791
|
+
*/
|
|
3792
|
+
this.EncryptMethod = null;
|
|
3793
|
+
|
|
3794
|
+
/**
|
|
3795
|
+
* Describes the cluster configuration information.
|
|
3796
|
+
* @type {IntegrateCreateClusterConfig || null}
|
|
3797
|
+
*/
|
|
3798
|
+
this.IntegrateCreateClusterConfig = null;
|
|
3799
|
+
|
|
3800
|
+
/**
|
|
3801
|
+
* Storage architecture type. valid values: 1.0/2.0. default value: 1.0.
|
|
3802
|
+
* @type {string || null}
|
|
3803
|
+
*/
|
|
3804
|
+
this.StorageVersion = null;
|
|
3805
|
+
|
|
3806
|
+
}
|
|
3807
|
+
|
|
3808
|
+
/**
|
|
3809
|
+
* @private
|
|
3810
|
+
*/
|
|
3811
|
+
deserialize(params) {
|
|
3812
|
+
if (!params) {
|
|
3813
|
+
return;
|
|
3814
|
+
}
|
|
3815
|
+
this.Zone = 'Zone' in params ? params.Zone : null;
|
|
3816
|
+
this.VpcId = 'VpcId' in params ? params.VpcId : null;
|
|
3817
|
+
this.SubnetId = 'SubnetId' in params ? params.SubnetId : null;
|
|
3818
|
+
this.DbVersion = 'DbVersion' in params ? params.DbVersion : null;
|
|
3819
|
+
this.ProjectId = 'ProjectId' in params ? params.ProjectId : null;
|
|
3820
|
+
this.ClusterName = 'ClusterName' in params ? params.ClusterName : null;
|
|
3821
|
+
this.AdminPassword = 'AdminPassword' in params ? params.AdminPassword : null;
|
|
3822
|
+
this.Port = 'Port' in params ? params.Port : null;
|
|
3823
|
+
this.PayMode = 'PayMode' in params ? params.PayMode : null;
|
|
3824
|
+
this.Count = 'Count' in params ? params.Count : null;
|
|
3825
|
+
this.StorageLimit = 'StorageLimit' in params ? params.StorageLimit : null;
|
|
3826
|
+
this.TimeSpan = 'TimeSpan' in params ? params.TimeSpan : null;
|
|
3827
|
+
this.TimeUnit = 'TimeUnit' in params ? params.TimeUnit : null;
|
|
3828
|
+
this.AutoRenewFlag = 'AutoRenewFlag' in params ? params.AutoRenewFlag : null;
|
|
3829
|
+
this.AutoVoucher = 'AutoVoucher' in params ? params.AutoVoucher : null;
|
|
3830
|
+
|
|
3831
|
+
if (params.ResourceTags) {
|
|
3832
|
+
this.ResourceTags = new Array();
|
|
3833
|
+
for (let z in params.ResourceTags) {
|
|
3834
|
+
let obj = new Tag();
|
|
3835
|
+
obj.deserialize(params.ResourceTags[z]);
|
|
3836
|
+
this.ResourceTags.push(obj);
|
|
3837
|
+
}
|
|
3838
|
+
}
|
|
3839
|
+
this.StoragePayMode = 'StoragePayMode' in params ? params.StoragePayMode : null;
|
|
3840
|
+
this.SecurityGroupIds = 'SecurityGroupIds' in params ? params.SecurityGroupIds : null;
|
|
3841
|
+
this.AlarmPolicyIds = 'AlarmPolicyIds' in params ? params.AlarmPolicyIds : null;
|
|
3842
|
+
|
|
3843
|
+
if (params.ClusterParams) {
|
|
3844
|
+
this.ClusterParams = new Array();
|
|
3845
|
+
for (let z in params.ClusterParams) {
|
|
3846
|
+
let obj = new ParamItem();
|
|
3847
|
+
obj.deserialize(params.ClusterParams[z]);
|
|
3848
|
+
this.ClusterParams.push(obj);
|
|
3849
|
+
}
|
|
3850
|
+
}
|
|
3851
|
+
this.DealMode = 'DealMode' in params ? params.DealMode : null;
|
|
3852
|
+
this.ParamTemplateId = 'ParamTemplateId' in params ? params.ParamTemplateId : null;
|
|
3853
|
+
this.SlaveZone = 'SlaveZone' in params ? params.SlaveZone : null;
|
|
3854
|
+
|
|
3855
|
+
if (params.InstanceInitInfos) {
|
|
3856
|
+
this.InstanceInitInfos = new Array();
|
|
3857
|
+
for (let z in params.InstanceInitInfos) {
|
|
3858
|
+
let obj = new IntegrateInstanceInfo();
|
|
3859
|
+
obj.deserialize(params.InstanceInitInfos[z]);
|
|
3860
|
+
this.InstanceInitInfos.push(obj);
|
|
3861
|
+
}
|
|
3862
|
+
}
|
|
3863
|
+
this.GdnId = 'GdnId' in params ? params.GdnId : null;
|
|
3864
|
+
|
|
3865
|
+
if (params.ProxyConfig) {
|
|
3866
|
+
let obj = new ProxyConfigInfo();
|
|
3867
|
+
obj.deserialize(params.ProxyConfig)
|
|
3868
|
+
this.ProxyConfig = obj;
|
|
3869
|
+
}
|
|
3870
|
+
this.AutoArchive = 'AutoArchive' in params ? params.AutoArchive : null;
|
|
3871
|
+
this.AutoArchiveDelayHours = 'AutoArchiveDelayHours' in params ? params.AutoArchiveDelayHours : null;
|
|
3872
|
+
this.EncryptMethod = 'EncryptMethod' in params ? params.EncryptMethod : null;
|
|
3873
|
+
|
|
3874
|
+
if (params.IntegrateCreateClusterConfig) {
|
|
3875
|
+
let obj = new IntegrateCreateClusterConfig();
|
|
3876
|
+
obj.deserialize(params.IntegrateCreateClusterConfig)
|
|
3877
|
+
this.IntegrateCreateClusterConfig = obj;
|
|
3878
|
+
}
|
|
3879
|
+
this.StorageVersion = 'StorageVersion' in params ? params.StorageVersion : null;
|
|
3880
|
+
|
|
3881
|
+
}
|
|
3882
|
+
}
|
|
3883
|
+
|
|
3572
3884
|
/**
|
|
3573
3885
|
* Node in the database proxy group
|
|
3574
3886
|
* @class
|
|
@@ -4077,6 +4389,55 @@ class DescribeClusterReadOnlyRequest extends AbstractModel {
|
|
|
4077
4389
|
}
|
|
4078
4390
|
}
|
|
4079
4391
|
|
|
4392
|
+
/**
|
|
4393
|
+
* DescribeIntegrateTask response structure.
|
|
4394
|
+
* @class
|
|
4395
|
+
*/
|
|
4396
|
+
class DescribeIntegrateTaskResponse extends AbstractModel {
|
|
4397
|
+
constructor(){
|
|
4398
|
+
super();
|
|
4399
|
+
|
|
4400
|
+
/**
|
|
4401
|
+
* Current step.
|
|
4402
|
+
* @type {string || null}
|
|
4403
|
+
*/
|
|
4404
|
+
this.CurrentStep = null;
|
|
4405
|
+
|
|
4406
|
+
/**
|
|
4407
|
+
* Current progress.
|
|
4408
|
+
* @type {string || null}
|
|
4409
|
+
*/
|
|
4410
|
+
this.CurrentProgress = null;
|
|
4411
|
+
|
|
4412
|
+
/**
|
|
4413
|
+
* Indicates the task status.
|
|
4414
|
+
* @type {string || null}
|
|
4415
|
+
*/
|
|
4416
|
+
this.TaskStatus = null;
|
|
4417
|
+
|
|
4418
|
+
/**
|
|
4419
|
+
* 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.
|
|
4420
|
+
* @type {string || null}
|
|
4421
|
+
*/
|
|
4422
|
+
this.RequestId = null;
|
|
4423
|
+
|
|
4424
|
+
}
|
|
4425
|
+
|
|
4426
|
+
/**
|
|
4427
|
+
* @private
|
|
4428
|
+
*/
|
|
4429
|
+
deserialize(params) {
|
|
4430
|
+
if (!params) {
|
|
4431
|
+
return;
|
|
4432
|
+
}
|
|
4433
|
+
this.CurrentStep = 'CurrentStep' in params ? params.CurrentStep : null;
|
|
4434
|
+
this.CurrentProgress = 'CurrentProgress' in params ? params.CurrentProgress : null;
|
|
4435
|
+
this.TaskStatus = 'TaskStatus' in params ? params.TaskStatus : null;
|
|
4436
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
4437
|
+
|
|
4438
|
+
}
|
|
4439
|
+
}
|
|
4440
|
+
|
|
4080
4441
|
/**
|
|
4081
4442
|
* Database account information
|
|
4082
4443
|
* @class
|
|
@@ -4681,10 +5042,74 @@ class ModifyAccountHostResponse extends AbstractModel {
|
|
|
4681
5042
|
super();
|
|
4682
5043
|
|
|
4683
5044
|
/**
|
|
4684
|
-
* 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.
|
|
5045
|
+
* 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.
|
|
5046
|
+
* @type {string || null}
|
|
5047
|
+
*/
|
|
5048
|
+
this.RequestId = null;
|
|
5049
|
+
|
|
5050
|
+
}
|
|
5051
|
+
|
|
5052
|
+
/**
|
|
5053
|
+
* @private
|
|
5054
|
+
*/
|
|
5055
|
+
deserialize(params) {
|
|
5056
|
+
if (!params) {
|
|
5057
|
+
return;
|
|
5058
|
+
}
|
|
5059
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
5060
|
+
|
|
5061
|
+
}
|
|
5062
|
+
}
|
|
5063
|
+
|
|
5064
|
+
/**
|
|
5065
|
+
* proxy address configuration of the integrated cluster.
|
|
5066
|
+
* @class
|
|
5067
|
+
*/
|
|
5068
|
+
class ProxyEndPointConfigInfo extends AbstractModel {
|
|
5069
|
+
constructor(){
|
|
5070
|
+
super();
|
|
5071
|
+
|
|
5072
|
+
/**
|
|
5073
|
+
* Specifies the ID of the VPC network it belongs to.
|
|
5074
|
+
* @type {string || null}
|
|
5075
|
+
*/
|
|
5076
|
+
this.UniqueVpcId = null;
|
|
5077
|
+
|
|
5078
|
+
/**
|
|
5079
|
+
* Subnet ID.
|
|
5080
|
+
* @type {string || null}
|
|
5081
|
+
*/
|
|
5082
|
+
this.UniqueSubnetId = null;
|
|
5083
|
+
|
|
5084
|
+
/**
|
|
5085
|
+
* Security group id array.
|
|
5086
|
+
* @type {Array.<string> || null}
|
|
5087
|
+
*/
|
|
5088
|
+
this.SecurityGroupIds = null;
|
|
5089
|
+
|
|
5090
|
+
/**
|
|
5091
|
+
* Weight mode: system-system allocation, custom-custom.
|
|
5092
|
+
* @type {string || null}
|
|
5093
|
+
*/
|
|
5094
|
+
this.WeightMode = null;
|
|
5095
|
+
|
|
5096
|
+
/**
|
|
5097
|
+
* Specifies whether to automatically add a read-only instance. valid values: yes, no.
|
|
5098
|
+
* @type {string || null}
|
|
5099
|
+
*/
|
|
5100
|
+
this.AutoAddRo = null;
|
|
5101
|
+
|
|
5102
|
+
/**
|
|
5103
|
+
* Read-Write attribute. valid values: READWRITE, READONLY.
|
|
4685
5104
|
* @type {string || null}
|
|
4686
5105
|
*/
|
|
4687
|
-
this.
|
|
5106
|
+
this.RwType = null;
|
|
5107
|
+
|
|
5108
|
+
/**
|
|
5109
|
+
* Weight information.
|
|
5110
|
+
* @type {Array.<InstanceNameWeight> || null}
|
|
5111
|
+
*/
|
|
5112
|
+
this.InstanceNameWeights = null;
|
|
4688
5113
|
|
|
4689
5114
|
}
|
|
4690
5115
|
|
|
@@ -4695,7 +5120,21 @@ class ModifyAccountHostResponse extends AbstractModel {
|
|
|
4695
5120
|
if (!params) {
|
|
4696
5121
|
return;
|
|
4697
5122
|
}
|
|
4698
|
-
this.
|
|
5123
|
+
this.UniqueVpcId = 'UniqueVpcId' in params ? params.UniqueVpcId : null;
|
|
5124
|
+
this.UniqueSubnetId = 'UniqueSubnetId' in params ? params.UniqueSubnetId : null;
|
|
5125
|
+
this.SecurityGroupIds = 'SecurityGroupIds' in params ? params.SecurityGroupIds : null;
|
|
5126
|
+
this.WeightMode = 'WeightMode' in params ? params.WeightMode : null;
|
|
5127
|
+
this.AutoAddRo = 'AutoAddRo' in params ? params.AutoAddRo : null;
|
|
5128
|
+
this.RwType = 'RwType' in params ? params.RwType : null;
|
|
5129
|
+
|
|
5130
|
+
if (params.InstanceNameWeights) {
|
|
5131
|
+
this.InstanceNameWeights = new Array();
|
|
5132
|
+
for (let z in params.InstanceNameWeights) {
|
|
5133
|
+
let obj = new InstanceNameWeight();
|
|
5134
|
+
obj.deserialize(params.InstanceNameWeights[z]);
|
|
5135
|
+
this.InstanceNameWeights.push(obj);
|
|
5136
|
+
}
|
|
5137
|
+
}
|
|
4699
5138
|
|
|
4700
5139
|
}
|
|
4701
5140
|
}
|
|
@@ -10846,6 +11285,41 @@ class CloseWanRequest extends AbstractModel {
|
|
|
10846
11285
|
}
|
|
10847
11286
|
}
|
|
10848
11287
|
|
|
11288
|
+
/**
|
|
11289
|
+
* Instance weight.
|
|
11290
|
+
* @class
|
|
11291
|
+
*/
|
|
11292
|
+
class InstanceNameWeight extends AbstractModel {
|
|
11293
|
+
constructor(){
|
|
11294
|
+
super();
|
|
11295
|
+
|
|
11296
|
+
/**
|
|
11297
|
+
* Instance name. specifies the name defined by InstanceInitInfo.InstanceName in cluster creation.
|
|
11298
|
+
* @type {string || null}
|
|
11299
|
+
*/
|
|
11300
|
+
this.InstanceName = null;
|
|
11301
|
+
|
|
11302
|
+
/**
|
|
11303
|
+
* Weight
|
|
11304
|
+
* @type {number || null}
|
|
11305
|
+
*/
|
|
11306
|
+
this.Weight = null;
|
|
11307
|
+
|
|
11308
|
+
}
|
|
11309
|
+
|
|
11310
|
+
/**
|
|
11311
|
+
* @private
|
|
11312
|
+
*/
|
|
11313
|
+
deserialize(params) {
|
|
11314
|
+
if (!params) {
|
|
11315
|
+
return;
|
|
11316
|
+
}
|
|
11317
|
+
this.InstanceName = 'InstanceName' in params ? params.InstanceName : null;
|
|
11318
|
+
this.Weight = 'Weight' in params ? params.Weight : null;
|
|
11319
|
+
|
|
11320
|
+
}
|
|
11321
|
+
}
|
|
11322
|
+
|
|
10849
11323
|
/**
|
|
10850
11324
|
* UpgradeProxyVersion request structure.
|
|
10851
11325
|
* @class
|
|
@@ -12249,6 +12723,71 @@ class ModifyProxyDescResponse extends AbstractModel {
|
|
|
12249
12723
|
}
|
|
12250
12724
|
}
|
|
12251
12725
|
|
|
12726
|
+
/**
|
|
12727
|
+
* CreateIntegrateCluster response structure.
|
|
12728
|
+
* @class
|
|
12729
|
+
*/
|
|
12730
|
+
class CreateIntegrateClusterResponse extends AbstractModel {
|
|
12731
|
+
constructor(){
|
|
12732
|
+
super();
|
|
12733
|
+
|
|
12734
|
+
/**
|
|
12735
|
+
* Frozen transaction ID.
|
|
12736
|
+
* @type {string || null}
|
|
12737
|
+
*/
|
|
12738
|
+
this.TranId = null;
|
|
12739
|
+
|
|
12740
|
+
/**
|
|
12741
|
+
* Order ID
|
|
12742
|
+
* @type {Array.<string> || null}
|
|
12743
|
+
*/
|
|
12744
|
+
this.DealNames = null;
|
|
12745
|
+
|
|
12746
|
+
/**
|
|
12747
|
+
* Resource ID list (this field is no longer maintained. please use the dealNames field and the query API DescribeResourcesByDealName to obtain resource ids).
|
|
12748
|
+
* @type {Array.<string> || null}
|
|
12749
|
+
*/
|
|
12750
|
+
this.ResourceIds = null;
|
|
12751
|
+
|
|
12752
|
+
/**
|
|
12753
|
+
* Cluster ID list (this field is no longer maintained. please use the dealNames field to get cluster ids via the DescribeResourcesByDealName api.).
|
|
12754
|
+
* @type {Array.<string> || null}
|
|
12755
|
+
*/
|
|
12756
|
+
this.ClusterIds = null;
|
|
12757
|
+
|
|
12758
|
+
/**
|
|
12759
|
+
* Large order number.
|
|
12760
|
+
|
|
12761
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
12762
|
+
* @type {Array.<string> || null}
|
|
12763
|
+
*/
|
|
12764
|
+
this.BigDealIds = null;
|
|
12765
|
+
|
|
12766
|
+
/**
|
|
12767
|
+
* 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.
|
|
12768
|
+
* @type {string || null}
|
|
12769
|
+
*/
|
|
12770
|
+
this.RequestId = null;
|
|
12771
|
+
|
|
12772
|
+
}
|
|
12773
|
+
|
|
12774
|
+
/**
|
|
12775
|
+
* @private
|
|
12776
|
+
*/
|
|
12777
|
+
deserialize(params) {
|
|
12778
|
+
if (!params) {
|
|
12779
|
+
return;
|
|
12780
|
+
}
|
|
12781
|
+
this.TranId = 'TranId' in params ? params.TranId : null;
|
|
12782
|
+
this.DealNames = 'DealNames' in params ? params.DealNames : null;
|
|
12783
|
+
this.ResourceIds = 'ResourceIds' in params ? params.ResourceIds : null;
|
|
12784
|
+
this.ClusterIds = 'ClusterIds' in params ? params.ClusterIds : null;
|
|
12785
|
+
this.BigDealIds = 'BigDealIds' in params ? params.BigDealIds : null;
|
|
12786
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
12787
|
+
|
|
12788
|
+
}
|
|
12789
|
+
}
|
|
12790
|
+
|
|
12252
12791
|
/**
|
|
12253
12792
|
* ModifyClusterSlaveZone response structure.
|
|
12254
12793
|
* @class
|
|
@@ -15827,6 +16366,70 @@ class OpenClusterPasswordComplexityRequest extends AbstractModel {
|
|
|
15827
16366
|
}
|
|
15828
16367
|
}
|
|
15829
16368
|
|
|
16369
|
+
/**
|
|
16370
|
+
* Access proxy configuration.
|
|
16371
|
+
* @class
|
|
16372
|
+
*/
|
|
16373
|
+
class ProxyConfigInfo extends AbstractModel {
|
|
16374
|
+
constructor(){
|
|
16375
|
+
super();
|
|
16376
|
+
|
|
16377
|
+
/**
|
|
16378
|
+
* Number of database proxy group nodes. this parameter is no longer recommended. recommend using ProxyZones.
|
|
16379
|
+
* @type {number || null}
|
|
16380
|
+
*/
|
|
16381
|
+
this.ProxyCount = null;
|
|
16382
|
+
|
|
16383
|
+
/**
|
|
16384
|
+
* Number of CPU cores
|
|
16385
|
+
* @type {number || null}
|
|
16386
|
+
*/
|
|
16387
|
+
this.Cpu = null;
|
|
16388
|
+
|
|
16389
|
+
/**
|
|
16390
|
+
* Specifies the memory.
|
|
16391
|
+
* @type {number || null}
|
|
16392
|
+
*/
|
|
16393
|
+
this.Mem = null;
|
|
16394
|
+
|
|
16395
|
+
/**
|
|
16396
|
+
* Description.
|
|
16397
|
+
* @type {string || null}
|
|
16398
|
+
*/
|
|
16399
|
+
this.Description = null;
|
|
16400
|
+
|
|
16401
|
+
/**
|
|
16402
|
+
* Database node information (this parameter is used in combination with ProxyCount, either one must be manually input).
|
|
16403
|
+
* @type {Array.<ProxyZone> || null}
|
|
16404
|
+
*/
|
|
16405
|
+
this.ProxyZones = null;
|
|
16406
|
+
|
|
16407
|
+
}
|
|
16408
|
+
|
|
16409
|
+
/**
|
|
16410
|
+
* @private
|
|
16411
|
+
*/
|
|
16412
|
+
deserialize(params) {
|
|
16413
|
+
if (!params) {
|
|
16414
|
+
return;
|
|
16415
|
+
}
|
|
16416
|
+
this.ProxyCount = 'ProxyCount' in params ? params.ProxyCount : null;
|
|
16417
|
+
this.Cpu = 'Cpu' in params ? params.Cpu : null;
|
|
16418
|
+
this.Mem = 'Mem' in params ? params.Mem : null;
|
|
16419
|
+
this.Description = 'Description' in params ? params.Description : null;
|
|
16420
|
+
|
|
16421
|
+
if (params.ProxyZones) {
|
|
16422
|
+
this.ProxyZones = new Array();
|
|
16423
|
+
for (let z in params.ProxyZones) {
|
|
16424
|
+
let obj = new ProxyZone();
|
|
16425
|
+
obj.deserialize(params.ProxyZones[z]);
|
|
16426
|
+
this.ProxyZones.push(obj);
|
|
16427
|
+
}
|
|
16428
|
+
}
|
|
16429
|
+
|
|
16430
|
+
}
|
|
16431
|
+
}
|
|
16432
|
+
|
|
15830
16433
|
/**
|
|
15831
16434
|
* Resource package deduction priority.
|
|
15832
16435
|
* @class
|
|
@@ -16400,6 +17003,63 @@ class LogicBackupConfigInfo extends AbstractModel {
|
|
|
16400
17003
|
}
|
|
16401
17004
|
}
|
|
16402
17005
|
|
|
17006
|
+
/**
|
|
17007
|
+
* Integrated cluster configuration.
|
|
17008
|
+
* @class
|
|
17009
|
+
*/
|
|
17010
|
+
class IntegrateCreateClusterConfig extends AbstractModel {
|
|
17011
|
+
constructor(){
|
|
17012
|
+
super();
|
|
17013
|
+
|
|
17014
|
+
/**
|
|
17015
|
+
* Retention days of binlog. value range: 7-1830.
|
|
17016
|
+
* @type {number || null}
|
|
17017
|
+
*/
|
|
17018
|
+
this.BinlogSaveDays = null;
|
|
17019
|
+
|
|
17020
|
+
/**
|
|
17021
|
+
* Specifies the backup retention days. value range: 7-1830.
|
|
17022
|
+
* @type {number || null}
|
|
17023
|
+
*/
|
|
17024
|
+
this.BackupSaveDays = null;
|
|
17025
|
+
|
|
17026
|
+
/**
|
|
17027
|
+
* Specifies the semi-sync timeout period. value range: [1000,4294967295].
|
|
17028
|
+
* @type {number || null}
|
|
17029
|
+
*/
|
|
17030
|
+
this.SemiSyncTimeout = null;
|
|
17031
|
+
|
|
17032
|
+
/**
|
|
17033
|
+
* proxy connection address configuration message.
|
|
17034
|
+
* @type {Array.<ProxyEndPointConfigInfo> || null}
|
|
17035
|
+
*/
|
|
17036
|
+
this.ProxyEndPointConfigs = null;
|
|
17037
|
+
|
|
17038
|
+
}
|
|
17039
|
+
|
|
17040
|
+
/**
|
|
17041
|
+
* @private
|
|
17042
|
+
*/
|
|
17043
|
+
deserialize(params) {
|
|
17044
|
+
if (!params) {
|
|
17045
|
+
return;
|
|
17046
|
+
}
|
|
17047
|
+
this.BinlogSaveDays = 'BinlogSaveDays' in params ? params.BinlogSaveDays : null;
|
|
17048
|
+
this.BackupSaveDays = 'BackupSaveDays' in params ? params.BackupSaveDays : null;
|
|
17049
|
+
this.SemiSyncTimeout = 'SemiSyncTimeout' in params ? params.SemiSyncTimeout : null;
|
|
17050
|
+
|
|
17051
|
+
if (params.ProxyEndPointConfigs) {
|
|
17052
|
+
this.ProxyEndPointConfigs = new Array();
|
|
17053
|
+
for (let z in params.ProxyEndPointConfigs) {
|
|
17054
|
+
let obj = new ProxyEndPointConfigInfo();
|
|
17055
|
+
obj.deserialize(params.ProxyEndPointConfigs[z]);
|
|
17056
|
+
this.ProxyEndPointConfigs.push(obj);
|
|
17057
|
+
}
|
|
17058
|
+
}
|
|
17059
|
+
|
|
17060
|
+
}
|
|
17061
|
+
}
|
|
17062
|
+
|
|
16403
17063
|
/**
|
|
16404
17064
|
* DeleteBackup response structure.
|
|
16405
17065
|
* @class
|
|
@@ -16862,6 +17522,62 @@ class DescribeBackupListRequest extends AbstractModel {
|
|
|
16862
17522
|
}
|
|
16863
17523
|
}
|
|
16864
17524
|
|
|
17525
|
+
/**
|
|
17526
|
+
* Initializes the configuration information of an instance.
|
|
17527
|
+
* @class
|
|
17528
|
+
*/
|
|
17529
|
+
class IntegrateInstanceInfo extends AbstractModel {
|
|
17530
|
+
constructor(){
|
|
17531
|
+
super();
|
|
17532
|
+
|
|
17533
|
+
/**
|
|
17534
|
+
* Specifies the cpu of the instance.
|
|
17535
|
+
* @type {number || null}
|
|
17536
|
+
*/
|
|
17537
|
+
this.Cpu = null;
|
|
17538
|
+
|
|
17539
|
+
/**
|
|
17540
|
+
* Specifies the instance memory.
|
|
17541
|
+
* @type {number || null}
|
|
17542
|
+
*/
|
|
17543
|
+
this.Memory = null;
|
|
17544
|
+
|
|
17545
|
+
/**
|
|
17546
|
+
* Instance type (rw/ro).
|
|
17547
|
+
* @type {string || null}
|
|
17548
|
+
*/
|
|
17549
|
+
this.InstanceType = null;
|
|
17550
|
+
|
|
17551
|
+
/**
|
|
17552
|
+
* Number of instances. value range: [1,15].
|
|
17553
|
+
* @type {number || null}
|
|
17554
|
+
*/
|
|
17555
|
+
this.InstanceCount = null;
|
|
17556
|
+
|
|
17557
|
+
/**
|
|
17558
|
+
* Instance machine type. valid values: universal type (common), exclusive type.
|
|
17559
|
+
* @type {string || null}
|
|
17560
|
+
*/
|
|
17561
|
+
this.DeviceType = null;
|
|
17562
|
+
|
|
17563
|
+
}
|
|
17564
|
+
|
|
17565
|
+
/**
|
|
17566
|
+
* @private
|
|
17567
|
+
*/
|
|
17568
|
+
deserialize(params) {
|
|
17569
|
+
if (!params) {
|
|
17570
|
+
return;
|
|
17571
|
+
}
|
|
17572
|
+
this.Cpu = 'Cpu' in params ? params.Cpu : null;
|
|
17573
|
+
this.Memory = 'Memory' in params ? params.Memory : null;
|
|
17574
|
+
this.InstanceType = 'InstanceType' in params ? params.InstanceType : null;
|
|
17575
|
+
this.InstanceCount = 'InstanceCount' in params ? params.InstanceCount : null;
|
|
17576
|
+
this.DeviceType = 'DeviceType' in params ? params.DeviceType : null;
|
|
17577
|
+
|
|
17578
|
+
}
|
|
17579
|
+
}
|
|
17580
|
+
|
|
16865
17581
|
/**
|
|
16866
17582
|
* ExportInstanceErrorLogs response structure.
|
|
16867
17583
|
* @class
|
|
@@ -19743,6 +20459,7 @@ module.exports = {
|
|
|
19743
20459
|
AddInstancesResponse: AddInstancesResponse,
|
|
19744
20460
|
BackupLimitClusterRestriction: BackupLimitClusterRestriction,
|
|
19745
20461
|
SlowQueriesItem: SlowQueriesItem,
|
|
20462
|
+
DescribeIntegrateTaskRequest: DescribeIntegrateTaskRequest,
|
|
19746
20463
|
ProxyGroupInfo: ProxyGroupInfo,
|
|
19747
20464
|
CreateProxyEndPointRequest: CreateProxyEndPointRequest,
|
|
19748
20465
|
ModifyBackupDownloadUserRestrictionResponse: ModifyBackupDownloadUserRestrictionResponse,
|
|
@@ -19754,6 +20471,7 @@ module.exports = {
|
|
|
19754
20471
|
DescribeClusterReadOnlyResponse: DescribeClusterReadOnlyResponse,
|
|
19755
20472
|
DescribeInstanceSpecsRequest: DescribeInstanceSpecsRequest,
|
|
19756
20473
|
DescribeProxyNodesResponse: DescribeProxyNodesResponse,
|
|
20474
|
+
CreateIntegrateClusterRequest: CreateIntegrateClusterRequest,
|
|
19757
20475
|
ProxyNodeInfo: ProxyNodeInfo,
|
|
19758
20476
|
DescribeZonesResponse: DescribeZonesResponse,
|
|
19759
20477
|
ModifyParamTemplateRequest: ModifyParamTemplateRequest,
|
|
@@ -19763,6 +20481,7 @@ module.exports = {
|
|
|
19763
20481
|
DescribeProxyNodesRequest: DescribeProxyNodesRequest,
|
|
19764
20482
|
InquirePriceCreateResponse: InquirePriceCreateResponse,
|
|
19765
20483
|
DescribeClusterReadOnlyRequest: DescribeClusterReadOnlyRequest,
|
|
20484
|
+
DescribeIntegrateTaskResponse: DescribeIntegrateTaskResponse,
|
|
19766
20485
|
Account: Account,
|
|
19767
20486
|
CreateClusterDatabaseResponse: CreateClusterDatabaseResponse,
|
|
19768
20487
|
CloseProxyResponse: CloseProxyResponse,
|
|
@@ -19777,6 +20496,7 @@ module.exports = {
|
|
|
19777
20496
|
AuditRuleFilters: AuditRuleFilters,
|
|
19778
20497
|
DescribeClusterParamsRequest: DescribeClusterParamsRequest,
|
|
19779
20498
|
ModifyAccountHostResponse: ModifyAccountHostResponse,
|
|
20499
|
+
ProxyEndPointConfigInfo: ProxyEndPointConfigInfo,
|
|
19780
20500
|
DescribeServerlessInstanceSpecsResponse: DescribeServerlessInstanceSpecsResponse,
|
|
19781
20501
|
DescribeBinlogsRequest: DescribeBinlogsRequest,
|
|
19782
20502
|
InquirePriceModifyResponse: InquirePriceModifyResponse,
|
|
@@ -19892,6 +20612,7 @@ module.exports = {
|
|
|
19892
20612
|
DescribeBinlogSaveDaysResponse: DescribeBinlogSaveDaysResponse,
|
|
19893
20613
|
ModifyResourcePackagesDeductionPriorityResponse: ModifyResourcePackagesDeductionPriorityResponse,
|
|
19894
20614
|
CloseWanRequest: CloseWanRequest,
|
|
20615
|
+
InstanceNameWeight: InstanceNameWeight,
|
|
19895
20616
|
UpgradeProxyVersionRequest: UpgradeProxyVersionRequest,
|
|
19896
20617
|
ModifyResourcePackageClustersRequest: ModifyResourcePackageClustersRequest,
|
|
19897
20618
|
ObjectTask: ObjectTask,
|
|
@@ -19922,6 +20643,7 @@ module.exports = {
|
|
|
19922
20643
|
DescribeAuditRuleWithInstanceIdsResponse: DescribeAuditRuleWithInstanceIdsResponse,
|
|
19923
20644
|
SearchClusterDatabasesRequest: SearchClusterDatabasesRequest,
|
|
19924
20645
|
ModifyProxyDescResponse: ModifyProxyDescResponse,
|
|
20646
|
+
CreateIntegrateClusterResponse: CreateIntegrateClusterResponse,
|
|
19925
20647
|
ModifyClusterSlaveZoneResponse: ModifyClusterSlaveZoneResponse,
|
|
19926
20648
|
BinlogItem: BinlogItem,
|
|
19927
20649
|
ModifyProxyDescRequest: ModifyProxyDescRequest,
|
|
@@ -19983,6 +20705,7 @@ module.exports = {
|
|
|
19983
20705
|
ClusterInstanceDetail: ClusterInstanceDetail,
|
|
19984
20706
|
OldAddrInfo: OldAddrInfo,
|
|
19985
20707
|
OpenClusterPasswordComplexityRequest: OpenClusterPasswordComplexityRequest,
|
|
20708
|
+
ProxyConfigInfo: ProxyConfigInfo,
|
|
19986
20709
|
PackagePriority: PackagePriority,
|
|
19987
20710
|
DescribeInstancesWithinSameClusterRequest: DescribeInstancesWithinSameClusterRequest,
|
|
19988
20711
|
ModifyAccountDescriptionResponse: ModifyAccountDescriptionResponse,
|
|
@@ -19996,6 +20719,7 @@ module.exports = {
|
|
|
19996
20719
|
IsolateInstanceRequest: IsolateInstanceRequest,
|
|
19997
20720
|
DescribeAuditRuleTemplatesResponse: DescribeAuditRuleTemplatesResponse,
|
|
19998
20721
|
LogicBackupConfigInfo: LogicBackupConfigInfo,
|
|
20722
|
+
IntegrateCreateClusterConfig: IntegrateCreateClusterConfig,
|
|
19999
20723
|
DeleteBackupResponse: DeleteBackupResponse,
|
|
20000
20724
|
ModifyBackupDownloadRestrictionResponse: ModifyBackupDownloadRestrictionResponse,
|
|
20001
20725
|
ParamDetail: ParamDetail,
|
|
@@ -20004,6 +20728,7 @@ module.exports = {
|
|
|
20004
20728
|
OpenAuditServiceRequest: OpenAuditServiceRequest,
|
|
20005
20729
|
ModifyResourcePackageNameResponse: ModifyResourcePackageNameResponse,
|
|
20006
20730
|
DescribeBackupListRequest: DescribeBackupListRequest,
|
|
20731
|
+
IntegrateInstanceInfo: IntegrateInstanceInfo,
|
|
20007
20732
|
ExportInstanceErrorLogsResponse: ExportInstanceErrorLogsResponse,
|
|
20008
20733
|
ParamItemDetail: ParamItemDetail,
|
|
20009
20734
|
SlaveZoneStockInfo: SlaveZoneStockInfo,
|