tencentcloud-sdk-nodejs-dbbrain 4.1.24 → 4.1.28
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
CHANGED
|
@@ -670,35 +670,35 @@ export interface MySqlProcess {
|
|
|
670
670
|
/**
|
|
671
671
|
* 线程ID。
|
|
672
672
|
*/
|
|
673
|
-
ID
|
|
673
|
+
ID?: string;
|
|
674
674
|
/**
|
|
675
675
|
* 线程的操作账号名。
|
|
676
676
|
*/
|
|
677
|
-
User
|
|
677
|
+
User?: string;
|
|
678
678
|
/**
|
|
679
679
|
* 线程的操作主机地址。
|
|
680
680
|
*/
|
|
681
|
-
Host
|
|
681
|
+
Host?: string;
|
|
682
682
|
/**
|
|
683
683
|
* 线程的操作数据库。
|
|
684
684
|
*/
|
|
685
|
-
DB
|
|
685
|
+
DB?: string;
|
|
686
686
|
/**
|
|
687
687
|
* 线程的操作状态。
|
|
688
688
|
*/
|
|
689
|
-
State
|
|
689
|
+
State?: string;
|
|
690
690
|
/**
|
|
691
691
|
* 线程的执行类型。
|
|
692
692
|
*/
|
|
693
|
-
Command
|
|
693
|
+
Command?: string;
|
|
694
694
|
/**
|
|
695
695
|
* 线程的操作时长,单位秒。
|
|
696
696
|
*/
|
|
697
|
-
Time
|
|
697
|
+
Time?: string;
|
|
698
698
|
/**
|
|
699
699
|
* 线程的操作语句。
|
|
700
700
|
*/
|
|
701
|
-
Info
|
|
701
|
+
Info?: string;
|
|
702
702
|
}
|
|
703
703
|
/**
|
|
704
704
|
* 实例诊断历史事件
|