tencentcloud-sdk-nodejs-intl-en 3.0.1367 → 3.0.1368
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/common/sdk_version.js +1 -1
- package/tencentcloud/cynosdb/v20190107/cynosdb_client.js +853 -131
- package/tencentcloud/cynosdb/v20190107/models.js +20644 -11194
- package/tencentcloud/mdl/v20200326/mdl_client.js +3 -0
- package/tencentcloud/mdl/v20200326/models.js +416 -262
- package/tencentcloud/monitor/v20180724/models.js +199 -86
- package/tencentcloud/monitor/v20180724/monitor_client.js +4 -2
- package/tencentcloud/ocr/v20181119/models.js +234 -69
- package/tencentcloud/ocr/v20181119/ocr_client.js +17 -3
- package/tencentcloud/ssl/v20191205/ssl_client.js +1 -1
- package/tencentcloud/tdmq/v20200217/models.js +650 -181
- package/tencentcloud/tdmq/v20200217/tdmq_client.js +25 -8
|
@@ -148,33 +148,35 @@ class ModifyRocketMQInstanceSpecRequest extends AbstractModel {
|
|
|
148
148
|
super();
|
|
149
149
|
|
|
150
150
|
/**
|
|
151
|
-
*
|
|
151
|
+
* <p>Dedicated Instance ID</p>
|
|
152
152
|
* @type {string || null}
|
|
153
153
|
*/
|
|
154
154
|
this.InstanceId = null;
|
|
155
155
|
|
|
156
156
|
/**
|
|
157
|
-
* Instance specification
|
|
158
|
-
Valid values: `rocket-vip-basic-1` (Basic),
|
|
159
|
-
`rocket-vip-basic-2` (Standard),
|
|
160
|
-
`rocket-vip-basic-3` (Advanced I),
|
|
161
|
-
`rocket-vip-basic-4` (Advanced II).
|
|
157
|
+
* <p>Instance specification,<br>rocket-vip-basic-1 basic<br>rocket-vip-basic-2 standard type<br>rocket-vip-basic-3 higher-order type I<br>rocket-vip-basic-4 higher-order type II</p>
|
|
162
158
|
* @type {string || null}
|
|
163
159
|
*/
|
|
164
160
|
this.Specification = null;
|
|
165
161
|
|
|
166
162
|
/**
|
|
167
|
-
* Node count
|
|
163
|
+
* <p>Node count</p>
|
|
168
164
|
* @type {number || null}
|
|
169
165
|
*/
|
|
170
166
|
this.NodeCount = null;
|
|
171
167
|
|
|
172
168
|
/**
|
|
173
|
-
* Storage space in GB
|
|
169
|
+
* <p>Storage space in GB</p>
|
|
174
170
|
* @type {number || null}
|
|
175
171
|
*/
|
|
176
172
|
this.StorageSize = null;
|
|
177
173
|
|
|
174
|
+
/**
|
|
175
|
+
* <p>Deploy availability zone list</p>
|
|
176
|
+
* @type {Array.<string> || null}
|
|
177
|
+
*/
|
|
178
|
+
this.ZoneIds = null;
|
|
179
|
+
|
|
178
180
|
}
|
|
179
181
|
|
|
180
182
|
/**
|
|
@@ -188,6 +190,7 @@ Valid values: `rocket-vip-basic-1` (Basic),
|
|
|
188
190
|
this.Specification = 'Specification' in params ? params.Specification : null;
|
|
189
191
|
this.NodeCount = 'NodeCount' in params ? params.NodeCount : null;
|
|
190
192
|
this.StorageSize = 'StorageSize' in params ? params.StorageSize : null;
|
|
193
|
+
this.ZoneIds = 'ZoneIds' in params ? params.ZoneIds : null;
|
|
191
194
|
|
|
192
195
|
}
|
|
193
196
|
}
|
|
@@ -906,48 +909,53 @@ class ModifyRabbitMQUserRequest extends AbstractModel {
|
|
|
906
909
|
super();
|
|
907
910
|
|
|
908
911
|
/**
|
|
909
|
-
* Instance ID, such as amqp-xxxxxxxx.
|
|
912
|
+
* <p>Instance ID, such as amqp-xxxxxxxx. Effective InstanceId can be obtained by logging in to the <a href="https://console.cloud.tencent.com/trabbitmq/cluster?rid=1">TDMQ RabbitMQ Console</a> for querying.</p>
|
|
910
913
|
* @type {string || null}
|
|
911
914
|
*/
|
|
912
915
|
this.InstanceId = null;
|
|
913
916
|
|
|
914
917
|
/**
|
|
915
|
-
* Username, such as rabbitmq. To find an effective
|
|
918
|
+
* <p>Username, such as rabbitmq. To find an effective userName, log in to the <a href="https://console.cloud.tencent.com/trabbitmq/cluster?rid=1">TDMQ RabbitMQ Console</a>, click a cluster in the list, enter cluster details, and locate the list of users under the user and permission management tab so as to find the username. Modification of the admin password is not supported currently.</p>
|
|
916
919
|
* @type {string || null}
|
|
917
920
|
*/
|
|
918
921
|
this.User = null;
|
|
919
922
|
|
|
920
923
|
/**
|
|
921
|
-
* Password, used when logging in.
|
|
924
|
+
* <p>Password, used when logging in. Requirements: Cannot be empty, 8-64 characters, must contain at least two of the following: lowercase letter, uppercase letter, digit, special character [()`~!@#$%^&*_=|{}[]:;',.?/].</p>
|
|
922
925
|
* @type {string || null}
|
|
923
926
|
*/
|
|
924
927
|
this.Password = null;
|
|
925
928
|
|
|
926
929
|
/**
|
|
927
|
-
* Description.
|
|
930
|
+
* <p>Description. Leave it empty to keep it unchanged.</p>
|
|
928
931
|
* @type {string || null}
|
|
929
932
|
*/
|
|
930
933
|
this.Description = null;
|
|
931
934
|
|
|
932
935
|
/**
|
|
933
|
-
* User tag, used to determine the access permission of the user
|
|
934
|
-
management: ordinary console user. monitoring: administrative console user. other value: non-console user.
|
|
936
|
+
* <p>User tag, used to determine the access permission of the user to RabbitMQ Management<br>management: ordinary console user, monitoring: console user with management privileges, other value: non-console user</p>
|
|
935
937
|
* @type {Array.<string> || null}
|
|
936
938
|
*/
|
|
937
939
|
this.Tags = null;
|
|
938
940
|
|
|
939
941
|
/**
|
|
940
|
-
*
|
|
942
|
+
* <p>Maximum number of connections for this user. Leave it blank to keep unchanged.</p>
|
|
941
943
|
* @type {number || null}
|
|
942
944
|
*/
|
|
943
945
|
this.MaxConnections = null;
|
|
944
946
|
|
|
945
947
|
/**
|
|
946
|
-
*
|
|
948
|
+
* <p>Maximum number of channels for the user's. Leave blank to keep unchanged.</p>
|
|
947
949
|
* @type {number || null}
|
|
948
950
|
*/
|
|
949
951
|
this.MaxChannels = null;
|
|
950
952
|
|
|
953
|
+
/**
|
|
954
|
+
* <p>Whether cam authentication is enabled</p>
|
|
955
|
+
* @type {boolean || null}
|
|
956
|
+
*/
|
|
957
|
+
this.EnableCamAuth = null;
|
|
958
|
+
|
|
951
959
|
}
|
|
952
960
|
|
|
953
961
|
/**
|
|
@@ -964,6 +972,7 @@ management: ordinary console user. monitoring: administrative console user. othe
|
|
|
964
972
|
this.Tags = 'Tags' in params ? params.Tags : null;
|
|
965
973
|
this.MaxConnections = 'MaxConnections' in params ? params.MaxConnections : null;
|
|
966
974
|
this.MaxChannels = 'MaxChannels' in params ? params.MaxChannels : null;
|
|
975
|
+
this.EnableCamAuth = 'EnableCamAuth' in params ? params.EnableCamAuth : null;
|
|
967
976
|
|
|
968
977
|
}
|
|
969
978
|
}
|
|
@@ -1054,155 +1063,151 @@ class RabbitMQVipInstance extends AbstractModel {
|
|
|
1054
1063
|
super();
|
|
1055
1064
|
|
|
1056
1065
|
/**
|
|
1057
|
-
* Instance ID
|
|
1066
|
+
* <p>Instance ID</p>
|
|
1058
1067
|
* @type {string || null}
|
|
1059
1068
|
*/
|
|
1060
1069
|
this.InstanceId = null;
|
|
1061
1070
|
|
|
1062
1071
|
/**
|
|
1063
|
-
* Instance name
|
|
1072
|
+
* <p>Instance name</p>
|
|
1064
1073
|
* @type {string || null}
|
|
1065
1074
|
*/
|
|
1066
1075
|
this.InstanceName = null;
|
|
1067
1076
|
|
|
1068
1077
|
/**
|
|
1069
|
-
* Instance version
|
|
1078
|
+
* <p>Instance version</p>
|
|
1070
1079
|
* @type {string || null}
|
|
1071
1080
|
*/
|
|
1072
1081
|
this.InstanceVersion = null;
|
|
1073
1082
|
|
|
1074
1083
|
/**
|
|
1075
|
-
* Instance status.
|
|
1084
|
+
* <p>Instance status. 0 indicates creating in progress, 1 indicates normal, 2 indicates isolated, 3 indicates terminated, 4 - abnormal, 5 - delivery failed</p>
|
|
1076
1085
|
* @type {number || null}
|
|
1077
1086
|
*/
|
|
1078
1087
|
this.Status = null;
|
|
1079
1088
|
|
|
1080
1089
|
/**
|
|
1081
|
-
*
|
|
1090
|
+
* <p>Node count</p>
|
|
1082
1091
|
* @type {number || null}
|
|
1083
1092
|
*/
|
|
1084
1093
|
this.NodeCount = null;
|
|
1085
1094
|
|
|
1086
1095
|
/**
|
|
1087
|
-
* Instance specification name
|
|
1096
|
+
* <p>Instance configuration specification name</p>
|
|
1088
1097
|
* @type {string || null}
|
|
1089
1098
|
*/
|
|
1090
1099
|
this.ConfigDisplay = null;
|
|
1091
1100
|
|
|
1092
1101
|
/**
|
|
1093
|
-
* Peak TPS
|
|
1102
|
+
* <p>Peak TPS</p>
|
|
1094
1103
|
* @type {number || null}
|
|
1095
1104
|
*/
|
|
1096
1105
|
this.MaxTps = null;
|
|
1097
1106
|
|
|
1098
1107
|
/**
|
|
1099
|
-
* Peak bandwidth in Mbps
|
|
1108
|
+
* <p>Peak bandwidth in Mbps</p>
|
|
1100
1109
|
* @type {number || null}
|
|
1101
1110
|
*/
|
|
1102
1111
|
this.MaxBandWidth = null;
|
|
1103
1112
|
|
|
1104
1113
|
/**
|
|
1105
|
-
* Storage capacity in GB
|
|
1114
|
+
* <p>Storage capacity in GB</p>
|
|
1106
1115
|
* @type {number || null}
|
|
1107
1116
|
*/
|
|
1108
1117
|
this.MaxStorage = null;
|
|
1109
1118
|
|
|
1110
1119
|
/**
|
|
1111
|
-
*
|
|
1120
|
+
* <p>Instance expiration time. The value is 0 for pay-as-you-go instances, in milliseconds. unix timestamp.</p>
|
|
1112
1121
|
* @type {number || null}
|
|
1113
1122
|
*/
|
|
1114
1123
|
this.ExpireTime = null;
|
|
1115
1124
|
|
|
1116
1125
|
/**
|
|
1117
|
-
*
|
|
1126
|
+
* <p>Auto-renewal flag. 0 means default state (not set by the user, i.e., initial state is manual renewal), 1 means auto-renew, 2 means explicitly no auto-renew (set by the user)</p>
|
|
1118
1127
|
* @type {number || null}
|
|
1119
1128
|
*/
|
|
1120
1129
|
this.AutoRenewFlag = null;
|
|
1121
1130
|
|
|
1122
1131
|
/**
|
|
1123
|
-
* 1 indicates prepaid mode, 0 indicates postpaid
|
|
1132
|
+
* <p>1 indicates prepaid mode, 0 indicates postpaid</p>
|
|
1124
1133
|
* @type {number || null}
|
|
1125
1134
|
*/
|
|
1126
1135
|
this.PayMode = null;
|
|
1127
1136
|
|
|
1128
1137
|
/**
|
|
1129
|
-
*
|
|
1138
|
+
* <p>Remark information</p>
|
|
1130
1139
|
* @type {string || null}
|
|
1131
1140
|
*/
|
|
1132
1141
|
this.Remark = null;
|
|
1133
1142
|
|
|
1134
1143
|
/**
|
|
1135
|
-
* Node specification of the cluster
|
|
1136
|
-
2C8G:rabbit-vip-profession-2c8g
|
|
1137
|
-
4C16G:rabbit-vip-profession-4c16g
|
|
1138
|
-
8C32G:rabbit-vip-profession-8c32g
|
|
1139
|
-
16C32G:rabbit-vip-basic-4
|
|
1140
|
-
16C64G:rabbit-vip-profession-16c64g
|
|
1141
|
-
2C4G:rabbit-vip-basic-5
|
|
1142
|
-
4C8G:rabbit-vip-basic-1
|
|
1143
|
-
8C16G (sold out): rabbit-vip-basic-2.
|
|
1144
|
-
Specifies the default value as 4C8G: rabbit-vip-basic-1.
|
|
1144
|
+
* <p>Node specification of the cluster with corresponding flag:<br>2C8G: rabbit-vip-profession-2c8g<br>4C16G: rabbit-vip-profession-4c16g<br>8C32G: rabbit-vip-profession-8c32g<br>16C32G: rabbit-vip-basic-4<br>16C64G: rabbit-vip-profession-16c64g<br>2C4G: rabbit-vip-basic-5<br>4C8G: rabbit-vip-basic-1<br>8C16G (sold out): rabbit-vip-basic-2<br>Defaults to 4C8G: rabbit-vip-basic-1 if not specified</p>
|
|
1145
1145
|
* @type {string || null}
|
|
1146
1146
|
*/
|
|
1147
1147
|
this.SpecName = null;
|
|
1148
1148
|
|
|
1149
1149
|
/**
|
|
1150
|
-
* Cluster exception information
|
|
1150
|
+
* <p>Cluster exception information</p>
|
|
1151
1151
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1152
1152
|
* @type {string || null}
|
|
1153
1153
|
*/
|
|
1154
1154
|
this.ExceptionInformation = null;
|
|
1155
1155
|
|
|
1156
1156
|
/**
|
|
1157
|
-
* Instance status.
|
|
1158
|
-
This parameter is used to display the instance status additionally and distinguish from the `Status` parameter.
|
|
1157
|
+
* <p>Instance status. 0 indicates creating in progress, 1 indicates normal, 2 indicates isolated, 3 indicates terminated, 4 - abnormal, 5 - delivery failed<br>To separate from the billing area, enable an additional status bit for display.</p>
|
|
1159
1158
|
* @type {number || null}
|
|
1160
1159
|
*/
|
|
1161
1160
|
this.ClusterStatus = null;
|
|
1162
1161
|
|
|
1163
1162
|
/**
|
|
1164
|
-
*
|
|
1163
|
+
* <p>public network access point</p>
|
|
1165
1164
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1166
1165
|
* @type {string || null}
|
|
1167
1166
|
*/
|
|
1168
1167
|
this.PublicAccessEndpoint = null;
|
|
1169
1168
|
|
|
1170
1169
|
/**
|
|
1171
|
-
* VPC access point list
|
|
1170
|
+
* <p>VPC access point list</p>
|
|
1172
1171
|
* @type {Array.<VpcEndpointInfo> || null}
|
|
1173
1172
|
*/
|
|
1174
1173
|
this.Vpcs = null;
|
|
1175
1174
|
|
|
1176
1175
|
/**
|
|
1177
|
-
* Creation time in milliseconds. unix timestamp
|
|
1176
|
+
* <p>Creation time in milliseconds. unix timestamp</p>
|
|
1178
1177
|
* @type {number || null}
|
|
1179
1178
|
*/
|
|
1180
1179
|
this.CreateTime = null;
|
|
1181
1180
|
|
|
1182
1181
|
/**
|
|
1183
|
-
* Instance type
|
|
1182
|
+
* <p>Instance type</p><p>Enumeration value:</p><ul><li>0: Managed version instance</li></ul>
|
|
1184
1183
|
* @type {number || null}
|
|
1185
1184
|
*/
|
|
1186
1185
|
this.InstanceType = null;
|
|
1187
1186
|
|
|
1188
1187
|
/**
|
|
1189
|
-
* Isolation time
|
|
1188
|
+
* <p>Isolation time in milliseconds. unix timestamp</p>
|
|
1190
1189
|
* @type {number || null}
|
|
1191
1190
|
*/
|
|
1192
1191
|
this.IsolatedTime = null;
|
|
1193
1192
|
|
|
1194
1193
|
/**
|
|
1195
|
-
* Whether deletion protection is enabled
|
|
1194
|
+
* <p>Whether deletion protection is enabled</p>
|
|
1196
1195
|
* @type {boolean || null}
|
|
1197
1196
|
*/
|
|
1198
1197
|
this.EnableDeletionProtection = null;
|
|
1199
1198
|
|
|
1200
1199
|
/**
|
|
1201
|
-
* Tag list
|
|
1200
|
+
* <p>Tag list</p>
|
|
1202
1201
|
* @type {Array.<Tag> || null}
|
|
1203
1202
|
*/
|
|
1204
1203
|
this.Tags = null;
|
|
1205
1204
|
|
|
1205
|
+
/**
|
|
1206
|
+
* <p>public data stream Stream access point</p>
|
|
1207
|
+
* @type {string || null}
|
|
1208
|
+
*/
|
|
1209
|
+
this.PublicStreamAccessEndpoint = null;
|
|
1210
|
+
|
|
1206
1211
|
}
|
|
1207
1212
|
|
|
1208
1213
|
/**
|
|
@@ -1251,6 +1256,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
1251
1256
|
this.Tags.push(obj);
|
|
1252
1257
|
}
|
|
1253
1258
|
}
|
|
1259
|
+
this.PublicStreamAccessEndpoint = 'PublicStreamAccessEndpoint' in params ? params.PublicStreamAccessEndpoint : null;
|
|
1254
1260
|
|
|
1255
1261
|
}
|
|
1256
1262
|
}
|
|
@@ -1624,26 +1630,45 @@ class DescribeRabbitMQQueuesResponse extends AbstractModel {
|
|
|
1624
1630
|
}
|
|
1625
1631
|
|
|
1626
1632
|
/**
|
|
1627
|
-
*
|
|
1633
|
+
* DescribeEnvironments request structure.
|
|
1628
1634
|
* @class
|
|
1629
1635
|
*/
|
|
1630
|
-
class
|
|
1636
|
+
class DescribeEnvironmentsRequest extends AbstractModel {
|
|
1631
1637
|
constructor(){
|
|
1632
1638
|
super();
|
|
1633
1639
|
|
|
1634
1640
|
/**
|
|
1635
|
-
*
|
|
1636
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1641
|
+
* Pulsar cluster ID
|
|
1637
1642
|
* @type {string || null}
|
|
1638
1643
|
*/
|
|
1639
|
-
this.
|
|
1644
|
+
this.ClusterId = null;
|
|
1640
1645
|
|
|
1641
1646
|
/**
|
|
1642
|
-
*
|
|
1643
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1647
|
+
* Fuzzy search by namespace name.
|
|
1644
1648
|
* @type {string || null}
|
|
1645
1649
|
*/
|
|
1646
|
-
this.
|
|
1650
|
+
this.EnvironmentId = null;
|
|
1651
|
+
|
|
1652
|
+
/**
|
|
1653
|
+
* Offset, which defaults to 0 if left empty.
|
|
1654
|
+
* @type {number || null}
|
|
1655
|
+
*/
|
|
1656
|
+
this.Offset = null;
|
|
1657
|
+
|
|
1658
|
+
/**
|
|
1659
|
+
* The number of results to be returned, which defaults to 10 if left empty. The maximum value is 20.
|
|
1660
|
+
* @type {number || null}
|
|
1661
|
+
*/
|
|
1662
|
+
this.Limit = null;
|
|
1663
|
+
|
|
1664
|
+
/**
|
|
1665
|
+
* * EnvironmentId
|
|
1666
|
+
Filter by namespace for exact query.
|
|
1667
|
+
Type: String
|
|
1668
|
+
Required: No
|
|
1669
|
+
* @type {Array.<Filter> || null}
|
|
1670
|
+
*/
|
|
1671
|
+
this.Filters = null;
|
|
1647
1672
|
|
|
1648
1673
|
}
|
|
1649
1674
|
|
|
@@ -1654,8 +1679,19 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
1654
1679
|
if (!params) {
|
|
1655
1680
|
return;
|
|
1656
1681
|
}
|
|
1657
|
-
this.
|
|
1658
|
-
this.
|
|
1682
|
+
this.ClusterId = 'ClusterId' in params ? params.ClusterId : null;
|
|
1683
|
+
this.EnvironmentId = 'EnvironmentId' in params ? params.EnvironmentId : null;
|
|
1684
|
+
this.Offset = 'Offset' in params ? params.Offset : null;
|
|
1685
|
+
this.Limit = 'Limit' in params ? params.Limit : null;
|
|
1686
|
+
|
|
1687
|
+
if (params.Filters) {
|
|
1688
|
+
this.Filters = new Array();
|
|
1689
|
+
for (let z in params.Filters) {
|
|
1690
|
+
let obj = new Filter();
|
|
1691
|
+
obj.deserialize(params.Filters[z]);
|
|
1692
|
+
this.Filters.push(obj);
|
|
1693
|
+
}
|
|
1694
|
+
}
|
|
1659
1695
|
|
|
1660
1696
|
}
|
|
1661
1697
|
}
|
|
@@ -4643,6 +4679,71 @@ class DescribePulsarProInstancesRequest extends AbstractModel {
|
|
|
4643
4679
|
}
|
|
4644
4680
|
}
|
|
4645
4681
|
|
|
4682
|
+
/**
|
|
4683
|
+
* RocketMQ Consumer Group Configuration Information
|
|
4684
|
+
* @class
|
|
4685
|
+
*/
|
|
4686
|
+
class RocketMQGroupConfig extends AbstractModel {
|
|
4687
|
+
constructor(){
|
|
4688
|
+
super();
|
|
4689
|
+
|
|
4690
|
+
/**
|
|
4691
|
+
* Namespace
|
|
4692
|
+
* @type {string || null}
|
|
4693
|
+
*/
|
|
4694
|
+
this.Namespace = null;
|
|
4695
|
+
|
|
4696
|
+
/**
|
|
4697
|
+
* consumer group name
|
|
4698
|
+
* @type {string || null}
|
|
4699
|
+
*/
|
|
4700
|
+
this.GroupName = null;
|
|
4701
|
+
|
|
4702
|
+
/**
|
|
4703
|
+
* Broadcast enabled
|
|
4704
|
+
* @type {boolean || null}
|
|
4705
|
+
*/
|
|
4706
|
+
this.ConsumeBroadcastEnable = null;
|
|
4707
|
+
|
|
4708
|
+
/**
|
|
4709
|
+
* Whether to enable consumption
|
|
4710
|
+
* @type {boolean || null}
|
|
4711
|
+
*/
|
|
4712
|
+
this.ConsumeEnable = null;
|
|
4713
|
+
|
|
4714
|
+
/**
|
|
4715
|
+
* Remarks
|
|
4716
|
+
* @type {string || null}
|
|
4717
|
+
*/
|
|
4718
|
+
this.Remark = null;
|
|
4719
|
+
|
|
4720
|
+
/**
|
|
4721
|
+
* Protocol type, support the following enumeration value
|
|
4722
|
+
TCP;
|
|
4723
|
+
HTTP;
|
|
4724
|
+
* @type {string || null}
|
|
4725
|
+
*/
|
|
4726
|
+
this.ConsumerGroupType = null;
|
|
4727
|
+
|
|
4728
|
+
}
|
|
4729
|
+
|
|
4730
|
+
/**
|
|
4731
|
+
* @private
|
|
4732
|
+
*/
|
|
4733
|
+
deserialize(params) {
|
|
4734
|
+
if (!params) {
|
|
4735
|
+
return;
|
|
4736
|
+
}
|
|
4737
|
+
this.Namespace = 'Namespace' in params ? params.Namespace : null;
|
|
4738
|
+
this.GroupName = 'GroupName' in params ? params.GroupName : null;
|
|
4739
|
+
this.ConsumeBroadcastEnable = 'ConsumeBroadcastEnable' in params ? params.ConsumeBroadcastEnable : null;
|
|
4740
|
+
this.ConsumeEnable = 'ConsumeEnable' in params ? params.ConsumeEnable : null;
|
|
4741
|
+
this.Remark = 'Remark' in params ? params.Remark : null;
|
|
4742
|
+
this.ConsumerGroupType = 'ConsumerGroupType' in params ? params.ConsumerGroupType : null;
|
|
4743
|
+
|
|
4744
|
+
}
|
|
4745
|
+
}
|
|
4746
|
+
|
|
4646
4747
|
/**
|
|
4647
4748
|
*
|
|
4648
4749
|
* @class
|
|
@@ -4652,41 +4753,53 @@ class VpcEndpointInfo extends AbstractModel {
|
|
|
4652
4753
|
super();
|
|
4653
4754
|
|
|
4654
4755
|
/**
|
|
4655
|
-
*
|
|
4756
|
+
* <p>vpc id</p>
|
|
4656
4757
|
* @type {string || null}
|
|
4657
4758
|
*/
|
|
4658
4759
|
this.VpcId = null;
|
|
4659
4760
|
|
|
4660
4761
|
/**
|
|
4661
|
-
*
|
|
4762
|
+
* <p>Subnet id</p>
|
|
4662
4763
|
* @type {string || null}
|
|
4663
4764
|
*/
|
|
4664
4765
|
this.SubnetId = null;
|
|
4665
4766
|
|
|
4666
4767
|
/**
|
|
4667
|
-
*
|
|
4768
|
+
* <p>vpc access point information</p>
|
|
4668
4769
|
* @type {string || null}
|
|
4669
4770
|
*/
|
|
4670
4771
|
this.VpcEndpoint = null;
|
|
4671
4772
|
|
|
4672
4773
|
/**
|
|
4673
|
-
*
|
|
4774
|
+
* <p>vpc access point status OFF/ON/CREATING/DELETING</p>
|
|
4674
4775
|
* @type {string || null}
|
|
4675
4776
|
*/
|
|
4676
4777
|
this.VpcDataStreamEndpointStatus = null;
|
|
4677
4778
|
|
|
4678
4779
|
/**
|
|
4679
|
-
*
|
|
4780
|
+
* <p>TLS encrypted data stream access point</p>
|
|
4680
4781
|
* @type {string || null}
|
|
4681
4782
|
*/
|
|
4682
4783
|
this.VpcTlsEndpoint = null;
|
|
4683
4784
|
|
|
4684
4785
|
/**
|
|
4685
|
-
* Error
|
|
4786
|
+
* <p>Error information of VPC access point operation failure</p>
|
|
4686
4787
|
* @type {string || null}
|
|
4687
4788
|
*/
|
|
4688
4789
|
this.VpcErrorMessage = null;
|
|
4689
4790
|
|
|
4791
|
+
/**
|
|
4792
|
+
* <p>Access point ID</p>
|
|
4793
|
+
* @type {string || null}
|
|
4794
|
+
*/
|
|
4795
|
+
this.Id = null;
|
|
4796
|
+
|
|
4797
|
+
/**
|
|
4798
|
+
* <p>vpc Stream access point</p>
|
|
4799
|
+
* @type {string || null}
|
|
4800
|
+
*/
|
|
4801
|
+
this.VpcStreamEndpoint = null;
|
|
4802
|
+
|
|
4690
4803
|
}
|
|
4691
4804
|
|
|
4692
4805
|
/**
|
|
@@ -4702,6 +4815,8 @@ class VpcEndpointInfo extends AbstractModel {
|
|
|
4702
4815
|
this.VpcDataStreamEndpointStatus = 'VpcDataStreamEndpointStatus' in params ? params.VpcDataStreamEndpointStatus : null;
|
|
4703
4816
|
this.VpcTlsEndpoint = 'VpcTlsEndpoint' in params ? params.VpcTlsEndpoint : null;
|
|
4704
4817
|
this.VpcErrorMessage = 'VpcErrorMessage' in params ? params.VpcErrorMessage : null;
|
|
4818
|
+
this.Id = 'Id' in params ? params.Id : null;
|
|
4819
|
+
this.VpcStreamEndpoint = 'VpcStreamEndpoint' in params ? params.VpcStreamEndpoint : null;
|
|
4705
4820
|
|
|
4706
4821
|
}
|
|
4707
4822
|
}
|
|
@@ -4867,6 +4982,93 @@ class DeleteRabbitMQUserResponse extends AbstractModel {
|
|
|
4867
4982
|
}
|
|
4868
4983
|
}
|
|
4869
4984
|
|
|
4985
|
+
/**
|
|
4986
|
+
* CreateRocketMQMigrationTask request structure.
|
|
4987
|
+
* @class
|
|
4988
|
+
*/
|
|
4989
|
+
class CreateRocketMQMigrationTaskRequest extends AbstractModel {
|
|
4990
|
+
constructor(){
|
|
4991
|
+
super();
|
|
4992
|
+
|
|
4993
|
+
/**
|
|
4994
|
+
* <p>Cluster ID.</p>
|
|
4995
|
+
* @type {string || null}
|
|
4996
|
+
*/
|
|
4997
|
+
this.ClusterId = null;
|
|
4998
|
+
|
|
4999
|
+
/**
|
|
5000
|
+
* <p>Task type:<br>0, Cluster migration<br>1, Import To specified namespace</p>
|
|
5001
|
+
* @type {number || null}
|
|
5002
|
+
*/
|
|
5003
|
+
this.Type = null;
|
|
5004
|
+
|
|
5005
|
+
/**
|
|
5006
|
+
* <p>List of Topics to Import</p>
|
|
5007
|
+
* @type {Array.<RocketMQTopicConfig> || null}
|
|
5008
|
+
*/
|
|
5009
|
+
this.Topics = null;
|
|
5010
|
+
|
|
5011
|
+
/**
|
|
5012
|
+
* <p>List of consumer groups to be imported</p>
|
|
5013
|
+
* @type {Array.<RocketMQGroupConfig> || null}
|
|
5014
|
+
*/
|
|
5015
|
+
this.Groups = null;
|
|
5016
|
+
|
|
5017
|
+
/**
|
|
5018
|
+
* <p>List of roles to be imported</p>
|
|
5019
|
+
* @type {Array.<RocketMQRoleConfig> || null}
|
|
5020
|
+
*/
|
|
5021
|
+
this.Roles = null;
|
|
5022
|
+
|
|
5023
|
+
/**
|
|
5024
|
+
* <p>Specify the imported namespace</p>
|
|
5025
|
+
* @type {string || null}
|
|
5026
|
+
*/
|
|
5027
|
+
this.Namespace = null;
|
|
5028
|
+
|
|
5029
|
+
}
|
|
5030
|
+
|
|
5031
|
+
/**
|
|
5032
|
+
* @private
|
|
5033
|
+
*/
|
|
5034
|
+
deserialize(params) {
|
|
5035
|
+
if (!params) {
|
|
5036
|
+
return;
|
|
5037
|
+
}
|
|
5038
|
+
this.ClusterId = 'ClusterId' in params ? params.ClusterId : null;
|
|
5039
|
+
this.Type = 'Type' in params ? params.Type : null;
|
|
5040
|
+
|
|
5041
|
+
if (params.Topics) {
|
|
5042
|
+
this.Topics = new Array();
|
|
5043
|
+
for (let z in params.Topics) {
|
|
5044
|
+
let obj = new RocketMQTopicConfig();
|
|
5045
|
+
obj.deserialize(params.Topics[z]);
|
|
5046
|
+
this.Topics.push(obj);
|
|
5047
|
+
}
|
|
5048
|
+
}
|
|
5049
|
+
|
|
5050
|
+
if (params.Groups) {
|
|
5051
|
+
this.Groups = new Array();
|
|
5052
|
+
for (let z in params.Groups) {
|
|
5053
|
+
let obj = new RocketMQGroupConfig();
|
|
5054
|
+
obj.deserialize(params.Groups[z]);
|
|
5055
|
+
this.Groups.push(obj);
|
|
5056
|
+
}
|
|
5057
|
+
}
|
|
5058
|
+
|
|
5059
|
+
if (params.Roles) {
|
|
5060
|
+
this.Roles = new Array();
|
|
5061
|
+
for (let z in params.Roles) {
|
|
5062
|
+
let obj = new RocketMQRoleConfig();
|
|
5063
|
+
obj.deserialize(params.Roles[z]);
|
|
5064
|
+
this.Roles.push(obj);
|
|
5065
|
+
}
|
|
5066
|
+
}
|
|
5067
|
+
this.Namespace = 'Namespace' in params ? params.Namespace : null;
|
|
5068
|
+
|
|
5069
|
+
}
|
|
5070
|
+
}
|
|
5071
|
+
|
|
4870
5072
|
/**
|
|
4871
5073
|
* SetRocketMQPublicAccessPoint response structure.
|
|
4872
5074
|
* @class
|
|
@@ -5423,6 +5625,66 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
5423
5625
|
}
|
|
5424
5626
|
}
|
|
5425
5627
|
|
|
5628
|
+
/**
|
|
5629
|
+
* RocketMQ Topic Configuration Information
|
|
5630
|
+
* @class
|
|
5631
|
+
*/
|
|
5632
|
+
class RocketMQTopicConfig extends AbstractModel {
|
|
5633
|
+
constructor(){
|
|
5634
|
+
super();
|
|
5635
|
+
|
|
5636
|
+
/**
|
|
5637
|
+
* Namespace
|
|
5638
|
+
* @type {string || null}
|
|
5639
|
+
*/
|
|
5640
|
+
this.Namespace = null;
|
|
5641
|
+
|
|
5642
|
+
/**
|
|
5643
|
+
* Topic name
|
|
5644
|
+
* @type {string || null}
|
|
5645
|
+
*/
|
|
5646
|
+
this.TopicName = null;
|
|
5647
|
+
|
|
5648
|
+
/**
|
|
5649
|
+
* Topic type:
|
|
5650
|
+
Normal, ordinary
|
|
5651
|
+
PartitionedOrder, partition order
|
|
5652
|
+
Transactional message
|
|
5653
|
+
DelayScheduled, delay/scheduled message
|
|
5654
|
+
* @type {string || null}
|
|
5655
|
+
*/
|
|
5656
|
+
this.Type = null;
|
|
5657
|
+
|
|
5658
|
+
/**
|
|
5659
|
+
* Number of partitions
|
|
5660
|
+
* @type {number || null}
|
|
5661
|
+
*/
|
|
5662
|
+
this.Partitions = null;
|
|
5663
|
+
|
|
5664
|
+
/**
|
|
5665
|
+
* Remarks
|
|
5666
|
+
* @type {string || null}
|
|
5667
|
+
*/
|
|
5668
|
+
this.Remark = null;
|
|
5669
|
+
|
|
5670
|
+
}
|
|
5671
|
+
|
|
5672
|
+
/**
|
|
5673
|
+
* @private
|
|
5674
|
+
*/
|
|
5675
|
+
deserialize(params) {
|
|
5676
|
+
if (!params) {
|
|
5677
|
+
return;
|
|
5678
|
+
}
|
|
5679
|
+
this.Namespace = 'Namespace' in params ? params.Namespace : null;
|
|
5680
|
+
this.TopicName = 'TopicName' in params ? params.TopicName : null;
|
|
5681
|
+
this.Type = 'Type' in params ? params.Type : null;
|
|
5682
|
+
this.Partitions = 'Partitions' in params ? params.Partitions : null;
|
|
5683
|
+
this.Remark = 'Remark' in params ? params.Remark : null;
|
|
5684
|
+
|
|
5685
|
+
}
|
|
5686
|
+
}
|
|
5687
|
+
|
|
5426
5688
|
/**
|
|
5427
5689
|
* Price tag information. A complete price tag includes the billing category and the billing item.
|
|
5428
5690
|
* @class
|
|
@@ -5996,120 +6258,126 @@ class RabbitMQClusterAccessInfo extends AbstractModel {
|
|
|
5996
6258
|
super();
|
|
5997
6259
|
|
|
5998
6260
|
/**
|
|
5999
|
-
*
|
|
6261
|
+
* <p>Cluster public network access address</p>
|
|
6262
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
6000
6263
|
* @type {string || null}
|
|
6001
6264
|
*/
|
|
6002
6265
|
this.PublicAccessEndpoint = null;
|
|
6003
6266
|
|
|
6004
6267
|
/**
|
|
6005
|
-
*
|
|
6268
|
+
* <p>Public network access URL of the cluster Web console</p>
|
|
6006
6269
|
* @type {string || null}
|
|
6007
6270
|
*/
|
|
6008
6271
|
this.WebConsoleEndpoint = null;
|
|
6009
6272
|
|
|
6010
6273
|
/**
|
|
6011
|
-
*
|
|
6274
|
+
* <p>Cluster Web console login username</p>
|
|
6012
6275
|
* @type {string || null}
|
|
6013
6276
|
*/
|
|
6014
6277
|
this.WebConsoleUsername = null;
|
|
6015
6278
|
|
|
6016
6279
|
/**
|
|
6017
|
-
*
|
|
6280
|
+
* <p>Cluster Web console login password</p>
|
|
6018
6281
|
* @type {string || null}
|
|
6019
6282
|
*/
|
|
6020
6283
|
this.WebConsolePassword = null;
|
|
6021
6284
|
|
|
6022
6285
|
/**
|
|
6023
|
-
*
|
|
6286
|
+
* <p>Abandoned</p>
|
|
6024
6287
|
* @type {boolean || null}
|
|
6025
6288
|
*/
|
|
6026
6289
|
this.PublicAccessEndpointStatus = null;
|
|
6027
6290
|
|
|
6028
6291
|
/**
|
|
6029
|
-
*
|
|
6292
|
+
* <p>Deprecated</p>
|
|
6030
6293
|
* @type {boolean || null}
|
|
6031
6294
|
*/
|
|
6032
6295
|
this.PublicControlConsoleSwitchStatus = null;
|
|
6033
6296
|
|
|
6034
6297
|
/**
|
|
6035
|
-
*
|
|
6298
|
+
* <p>Abandoned</p>
|
|
6036
6299
|
* @type {boolean || null}
|
|
6037
6300
|
*/
|
|
6038
6301
|
this.VpcControlConsoleSwitchStatus = null;
|
|
6039
6302
|
|
|
6040
6303
|
/**
|
|
6041
|
-
*
|
|
6304
|
+
* <p>VPC access URL of the Web console</p>
|
|
6042
6305
|
* @type {string || null}
|
|
6043
6306
|
*/
|
|
6044
6307
|
this.VpcWebConsoleEndpoint = null;
|
|
6045
6308
|
|
|
6046
6309
|
/**
|
|
6047
|
-
* Status of the public network access
|
|
6310
|
+
* <p>Status of the public network access switch in the Web console</p><p>Enumeration value:</p><ul><li>OFF: Closed</li><li>ON: ON</li><li>CREATING: CREATING</li><li>DELETING: DELETING</li><li>CREATE_FAILURE: Creation failed</li><li>DELETE_FAILURE: Deletion failed</li></ul>
|
|
6048
6311
|
* @type {string || null}
|
|
6049
6312
|
*/
|
|
6050
6313
|
this.PublicWebConsoleSwitchStatus = null;
|
|
6051
6314
|
|
|
6052
6315
|
/**
|
|
6053
|
-
*
|
|
6054
|
-
OFF/ON/CREATING/DELETING
|
|
6316
|
+
* <p>Web console VPC access switch status</p><p>Enumeration values:</p><ul><li>OFF: Closed</li><li>ON: Enabled</li><li>CREATING: Creating</li><li>DELETING: Deleting</li><li>CREATE_FAILURE: Creation failed</li><li>DELETE_FAILURE: Deletion failed</li></ul>
|
|
6055
6317
|
* @type {string || null}
|
|
6056
6318
|
*/
|
|
6057
6319
|
this.VpcWebConsoleSwitchStatus = null;
|
|
6058
6320
|
|
|
6059
6321
|
/**
|
|
6060
|
-
*
|
|
6322
|
+
* <p>Public network access point switch state</p><p>Enumeration value:</p><ul><li>OFF: Closed</li><li>ON: Enabled</li><li>CREATING: Creating</li><li>DELETING: Deleting</li><li>CREATE_FAILURE: Creation failure</li><li>DELETE_FAILURE: Deletion failure</li></ul>
|
|
6061
6323
|
* @type {string || null}
|
|
6062
6324
|
*/
|
|
6063
6325
|
this.PublicDataStreamStatus = null;
|
|
6064
6326
|
|
|
6065
6327
|
/**
|
|
6066
|
-
* Prometheus
|
|
6328
|
+
* <p>Prometheus info</p>
|
|
6067
6329
|
* @type {PrometheusEndpointInfo || null}
|
|
6068
6330
|
*/
|
|
6069
6331
|
this.PrometheusEndpointInfo = null;
|
|
6070
6332
|
|
|
6071
6333
|
/**
|
|
6072
|
-
*
|
|
6334
|
+
* <p>public domain name access point</p>
|
|
6073
6335
|
* @type {string || null}
|
|
6074
6336
|
*/
|
|
6075
6337
|
this.WebConsoleDomainEndpoint = null;
|
|
6076
6338
|
|
|
6077
6339
|
/**
|
|
6078
|
-
* VPC information used by the control plane
|
|
6340
|
+
* <p>VPC information used by the control plane</p>
|
|
6079
6341
|
* @type {VpcEndpointInfo || null}
|
|
6080
6342
|
*/
|
|
6081
6343
|
this.ControlPlaneEndpointInfo = null;
|
|
6082
6344
|
|
|
6083
6345
|
/**
|
|
6084
|
-
*
|
|
6346
|
+
* <p>TLS encrypted data stream public network access point</p>
|
|
6085
6347
|
* @type {string || null}
|
|
6086
6348
|
*/
|
|
6087
6349
|
this.PublicTlsAccessEndpoint = null;
|
|
6088
6350
|
|
|
6089
6351
|
/**
|
|
6090
|
-
*
|
|
6352
|
+
* <p>Whether to reuse the public IP address</p>
|
|
6091
6353
|
* @type {boolean || null}
|
|
6092
6354
|
*/
|
|
6093
6355
|
this.PublicIpReused = null;
|
|
6094
6356
|
|
|
6095
6357
|
/**
|
|
6096
|
-
* Error
|
|
6358
|
+
* <p>Error information of public network access operations for the Web console</p>
|
|
6097
6359
|
* @type {string || null}
|
|
6098
6360
|
*/
|
|
6099
6361
|
this.PublicWebConsoleErrorMessage = null;
|
|
6100
6362
|
|
|
6101
6363
|
/**
|
|
6102
|
-
* Error
|
|
6364
|
+
* <p>Error information of VPC access operations in the Web console</p>
|
|
6103
6365
|
* @type {string || null}
|
|
6104
6366
|
*/
|
|
6105
6367
|
this.VpcWebConsoleErrorMessage = null;
|
|
6106
6368
|
|
|
6107
6369
|
/**
|
|
6108
|
-
* Error
|
|
6370
|
+
* <p>Error information of public network access point operations</p>
|
|
6109
6371
|
* @type {string || null}
|
|
6110
6372
|
*/
|
|
6111
6373
|
this.PublicDataStreamErrorMessage = null;
|
|
6112
6374
|
|
|
6375
|
+
/**
|
|
6376
|
+
* <p>Public network Stream access point</p>
|
|
6377
|
+
* @type {string || null}
|
|
6378
|
+
*/
|
|
6379
|
+
this.PublicStreamAccessEndpoint = null;
|
|
6380
|
+
|
|
6113
6381
|
}
|
|
6114
6382
|
|
|
6115
6383
|
/**
|
|
@@ -6148,6 +6416,7 @@ OFF/ON/CREATING/DELETING
|
|
|
6148
6416
|
this.PublicWebConsoleErrorMessage = 'PublicWebConsoleErrorMessage' in params ? params.PublicWebConsoleErrorMessage : null;
|
|
6149
6417
|
this.VpcWebConsoleErrorMessage = 'VpcWebConsoleErrorMessage' in params ? params.VpcWebConsoleErrorMessage : null;
|
|
6150
6418
|
this.PublicDataStreamErrorMessage = 'PublicDataStreamErrorMessage' in params ? params.PublicDataStreamErrorMessage : null;
|
|
6419
|
+
this.PublicStreamAccessEndpoint = 'PublicStreamAccessEndpoint' in params ? params.PublicStreamAccessEndpoint : null;
|
|
6151
6420
|
|
|
6152
6421
|
}
|
|
6153
6422
|
}
|
|
@@ -7157,19 +7426,19 @@ class CreateRocketMQRoleResponse extends AbstractModel {
|
|
|
7157
7426
|
super();
|
|
7158
7427
|
|
|
7159
7428
|
/**
|
|
7160
|
-
* Role name
|
|
7429
|
+
* <p>Role name</p>
|
|
7161
7430
|
* @type {string || null}
|
|
7162
7431
|
*/
|
|
7163
7432
|
this.RoleName = null;
|
|
7164
7433
|
|
|
7165
7434
|
/**
|
|
7166
|
-
* Role token
|
|
7435
|
+
* <p>Role token</p>
|
|
7167
7436
|
* @type {string || null}
|
|
7168
7437
|
*/
|
|
7169
7438
|
this.Token = null;
|
|
7170
7439
|
|
|
7171
7440
|
/**
|
|
7172
|
-
*
|
|
7441
|
+
* <p>Remarks</p>
|
|
7173
7442
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7174
7443
|
* @type {string || null}
|
|
7175
7444
|
*/
|
|
@@ -7851,25 +8120,25 @@ class CreateProClusterResponse extends AbstractModel {
|
|
|
7851
8120
|
super();
|
|
7852
8121
|
|
|
7853
8122
|
/**
|
|
7854
|
-
*
|
|
8123
|
+
* <p>Sub-order number</p>
|
|
7855
8124
|
* @type {string || null}
|
|
7856
8125
|
*/
|
|
7857
8126
|
this.DealName = null;
|
|
7858
8127
|
|
|
7859
8128
|
/**
|
|
7860
|
-
* Order ID
|
|
8129
|
+
* <p>Order ID</p>
|
|
7861
8130
|
* @type {string || null}
|
|
7862
8131
|
*/
|
|
7863
8132
|
this.BigDealId = null;
|
|
7864
8133
|
|
|
7865
8134
|
/**
|
|
7866
|
-
* Cluster
|
|
8135
|
+
* <p>Cluster Id</p>
|
|
7867
8136
|
* @type {string || null}
|
|
7868
8137
|
*/
|
|
7869
8138
|
this.ClusterId = null;
|
|
7870
8139
|
|
|
7871
8140
|
/**
|
|
7872
|
-
* Cluster name
|
|
8141
|
+
* <p>Cluster name.</p>
|
|
7873
8142
|
* @type {string || null}
|
|
7874
8143
|
*/
|
|
7875
8144
|
this.ClusterName = null;
|
|
@@ -7962,45 +8231,26 @@ class ModifyRocketMQInstanceRequest extends AbstractModel {
|
|
|
7962
8231
|
}
|
|
7963
8232
|
|
|
7964
8233
|
/**
|
|
7965
|
-
*
|
|
8234
|
+
* Type of the tag key/value
|
|
7966
8235
|
* @class
|
|
7967
8236
|
*/
|
|
7968
|
-
class
|
|
8237
|
+
class Tag extends AbstractModel {
|
|
7969
8238
|
constructor(){
|
|
7970
8239
|
super();
|
|
7971
8240
|
|
|
7972
8241
|
/**
|
|
7973
|
-
*
|
|
8242
|
+
* Tag key value
|
|
8243
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7974
8244
|
* @type {string || null}
|
|
7975
8245
|
*/
|
|
7976
|
-
this.
|
|
8246
|
+
this.TagKey = null;
|
|
7977
8247
|
|
|
7978
8248
|
/**
|
|
7979
|
-
*
|
|
8249
|
+
* Tag's value
|
|
8250
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7980
8251
|
* @type {string || null}
|
|
7981
8252
|
*/
|
|
7982
|
-
this.
|
|
7983
|
-
|
|
7984
|
-
/**
|
|
7985
|
-
* Offset, which defaults to 0 if left empty.
|
|
7986
|
-
* @type {number || null}
|
|
7987
|
-
*/
|
|
7988
|
-
this.Offset = null;
|
|
7989
|
-
|
|
7990
|
-
/**
|
|
7991
|
-
* The number of results to be returned, which defaults to 10 if left empty. The maximum value is 20.
|
|
7992
|
-
* @type {number || null}
|
|
7993
|
-
*/
|
|
7994
|
-
this.Limit = null;
|
|
7995
|
-
|
|
7996
|
-
/**
|
|
7997
|
-
* * EnvironmentId
|
|
7998
|
-
Filter by namespace for exact query.
|
|
7999
|
-
Type: String
|
|
8000
|
-
Required: No
|
|
8001
|
-
* @type {Array.<Filter> || null}
|
|
8002
|
-
*/
|
|
8003
|
-
this.Filters = null;
|
|
8253
|
+
this.TagValue = null;
|
|
8004
8254
|
|
|
8005
8255
|
}
|
|
8006
8256
|
|
|
@@ -8011,19 +8261,8 @@ Required: No
|
|
|
8011
8261
|
if (!params) {
|
|
8012
8262
|
return;
|
|
8013
8263
|
}
|
|
8014
|
-
this.
|
|
8015
|
-
this.
|
|
8016
|
-
this.Offset = 'Offset' in params ? params.Offset : null;
|
|
8017
|
-
this.Limit = 'Limit' in params ? params.Limit : null;
|
|
8018
|
-
|
|
8019
|
-
if (params.Filters) {
|
|
8020
|
-
this.Filters = new Array();
|
|
8021
|
-
for (let z in params.Filters) {
|
|
8022
|
-
let obj = new Filter();
|
|
8023
|
-
obj.deserialize(params.Filters[z]);
|
|
8024
|
-
this.Filters.push(obj);
|
|
8025
|
-
}
|
|
8026
|
-
}
|
|
8264
|
+
this.TagKey = 'TagKey' in params ? params.TagKey : null;
|
|
8265
|
+
this.TagValue = 'TagValue' in params ? params.TagValue : null;
|
|
8027
8266
|
|
|
8028
8267
|
}
|
|
8029
8268
|
}
|
|
@@ -8037,65 +8276,65 @@ class CreateProClusterRequest extends AbstractModel {
|
|
|
8037
8276
|
super();
|
|
8038
8277
|
|
|
8039
8278
|
/**
|
|
8040
|
-
*
|
|
8041
|
-
|
|
8042
|
-
Single-AZ deployment selects an availability zone. example: [200002].
|
|
8279
|
+
* <p>Multi-AZ deployment selects three AZs, example [200002,200003,200004]<br>Single-AZ deployment selects one availability zone, example [200002]</p><p>When PULSAR.P2.MINI1 is selected, it only supports two AZs. Other models support three AZs.</p>
|
|
8043
8280
|
* @type {Array.<number> || null}
|
|
8044
8281
|
*/
|
|
8045
8282
|
this.ZoneIds = null;
|
|
8046
8283
|
|
|
8047
8284
|
/**
|
|
8048
|
-
* Cluster specification code.
|
|
8049
|
-
Refers to professional cluster specifications (https://www.tencentcloud.com/document/product/1179/83705?from_cn_redirect=1).
|
|
8285
|
+
* <p>Cluster specification code<br>See <a href="https://www.tencentcloud.com/document/product/1179/83705?from_cn_redirect=1">professional cluster specifications</a></p>
|
|
8050
8286
|
* @type {string || null}
|
|
8051
8287
|
*/
|
|
8052
8288
|
this.ProductName = null;
|
|
8053
8289
|
|
|
8054
8290
|
/**
|
|
8055
|
-
*
|
|
8056
|
-
|
|
8057
|
-
false. disables automatic monthly renewal.
|
|
8291
|
+
* <p>1: true, enable automatic monthly renewal</p><p>0: false, disable automatic monthly renewal</p>
|
|
8058
8292
|
* @type {number || null}
|
|
8059
8293
|
*/
|
|
8060
8294
|
this.AutoRenewFlag = null;
|
|
8061
8295
|
|
|
8062
8296
|
/**
|
|
8063
|
-
* Purchase
|
|
8297
|
+
* <p>Purchase period, value ranges from 1 to 50</p>
|
|
8064
8298
|
* @type {number || null}
|
|
8065
8299
|
*/
|
|
8066
8300
|
this.TimeSpan = null;
|
|
8067
8301
|
|
|
8068
8302
|
/**
|
|
8069
|
-
*
|
|
8303
|
+
* <p>Cluster name cannot be empty. It supports numbers, letters, Chinese, and symbols "-_=:.", with length not exceeding 64 characters.</p>
|
|
8070
8304
|
* @type {string || null}
|
|
8071
8305
|
*/
|
|
8072
8306
|
this.ClusterName = null;
|
|
8073
8307
|
|
|
8074
8308
|
/**
|
|
8075
|
-
* Whether to automatically select voucher
|
|
8309
|
+
* <p>Whether to automatically select voucher 1 Yes 0 No Default is 0</p>
|
|
8076
8310
|
* @type {number || null}
|
|
8077
8311
|
*/
|
|
8078
8312
|
this.AutoVoucher = null;
|
|
8079
8313
|
|
|
8080
8314
|
/**
|
|
8081
|
-
*
|
|
8082
|
-
Refers to professional cluster specifications (https://www.tencentcloud.com/document/product/1179/83705?from_cn_redirect=1).
|
|
8315
|
+
* <p>Storage specification<br>See <a href="https://www.tencentcloud.com/document/product/1179/83705?from_cn_redirect=1">professional cluster specifications</a></p>
|
|
8083
8316
|
* @type {number || null}
|
|
8084
8317
|
*/
|
|
8085
8318
|
this.StorageSize = null;
|
|
8086
8319
|
|
|
8087
8320
|
/**
|
|
8088
|
-
*
|
|
8321
|
+
* <p>vpc network tag</p>
|
|
8089
8322
|
* @type {VpcInfo || null}
|
|
8090
8323
|
*/
|
|
8091
8324
|
this.Vpc = null;
|
|
8092
8325
|
|
|
8093
8326
|
/**
|
|
8094
|
-
* Tag list of the cluster (abandoned)
|
|
8327
|
+
* <p>Tag list of the cluster (abandoned)</p>
|
|
8095
8328
|
* @type {Array.<Tag> || null}
|
|
8096
8329
|
*/
|
|
8097
8330
|
this.Tags = null;
|
|
8098
8331
|
|
|
8332
|
+
/**
|
|
8333
|
+
* <p>Cluster version information</p>
|
|
8334
|
+
* @type {string || null}
|
|
8335
|
+
*/
|
|
8336
|
+
this.InstanceVersion = null;
|
|
8337
|
+
|
|
8099
8338
|
}
|
|
8100
8339
|
|
|
8101
8340
|
/**
|
|
@@ -8127,6 +8366,7 @@ Refers to professional cluster specifications (https://www.tencentcloud.com/docu
|
|
|
8127
8366
|
this.Tags.push(obj);
|
|
8128
8367
|
}
|
|
8129
8368
|
}
|
|
8369
|
+
this.InstanceVersion = 'InstanceVersion' in params ? params.InstanceVersion : null;
|
|
8130
8370
|
|
|
8131
8371
|
}
|
|
8132
8372
|
}
|
|
@@ -9244,7 +9484,7 @@ class ModifyRocketMQInstanceSpecResponse extends AbstractModel {
|
|
|
9244
9484
|
super();
|
|
9245
9485
|
|
|
9246
9486
|
/**
|
|
9247
|
-
* Order ID
|
|
9487
|
+
* <p>Order ID</p>
|
|
9248
9488
|
* @type {string || null}
|
|
9249
9489
|
*/
|
|
9250
9490
|
this.OrderId = null;
|
|
@@ -11435,41 +11675,59 @@ class Role extends AbstractModel {
|
|
|
11435
11675
|
super();
|
|
11436
11676
|
|
|
11437
11677
|
/**
|
|
11438
|
-
* Role name
|
|
11678
|
+
* <p>Role name.</p>
|
|
11439
11679
|
* @type {string || null}
|
|
11440
11680
|
*/
|
|
11441
11681
|
this.RoleName = null;
|
|
11442
11682
|
|
|
11443
11683
|
/**
|
|
11444
|
-
*
|
|
11684
|
+
* <p>Role token value.</p>
|
|
11445
11685
|
* @type {string || null}
|
|
11446
11686
|
*/
|
|
11447
11687
|
this.Token = null;
|
|
11448
11688
|
|
|
11449
11689
|
/**
|
|
11450
|
-
* Remarks
|
|
11690
|
+
* <p>Remarks.</p>
|
|
11451
11691
|
* @type {string || null}
|
|
11452
11692
|
*/
|
|
11453
11693
|
this.Remark = null;
|
|
11454
11694
|
|
|
11455
11695
|
/**
|
|
11456
|
-
* Creation time
|
|
11696
|
+
* <p>Creation time.</p>
|
|
11457
11697
|
* @type {string || null}
|
|
11458
11698
|
*/
|
|
11459
11699
|
this.CreateTime = null;
|
|
11460
11700
|
|
|
11461
11701
|
/**
|
|
11462
|
-
* Update time
|
|
11702
|
+
* <p>Update time.</p>
|
|
11463
11703
|
* @type {string || null}
|
|
11464
11704
|
*/
|
|
11465
11705
|
this.UpdateTime = null;
|
|
11466
11706
|
|
|
11467
11707
|
/**
|
|
11468
|
-
* Authorization type (Cluster: cluster; TopicAndGroup: topic
|
|
11708
|
+
* <p>Authorization type (Cluster: cluster; TopicAndGroup: topic/consumer group)</p>
|
|
11469
11709
|
* @type {string || null}
|
|
11470
11710
|
*/
|
|
11471
11711
|
this.PermType = null;
|
|
11472
11712
|
|
|
11713
|
+
/**
|
|
11714
|
+
* <p>Role type</p><p>Enumeration value:</p><ul><li>Temporary: Rotation key</li><li>Permanent: Permanent key</li></ul>
|
|
11715
|
+
* @type {string || null}
|
|
11716
|
+
*/
|
|
11717
|
+
this.TokenType = null;
|
|
11718
|
+
|
|
11719
|
+
/**
|
|
11720
|
+
* <p>SSM unique ID</p>
|
|
11721
|
+
* @type {string || null}
|
|
11722
|
+
*/
|
|
11723
|
+
this.SecretName = null;
|
|
11724
|
+
|
|
11725
|
+
/**
|
|
11726
|
+
* <p>Rotation cycle</p><p>Unit: day</p>
|
|
11727
|
+
* @type {number || null}
|
|
11728
|
+
*/
|
|
11729
|
+
this.RotateFreq = null;
|
|
11730
|
+
|
|
11473
11731
|
}
|
|
11474
11732
|
|
|
11475
11733
|
/**
|
|
@@ -11485,6 +11743,9 @@ class Role extends AbstractModel {
|
|
|
11485
11743
|
this.CreateTime = 'CreateTime' in params ? params.CreateTime : null;
|
|
11486
11744
|
this.UpdateTime = 'UpdateTime' in params ? params.UpdateTime : null;
|
|
11487
11745
|
this.PermType = 'PermType' in params ? params.PermType : null;
|
|
11746
|
+
this.TokenType = 'TokenType' in params ? params.TokenType : null;
|
|
11747
|
+
this.SecretName = 'SecretName' in params ? params.SecretName : null;
|
|
11748
|
+
this.RotateFreq = 'RotateFreq' in params ? params.RotateFreq : null;
|
|
11488
11749
|
|
|
11489
11750
|
}
|
|
11490
11751
|
}
|
|
@@ -14705,29 +14966,47 @@ class CreateRocketMQRoleRequest extends AbstractModel {
|
|
|
14705
14966
|
super();
|
|
14706
14967
|
|
|
14707
14968
|
/**
|
|
14708
|
-
* Role name. Does not support Chinese characters and special characters other than hyphens
|
|
14969
|
+
* <p>Role name. Does not support Chinese characters and special characters other than hyphens and underscores. Length must be greater than 0 and less than or equal to 32.</p>
|
|
14709
14970
|
* @type {string || null}
|
|
14710
14971
|
*/
|
|
14711
14972
|
this.RoleName = null;
|
|
14712
14973
|
|
|
14713
14974
|
/**
|
|
14714
|
-
* Required field, cluster
|
|
14975
|
+
* <p>Required field, cluster Id</p>
|
|
14715
14976
|
* @type {string || null}
|
|
14716
14977
|
*/
|
|
14717
14978
|
this.ClusterId = null;
|
|
14718
14979
|
|
|
14719
14980
|
/**
|
|
14720
|
-
*
|
|
14981
|
+
* <p>Remarks. The length must be greater than or equal to 0 and less than or equal to 128.</p>
|
|
14721
14982
|
* @type {string || null}
|
|
14722
14983
|
*/
|
|
14723
14984
|
this.Remark = null;
|
|
14724
14985
|
|
|
14725
14986
|
/**
|
|
14726
|
-
* Role authorization type (
|
|
14987
|
+
* <p>Role authorization type (Cluster: cluster; TopicAndGroup: topic/consumer group)</p>
|
|
14727
14988
|
* @type {string || null}
|
|
14728
14989
|
*/
|
|
14729
14990
|
this.PermType = null;
|
|
14730
14991
|
|
|
14992
|
+
/**
|
|
14993
|
+
* <p>AK and SK generation method: AUTO: automatically generated by the backend, MANUAL: manually input by the user</p>
|
|
14994
|
+
* @type {string || null}
|
|
14995
|
+
*/
|
|
14996
|
+
this.RoleGenerateMode = null;
|
|
14997
|
+
|
|
14998
|
+
/**
|
|
14999
|
+
* <p>Select MANUAL in mode and manually input the AK value</p>
|
|
15000
|
+
* @type {string || null}
|
|
15001
|
+
*/
|
|
15002
|
+
this.AccessKey = null;
|
|
15003
|
+
|
|
15004
|
+
/**
|
|
15005
|
+
* <p>In MANUAL mode, you must manually enter the SK value</p>
|
|
15006
|
+
* @type {string || null}
|
|
15007
|
+
*/
|
|
15008
|
+
this.SecretKey = null;
|
|
15009
|
+
|
|
14731
15010
|
}
|
|
14732
15011
|
|
|
14733
15012
|
/**
|
|
@@ -14741,6 +15020,9 @@ class CreateRocketMQRoleRequest extends AbstractModel {
|
|
|
14741
15020
|
this.ClusterId = 'ClusterId' in params ? params.ClusterId : null;
|
|
14742
15021
|
this.Remark = 'Remark' in params ? params.Remark : null;
|
|
14743
15022
|
this.PermType = 'PermType' in params ? params.PermType : null;
|
|
15023
|
+
this.RoleGenerateMode = 'RoleGenerateMode' in params ? params.RoleGenerateMode : null;
|
|
15024
|
+
this.AccessKey = 'AccessKey' in params ? params.AccessKey : null;
|
|
15025
|
+
this.SecretKey = 'SecretKey' in params ? params.SecretKey : null;
|
|
14744
15026
|
|
|
14745
15027
|
}
|
|
14746
15028
|
}
|
|
@@ -15367,6 +15649,34 @@ class DescribeRocketMQTopicRequest extends AbstractModel {
|
|
|
15367
15649
|
}
|
|
15368
15650
|
}
|
|
15369
15651
|
|
|
15652
|
+
/**
|
|
15653
|
+
* CreateRocketMQMigrationTask response structure.
|
|
15654
|
+
* @class
|
|
15655
|
+
*/
|
|
15656
|
+
class CreateRocketMQMigrationTaskResponse extends AbstractModel {
|
|
15657
|
+
constructor(){
|
|
15658
|
+
super();
|
|
15659
|
+
|
|
15660
|
+
/**
|
|
15661
|
+
* 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.
|
|
15662
|
+
* @type {string || null}
|
|
15663
|
+
*/
|
|
15664
|
+
this.RequestId = null;
|
|
15665
|
+
|
|
15666
|
+
}
|
|
15667
|
+
|
|
15668
|
+
/**
|
|
15669
|
+
* @private
|
|
15670
|
+
*/
|
|
15671
|
+
deserialize(params) {
|
|
15672
|
+
if (!params) {
|
|
15673
|
+
return;
|
|
15674
|
+
}
|
|
15675
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
15676
|
+
|
|
15677
|
+
}
|
|
15678
|
+
}
|
|
15679
|
+
|
|
15370
15680
|
/**
|
|
15371
15681
|
* ResetMsgSubOffsetByTimestamp request structure.
|
|
15372
15682
|
* @class
|
|
@@ -16105,48 +16415,53 @@ class CreateRabbitMQUserRequest extends AbstractModel {
|
|
|
16105
16415
|
super();
|
|
16106
16416
|
|
|
16107
16417
|
/**
|
|
16108
|
-
* Instance ID, such as amqp-xxxxxxxx.
|
|
16418
|
+
* <p>Instance ID, such as amqp-xxxxxxxx. Effective InstanceId can be obtained by logging in to the <a href="https://console.cloud.tencent.com/trabbitmq/cluster?rid=1">TDMQ RabbitMQ Console</a> for querying.</p>
|
|
16109
16419
|
* @type {string || null}
|
|
16110
16420
|
*/
|
|
16111
16421
|
this.InstanceId = null;
|
|
16112
16422
|
|
|
16113
16423
|
/**
|
|
16114
|
-
* Username,
|
|
16424
|
+
* <p>Username, used when logging in</p>
|
|
16115
16425
|
* @type {string || null}
|
|
16116
16426
|
*/
|
|
16117
16427
|
this.User = null;
|
|
16118
16428
|
|
|
16119
16429
|
/**
|
|
16120
|
-
* Password, used when logging in.
|
|
16430
|
+
* <p>Password, used when logging in. Requirements: Cannot be empty, 8-64 characters, must contain at least two of the following: lowercase letter, uppercase letter, digit, special character [()`~!@#$%^&*_=|{}[]:;',.?/].</p>
|
|
16121
16431
|
* @type {string || null}
|
|
16122
16432
|
*/
|
|
16123
16433
|
this.Password = null;
|
|
16124
16434
|
|
|
16125
16435
|
/**
|
|
16126
|
-
* Description
|
|
16436
|
+
* <p>Description.</p>
|
|
16127
16437
|
* @type {string || null}
|
|
16128
16438
|
*/
|
|
16129
16439
|
this.Description = null;
|
|
16130
16440
|
|
|
16131
16441
|
/**
|
|
16132
|
-
* User tag,
|
|
16133
|
-
Valid values: `management` (Common console user), monitoring` (Console admin user), other values: Non-console user.
|
|
16442
|
+
* <p>User tag, used to determine the access permission of the user to RabbitMQ Management<br>management: ordinary console user, monitoring: console user with management privileges, other value: non-console user</p>
|
|
16134
16443
|
* @type {Array.<string> || null}
|
|
16135
16444
|
*/
|
|
16136
16445
|
this.Tags = null;
|
|
16137
16446
|
|
|
16138
16447
|
/**
|
|
16139
|
-
*
|
|
16448
|
+
* <p>Maximum number of connections for this user. Leave it blank to set as unlimited.</p>
|
|
16140
16449
|
* @type {number || null}
|
|
16141
16450
|
*/
|
|
16142
16451
|
this.MaxConnections = null;
|
|
16143
16452
|
|
|
16144
16453
|
/**
|
|
16145
|
-
*
|
|
16454
|
+
* <p>Maximum number of channels for the user. Not specified means no limit.</p>
|
|
16146
16455
|
* @type {number || null}
|
|
16147
16456
|
*/
|
|
16148
16457
|
this.MaxChannels = null;
|
|
16149
16458
|
|
|
16459
|
+
/**
|
|
16460
|
+
* <p>Whether cam authentication is enabled</p>
|
|
16461
|
+
* @type {boolean || null}
|
|
16462
|
+
*/
|
|
16463
|
+
this.EnableCamAuth = null;
|
|
16464
|
+
|
|
16150
16465
|
}
|
|
16151
16466
|
|
|
16152
16467
|
/**
|
|
@@ -16163,6 +16478,7 @@ Valid values: `management` (Common console user), monitoring` (Console admin use
|
|
|
16163
16478
|
this.Tags = 'Tags' in params ? params.Tags : null;
|
|
16164
16479
|
this.MaxConnections = 'MaxConnections' in params ? params.MaxConnections : null;
|
|
16165
16480
|
this.MaxChannels = 'MaxChannels' in params ? params.MaxChannels : null;
|
|
16481
|
+
this.EnableCamAuth = 'EnableCamAuth' in params ? params.EnableCamAuth : null;
|
|
16166
16482
|
|
|
16167
16483
|
}
|
|
16168
16484
|
}
|
|
@@ -16906,7 +17222,7 @@ class CreateRabbitMQUserResponse extends AbstractModel {
|
|
|
16906
17222
|
super();
|
|
16907
17223
|
|
|
16908
17224
|
/**
|
|
16909
|
-
* Username,
|
|
17225
|
+
* <p>Username, used when logging in</p>
|
|
16910
17226
|
* @type {string || null}
|
|
16911
17227
|
*/
|
|
16912
17228
|
this.User = null;
|
|
@@ -17030,6 +17346,12 @@ class RabbitMQVirtualHostInfo extends AbstractModel {
|
|
|
17030
17346
|
*/
|
|
17031
17347
|
this.ModifyTs = null;
|
|
17032
17348
|
|
|
17349
|
+
/**
|
|
17350
|
+
* Basic quota information.
|
|
17351
|
+
* @type {RabbitMQVHostBaseQuota || null}
|
|
17352
|
+
*/
|
|
17353
|
+
this.Quota = null;
|
|
17354
|
+
|
|
17033
17355
|
}
|
|
17034
17356
|
|
|
17035
17357
|
/**
|
|
@@ -17060,6 +17382,12 @@ class RabbitMQVirtualHostInfo extends AbstractModel {
|
|
|
17060
17382
|
this.CreateTs = 'CreateTs' in params ? params.CreateTs : null;
|
|
17061
17383
|
this.ModifyTs = 'ModifyTs' in params ? params.ModifyTs : null;
|
|
17062
17384
|
|
|
17385
|
+
if (params.Quota) {
|
|
17386
|
+
let obj = new RabbitMQVHostBaseQuota();
|
|
17387
|
+
obj.deserialize(params.Quota)
|
|
17388
|
+
this.Quota = obj;
|
|
17389
|
+
}
|
|
17390
|
+
|
|
17063
17391
|
}
|
|
17064
17392
|
}
|
|
17065
17393
|
|
|
@@ -17405,6 +17733,84 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
17405
17733
|
}
|
|
17406
17734
|
}
|
|
17407
17735
|
|
|
17736
|
+
/**
|
|
17737
|
+
* RocketMQ role configuration information.
|
|
17738
|
+
* @class
|
|
17739
|
+
*/
|
|
17740
|
+
class RocketMQRoleConfig extends AbstractModel {
|
|
17741
|
+
constructor(){
|
|
17742
|
+
super();
|
|
17743
|
+
|
|
17744
|
+
/**
|
|
17745
|
+
* Role name, corresponding to the secret key.
|
|
17746
|
+
* @type {string || null}
|
|
17747
|
+
*/
|
|
17748
|
+
this.RoleName = null;
|
|
17749
|
+
|
|
17750
|
+
/**
|
|
17751
|
+
* accessKey
|
|
17752
|
+
* @type {string || null}
|
|
17753
|
+
*/
|
|
17754
|
+
this.RoleToken = null;
|
|
17755
|
+
|
|
17756
|
+
/**
|
|
17757
|
+
* Namespace
|
|
17758
|
+
* @type {string || null}
|
|
17759
|
+
*/
|
|
17760
|
+
this.EnvironmentId = null;
|
|
17761
|
+
|
|
17762
|
+
/**
|
|
17763
|
+
* Role permission
|
|
17764
|
+
* @type {Array.<string> || null}
|
|
17765
|
+
*/
|
|
17766
|
+
this.Permissions = null;
|
|
17767
|
+
|
|
17768
|
+
/**
|
|
17769
|
+
* Remarks
|
|
17770
|
+
* @type {string || null}
|
|
17771
|
+
*/
|
|
17772
|
+
this.Remark = null;
|
|
17773
|
+
|
|
17774
|
+
/**
|
|
17775
|
+
* Permission type. Permissions are granted by cluster by default. Cluster: cluster level; TopicAndGroup: topic/consumer group level.
|
|
17776
|
+
* @type {string || null}
|
|
17777
|
+
*/
|
|
17778
|
+
this.PermType = null;
|
|
17779
|
+
|
|
17780
|
+
/**
|
|
17781
|
+
* Permission configuration in the topic and group dimensions.
|
|
17782
|
+
* @type {Array.<DetailedRolePerm> || null}
|
|
17783
|
+
*/
|
|
17784
|
+
this.DetailedRolePerms = null;
|
|
17785
|
+
|
|
17786
|
+
}
|
|
17787
|
+
|
|
17788
|
+
/**
|
|
17789
|
+
* @private
|
|
17790
|
+
*/
|
|
17791
|
+
deserialize(params) {
|
|
17792
|
+
if (!params) {
|
|
17793
|
+
return;
|
|
17794
|
+
}
|
|
17795
|
+
this.RoleName = 'RoleName' in params ? params.RoleName : null;
|
|
17796
|
+
this.RoleToken = 'RoleToken' in params ? params.RoleToken : null;
|
|
17797
|
+
this.EnvironmentId = 'EnvironmentId' in params ? params.EnvironmentId : null;
|
|
17798
|
+
this.Permissions = 'Permissions' in params ? params.Permissions : null;
|
|
17799
|
+
this.Remark = 'Remark' in params ? params.Remark : null;
|
|
17800
|
+
this.PermType = 'PermType' in params ? params.PermType : null;
|
|
17801
|
+
|
|
17802
|
+
if (params.DetailedRolePerms) {
|
|
17803
|
+
this.DetailedRolePerms = new Array();
|
|
17804
|
+
for (let z in params.DetailedRolePerms) {
|
|
17805
|
+
let obj = new DetailedRolePerm();
|
|
17806
|
+
obj.deserialize(params.DetailedRolePerms[z]);
|
|
17807
|
+
this.DetailedRolePerms.push(obj);
|
|
17808
|
+
}
|
|
17809
|
+
}
|
|
17810
|
+
|
|
17811
|
+
}
|
|
17812
|
+
}
|
|
17813
|
+
|
|
17408
17814
|
/**
|
|
17409
17815
|
* RetryRocketMQDlqMessage request structure.
|
|
17410
17816
|
* @class
|
|
@@ -19355,6 +19761,48 @@ class DescribeBindVpcsRequest extends AbstractModel {
|
|
|
19355
19761
|
}
|
|
19356
19762
|
}
|
|
19357
19763
|
|
|
19764
|
+
/**
|
|
19765
|
+
* TDMQ RabbitMQ vhost basic quota information.
|
|
19766
|
+
* @class
|
|
19767
|
+
*/
|
|
19768
|
+
class RabbitMQVHostBaseQuota extends AbstractModel {
|
|
19769
|
+
constructor(){
|
|
19770
|
+
super();
|
|
19771
|
+
|
|
19772
|
+
/**
|
|
19773
|
+
* Maximum number of connections allowed in each vhost.
|
|
19774
|
+
* @type {number || null}
|
|
19775
|
+
*/
|
|
19776
|
+
this.MaxConnectionPerVhost = null;
|
|
19777
|
+
|
|
19778
|
+
/**
|
|
19779
|
+
* Maximum number of exchanges allowed in each vhost.
|
|
19780
|
+
* @type {number || null}
|
|
19781
|
+
*/
|
|
19782
|
+
this.MaxExchangePerVhost = null;
|
|
19783
|
+
|
|
19784
|
+
/**
|
|
19785
|
+
* Maximum number of queues allowed in a single vhost.
|
|
19786
|
+
* @type {number || null}
|
|
19787
|
+
*/
|
|
19788
|
+
this.MaxQueuePerVhost = null;
|
|
19789
|
+
|
|
19790
|
+
}
|
|
19791
|
+
|
|
19792
|
+
/**
|
|
19793
|
+
* @private
|
|
19794
|
+
*/
|
|
19795
|
+
deserialize(params) {
|
|
19796
|
+
if (!params) {
|
|
19797
|
+
return;
|
|
19798
|
+
}
|
|
19799
|
+
this.MaxConnectionPerVhost = 'MaxConnectionPerVhost' in params ? params.MaxConnectionPerVhost : null;
|
|
19800
|
+
this.MaxExchangePerVhost = 'MaxExchangePerVhost' in params ? params.MaxExchangePerVhost : null;
|
|
19801
|
+
this.MaxQueuePerVhost = 'MaxQueuePerVhost' in params ? params.MaxQueuePerVhost : null;
|
|
19802
|
+
|
|
19803
|
+
}
|
|
19804
|
+
}
|
|
19805
|
+
|
|
19358
19806
|
/**
|
|
19359
19807
|
* Topic's key information
|
|
19360
19808
|
* @class
|
|
@@ -20058,79 +20506,92 @@ class RabbitMQUser extends AbstractModel {
|
|
|
20058
20506
|
super();
|
|
20059
20507
|
|
|
20060
20508
|
/**
|
|
20061
|
-
* Instance ID, such as amqp-xxxxxxxx.
|
|
20509
|
+
* <p>Instance ID, such as amqp-xxxxxxxx. Effective InstanceId can be obtained by logging in to the <a href="https://console.cloud.tencent.com/trabbitmq/cluster?rid=1">TDMQ RabbitMQ Console</a> for querying.</p>
|
|
20062
20510
|
* @type {string || null}
|
|
20063
20511
|
*/
|
|
20064
20512
|
this.InstanceId = null;
|
|
20065
20513
|
|
|
20066
20514
|
/**
|
|
20067
|
-
* Username,
|
|
20515
|
+
* <p>Username, used when logging in</p>
|
|
20068
20516
|
* @type {string || null}
|
|
20069
20517
|
*/
|
|
20070
20518
|
this.User = null;
|
|
20071
20519
|
|
|
20072
20520
|
/**
|
|
20073
|
-
* Password,
|
|
20521
|
+
* <p>Password, used when logging in</p>
|
|
20074
20522
|
* @type {string || null}
|
|
20075
20523
|
*/
|
|
20076
20524
|
this.Password = null;
|
|
20077
20525
|
|
|
20078
20526
|
/**
|
|
20079
|
-
*
|
|
20527
|
+
* <p>user description</p>
|
|
20080
20528
|
* @type {string || null}
|
|
20081
20529
|
*/
|
|
20082
20530
|
this.Description = null;
|
|
20083
20531
|
|
|
20084
20532
|
/**
|
|
20085
|
-
* User
|
|
20533
|
+
* <p>User tag, used to determine the access permission of the user to RabbitMQ Management</p>
|
|
20086
20534
|
* @type {Array.<string> || null}
|
|
20087
20535
|
*/
|
|
20088
20536
|
this.Tags = null;
|
|
20089
20537
|
|
|
20090
20538
|
/**
|
|
20091
|
-
* User creation time
|
|
20539
|
+
* <p>User creation time</p>
|
|
20092
20540
|
* @type {string || null}
|
|
20093
20541
|
*/
|
|
20094
20542
|
this.CreateTime = null;
|
|
20095
20543
|
|
|
20096
20544
|
/**
|
|
20097
|
-
*
|
|
20545
|
+
* <p>User last modification time</p>
|
|
20098
20546
|
* @type {string || null}
|
|
20099
20547
|
*/
|
|
20100
20548
|
this.ModifyTime = null;
|
|
20101
20549
|
|
|
20102
20550
|
/**
|
|
20103
|
-
*
|
|
20551
|
+
* <p>Type of user, System: system creation, User: user creation</p>
|
|
20104
20552
|
* @type {string || null}
|
|
20105
20553
|
*/
|
|
20106
20554
|
this.Type = null;
|
|
20107
20555
|
|
|
20108
20556
|
/**
|
|
20109
|
-
* Maximum
|
|
20557
|
+
* <p>Maximum available connections per user</p>
|
|
20110
20558
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
20111
20559
|
* @type {number || null}
|
|
20112
20560
|
*/
|
|
20113
20561
|
this.MaxConnections = null;
|
|
20114
20562
|
|
|
20115
20563
|
/**
|
|
20116
|
-
* Maximum
|
|
20564
|
+
* <p>Maximum available channels per user</p>
|
|
20117
20565
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
20118
20566
|
* @type {number || null}
|
|
20119
20567
|
*/
|
|
20120
20568
|
this.MaxChannels = null;
|
|
20121
20569
|
|
|
20122
20570
|
/**
|
|
20123
|
-
* Creation timestamp
|
|
20571
|
+
* <p>Creation time timestamp</p>
|
|
20124
20572
|
* @type {number || null}
|
|
20125
20573
|
*/
|
|
20126
20574
|
this.CreateTs = null;
|
|
20127
20575
|
|
|
20128
20576
|
/**
|
|
20129
|
-
* Modification timestamp
|
|
20577
|
+
* <p>Modification time timestamp</p>
|
|
20130
20578
|
* @type {number || null}
|
|
20131
20579
|
*/
|
|
20132
20580
|
this.ModifyTs = null;
|
|
20133
20581
|
|
|
20582
|
+
/**
|
|
20583
|
+
* <p>Whether cam authentication is enabled</p><p>Default value: false</p>
|
|
20584
|
+
* @type {boolean || null}
|
|
20585
|
+
*/
|
|
20586
|
+
this.CamAuthEnabled = null;
|
|
20587
|
+
|
|
20588
|
+
/**
|
|
20589
|
+
* <p>cam credential name</p>
|
|
20590
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
20591
|
+
* @type {string || null}
|
|
20592
|
+
*/
|
|
20593
|
+
this.CamCredentialName = null;
|
|
20594
|
+
|
|
20134
20595
|
}
|
|
20135
20596
|
|
|
20136
20597
|
/**
|
|
@@ -20152,6 +20613,8 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
20152
20613
|
this.MaxChannels = 'MaxChannels' in params ? params.MaxChannels : null;
|
|
20153
20614
|
this.CreateTs = 'CreateTs' in params ? params.CreateTs : null;
|
|
20154
20615
|
this.ModifyTs = 'ModifyTs' in params ? params.ModifyTs : null;
|
|
20616
|
+
this.CamAuthEnabled = 'CamAuthEnabled' in params ? params.CamAuthEnabled : null;
|
|
20617
|
+
this.CamCredentialName = 'CamCredentialName' in params ? params.CamCredentialName : null;
|
|
20155
20618
|
|
|
20156
20619
|
}
|
|
20157
20620
|
}
|
|
@@ -21827,7 +22290,7 @@ module.exports = {
|
|
|
21827
22290
|
RabbitMQClusterInfo: RabbitMQClusterInfo,
|
|
21828
22291
|
RabbitMQVirtualHostStatistics: RabbitMQVirtualHostStatistics,
|
|
21829
22292
|
DescribeRabbitMQQueuesResponse: DescribeRabbitMQQueuesResponse,
|
|
21830
|
-
|
|
22293
|
+
DescribeEnvironmentsRequest: DescribeEnvironmentsRequest,
|
|
21831
22294
|
DescribeRocketMQNamespacesRequest: DescribeRocketMQNamespacesRequest,
|
|
21832
22295
|
ModifyRocketMQClusterResponse: ModifyRocketMQClusterResponse,
|
|
21833
22296
|
DescribeRocketMQTopicStatsResponse: DescribeRocketMQTopicStatsResponse,
|
|
@@ -21880,11 +22343,13 @@ module.exports = {
|
|
|
21880
22343
|
DeleteRabbitMQPermissionResponse: DeleteRabbitMQPermissionResponse,
|
|
21881
22344
|
DeleteRabbitMQBindingResponse: DeleteRabbitMQBindingResponse,
|
|
21882
22345
|
DescribePulsarProInstancesRequest: DescribePulsarProInstancesRequest,
|
|
22346
|
+
RocketMQGroupConfig: RocketMQGroupConfig,
|
|
21883
22347
|
VpcEndpointInfo: VpcEndpointInfo,
|
|
21884
22348
|
ClearCmqQueueResponse: ClearCmqQueueResponse,
|
|
21885
22349
|
DescribeTopicMsgsRequest: DescribeTopicMsgsRequest,
|
|
21886
22350
|
DeleteCmqQueueRequest: DeleteCmqQueueRequest,
|
|
21887
22351
|
DeleteRabbitMQUserResponse: DeleteRabbitMQUserResponse,
|
|
22352
|
+
CreateRocketMQMigrationTaskRequest: CreateRocketMQMigrationTaskRequest,
|
|
21888
22353
|
SetRocketMQPublicAccessPointResponse: SetRocketMQPublicAccessPointResponse,
|
|
21889
22354
|
DescribeRocketMQTopicMsgsRequest: DescribeRocketMQTopicMsgsRequest,
|
|
21890
22355
|
ModifyEnvironmentRoleRequest: ModifyEnvironmentRoleRequest,
|
|
@@ -21894,6 +22359,7 @@ module.exports = {
|
|
|
21894
22359
|
DescribeMqMsgTraceRequest: DescribeMqMsgTraceRequest,
|
|
21895
22360
|
SendBatchMessagesRequest: SendBatchMessagesRequest,
|
|
21896
22361
|
DescribeRabbitMQNodeListResponse: DescribeRabbitMQNodeListResponse,
|
|
22362
|
+
RocketMQTopicConfig: RocketMQTopicConfig,
|
|
21897
22363
|
PriceTag: PriceTag,
|
|
21898
22364
|
ProducerInfo: ProducerInfo,
|
|
21899
22365
|
ProducerLog: ProducerLog,
|
|
@@ -21932,7 +22398,7 @@ module.exports = {
|
|
|
21932
22398
|
DescribeMsgResponse: DescribeMsgResponse,
|
|
21933
22399
|
CreateProClusterResponse: CreateProClusterResponse,
|
|
21934
22400
|
ModifyRocketMQInstanceRequest: ModifyRocketMQInstanceRequest,
|
|
21935
|
-
|
|
22401
|
+
Tag: Tag,
|
|
21936
22402
|
CreateProClusterRequest: CreateProClusterRequest,
|
|
21937
22403
|
DescribeRabbitMQVipInstancesResponse: DescribeRabbitMQVipInstancesResponse,
|
|
21938
22404
|
DeleteRolesRequest: DeleteRolesRequest,
|
|
@@ -22053,6 +22519,7 @@ module.exports = {
|
|
|
22053
22519
|
CreateCmqTopicResponse: CreateCmqTopicResponse,
|
|
22054
22520
|
CmqDeadLetterSource: CmqDeadLetterSource,
|
|
22055
22521
|
DescribeRocketMQTopicRequest: DescribeRocketMQTopicRequest,
|
|
22522
|
+
CreateRocketMQMigrationTaskResponse: CreateRocketMQMigrationTaskResponse,
|
|
22056
22523
|
ResetMsgSubOffsetByTimestampRequest: ResetMsgSubOffsetByTimestampRequest,
|
|
22057
22524
|
DescribeBindVpcsResponse: DescribeBindVpcsResponse,
|
|
22058
22525
|
ModifyRabbitMQPermissionRequest: ModifyRabbitMQPermissionRequest,
|
|
@@ -22092,6 +22559,7 @@ module.exports = {
|
|
|
22092
22559
|
RocketMQClusterRecentStats: RocketMQClusterRecentStats,
|
|
22093
22560
|
DescribeRocketMQPublicAccessPointRequest: DescribeRocketMQPublicAccessPointRequest,
|
|
22094
22561
|
RabbitMQPrivateNode: RabbitMQPrivateNode,
|
|
22562
|
+
RocketMQRoleConfig: RocketMQRoleConfig,
|
|
22095
22563
|
RetryRocketMQDlqMessageRequest: RetryRocketMQDlqMessageRequest,
|
|
22096
22564
|
DescribeRocketMQTopicsByGroupRequest: DescribeRocketMQTopicsByGroupRequest,
|
|
22097
22565
|
DescribeRocketMQPublicAccessMonitorDataResponse: DescribeRocketMQPublicAccessMonitorDataResponse,
|
|
@@ -22118,6 +22586,7 @@ module.exports = {
|
|
|
22118
22586
|
CmqTopic: CmqTopic,
|
|
22119
22587
|
RabbitMQExchangeListInfo: RabbitMQExchangeListInfo,
|
|
22120
22588
|
DescribeBindVpcsRequest: DescribeBindVpcsRequest,
|
|
22589
|
+
RabbitMQVHostBaseQuota: RabbitMQVHostBaseQuota,
|
|
22121
22590
|
TopicRecord: TopicRecord,
|
|
22122
22591
|
DescribeEnvironmentRolesRequest: DescribeEnvironmentRolesRequest,
|
|
22123
22592
|
GeneralSKU: GeneralSKU,
|