tencentcloud-sdk-nodejs-postgres 4.1.34 → 4.1.36

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-postgres",
3
- "version": "4.1.34",
3
+ "version": "4.1.36",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -2321,17 +2321,14 @@ export interface SetAutoRenewFlagResponse {
2321
2321
  export interface ModifyPrivilege {
2322
2322
  /**
2323
2323
  * 要修改的数据库对象及权限列表
2324
- 注意:此字段可能返回 null,表示取不到有效值。
2325
2324
  */
2326
2325
  DatabasePrivilege?: DatabasePrivilege;
2327
2326
  /**
2328
2327
  * 修改的方式,当前仅支持grantObject、revokeObject、alterRole。grantObject代表授权、revokeObject代表收回权、alterRole代表修改账号类型。
2329
- 注意:此字段可能返回 null,表示取不到有效值。
2330
2328
  */
2331
2329
  ModifyType?: string;
2332
2330
  /**
2333
2331
  * 当ModifyType为revokeObject才需要此参数,参数为true时,撤销权限会级联撤销。默认为false。
2334
- 注意:此字段可能返回 null,表示取不到有效值。
2335
2332
  */
2336
2333
  IsCascade?: boolean;
2337
2334
  }