tencentcloud-sdk-nodejs-mongodb 4.1.99 → 4.1.103
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
|
@@ -1293,11 +1293,13 @@ export interface ModifyDBInstanceSpecRequest {
|
|
|
1293
1293
|
export interface Auth {
|
|
1294
1294
|
/**
|
|
1295
1295
|
* 当前账号具有的权限信息。<ul><li>0:无权限。</li><li>1:只读。</li><li>2:只写。</li><li>3:读写。</li></ul>
|
|
1296
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1296
1297
|
*/
|
|
1297
1298
|
Mask: number;
|
|
1298
1299
|
/**
|
|
1299
1300
|
* 指具有当前账号权限的数据库名。
|
|
1300
1301
|
<ul><li>* :表示所有数据库。</li><li>db.name:表示特定name的数据库。</li></ul>
|
|
1302
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1301
1303
|
*/
|
|
1302
1304
|
NameSpace: string;
|
|
1303
1305
|
}
|
|
@@ -1674,23 +1676,27 @@ export interface UserInfo {
|
|
|
1674
1676
|
/**
|
|
1675
1677
|
* 账号名。
|
|
1676
1678
|
*/
|
|
1677
|
-
UserName
|
|
1679
|
+
UserName?: string;
|
|
1678
1680
|
/**
|
|
1679
1681
|
* 账号权限详情。
|
|
1680
1682
|
*/
|
|
1681
|
-
AuthRole
|
|
1683
|
+
AuthRole?: Array<Auth>;
|
|
1682
1684
|
/**
|
|
1683
1685
|
* 账号创建时间。
|
|
1684
1686
|
*/
|
|
1685
|
-
CreateTime
|
|
1687
|
+
CreateTime?: string;
|
|
1686
1688
|
/**
|
|
1687
1689
|
* 账号更新时间。
|
|
1688
1690
|
*/
|
|
1689
|
-
UpdateTime
|
|
1691
|
+
UpdateTime?: string;
|
|
1690
1692
|
/**
|
|
1691
1693
|
* 备注信息。
|
|
1692
1694
|
*/
|
|
1693
|
-
UserDesc
|
|
1695
|
+
UserDesc?: string;
|
|
1696
|
+
/**
|
|
1697
|
+
* 控制台密码更新时间
|
|
1698
|
+
*/
|
|
1699
|
+
ConsolePassUpdateTime?: string;
|
|
1694
1700
|
}
|
|
1695
1701
|
/**
|
|
1696
1702
|
* DescribeInstanceParams请求参数结构体
|