tencentcloud-sdk-nodejs-cbs 4.1.28 → 4.1.32

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-cbs",
3
- "version": "4.1.28",
3
+ "version": "4.1.32",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -1780,56 +1780,65 @@ export interface SnapshotGroup {
1780
1780
  /**
1781
1781
  * 快照组ID。
1782
1782
  */
1783
- SnapshotGroupId: string;
1783
+ SnapshotGroupId?: string;
1784
1784
  /**
1785
1785
  * 快照组类型。NORMAL: 普通快照组,非一致性快照。
1786
1786
  */
1787
- SnapshotGroupType: string;
1787
+ SnapshotGroupType?: string;
1788
1788
  /**
1789
1789
  * 快照组是否包含系统盘快照。
1790
1790
  */
1791
- ContainRootSnapshot: boolean;
1791
+ ContainRootSnapshot?: boolean;
1792
1792
  /**
1793
1793
  * 快照组包含的快照ID列表。
1794
1794
  */
1795
- SnapshotIdSet: Array<string>;
1795
+ SnapshotIdSet?: Array<string>;
1796
1796
  /**
1797
- * 快照组状态。<br><li>NORMAL: 正常<br><li>CREATING:创建中<br><li>ROLLBACKING:回滚中
1797
+ * <ul>
1798
+ <li>NORMAL: 正常</li>
1799
+ <li>CREATING: 创建中</li>
1800
+ <li>ROLLBACKING: 回滚中</li>
1801
+ </ul>
1798
1802
  */
1799
- SnapshotGroupState: string;
1803
+ SnapshotGroupState?: string;
1800
1804
  /**
1801
1805
  * 快照组创建进度。
1802
1806
  */
1803
- Percent: number;
1807
+ Percent?: number;
1804
1808
  /**
1805
1809
  * 快照组创建时间。
1806
1810
  */
1807
- CreateTime: string;
1811
+ CreateTime?: string;
1808
1812
  /**
1809
1813
  * 快照组最新修改时间
1810
1814
  */
1811
- ModifyTime: string;
1815
+ ModifyTime?: string;
1812
1816
  /**
1813
1817
  * 快照组关联的镜像列表。
1814
1818
  */
1815
- Images: Array<Image>;
1819
+ Images?: Array<Image>;
1816
1820
  /**
1817
1821
  * 快照组名称。
1818
1822
  */
1819
- SnapshotGroupName: string;
1823
+ SnapshotGroupName?: string;
1820
1824
  /**
1821
1825
  * 快照组关联的镜像数量。
1822
1826
  */
1823
- ImageCount: number;
1827
+ ImageCount?: number;
1824
1828
  /**
1825
1829
  * 快照组是否永久保留
1826
1830
  */
1827
- IsPermanent: boolean;
1831
+ IsPermanent?: boolean;
1828
1832
  /**
1829
1833
  * 快照组到期时间。
1830
1834
  注意:此字段可能返回 null,表示取不到有效值。
1831
1835
  */
1832
- DeadlineTime: string;
1836
+ DeadlineTime?: string;
1837
+ /**
1838
+ * 来源自动快照策略ID
1839
+ 注意:此字段可能返回 null,表示取不到有效值。
1840
+ */
1841
+ AutoSnapshotPolicyId?: string;
1833
1842
  }
1834
1843
  /**
1835
1844
  * BindAutoSnapshotPolicy返回参数结构体