@datatr-ux/ovhcloud-types 2.0.111 → 2.0.113

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.
@@ -1,4 +1,6 @@
1
1
  import { AttachedTo } from './volume/AttachedTo';
2
+ import { Backup } from './volume/Backup';
3
+ import { Snapshot } from './volume/Snapshot';
2
4
  import { VolumeStatusEnum } from '../volume/VolumeStatusEnum';
3
5
  import { VolumeTypeEnum } from '../volume/VolumeTypeEnum';
4
6
  /** Region volume */
@@ -7,12 +9,16 @@ export interface Volume {
7
9
  attachedTo: AttachedTo[];
8
10
  /** Availability zone of the volume */
9
11
  availabilityZone?: string;
12
+ /** Volume backups */
13
+ backups: Backup[];
10
14
  /** Volume ID */
11
15
  id: string;
12
16
  /** Volume name */
13
17
  name: string;
14
18
  /** Volume size */
15
19
  size: number;
20
+ /** Volume snapshots */
21
+ snapshots: Snapshot[];
16
22
  /** Volume status */
17
23
  status: VolumeStatusEnum;
18
24
  /** Volume type */
@@ -1 +1 @@
1
- {"version":3,"file":"Volume.d.ts","sourceRoot":"","sources":["../../../generated/types/cloud/region/Volume.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,wCAAwC,CAAC;AACpE,OAAO,EAAE,gBAAgB,EAAE,MAAM,uCAAuC,CAAC;AACzE,OAAO,EAAE,cAAc,EAAE,MAAM,qCAAqC,CAAC;AAErE,oBAAoB;AACpB,MAAM,WAAW,MAAM;IACrB,8BAA8B;IAC9B,UAAU,EAAE,UAAU,EAAE,CAAC;IACzB,sCAAsC;IACtC,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,gBAAgB;IAChB,EAAE,EAAE,MAAM,CAAC;IACX,kBAAkB;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,kBAAkB;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,oBAAoB;IACpB,MAAM,EAAE,gBAAgB,CAAC;IACzB,kBAAkB;IAClB,IAAI,EAAE,cAAc,CAAC;CACtB"}
1
+ {"version":3,"file":"Volume.d.ts","sourceRoot":"","sources":["../../../generated/types/cloud/region/Volume.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,wCAAwC,CAAC;AACpE,OAAO,EAAE,MAAM,EAAE,MAAM,oCAAoC,CAAC;AAC5D,OAAO,EAAE,QAAQ,EAAE,MAAM,sCAAsC,CAAC;AAChE,OAAO,EAAE,gBAAgB,EAAE,MAAM,uCAAuC,CAAC;AACzE,OAAO,EAAE,cAAc,EAAE,MAAM,qCAAqC,CAAC;AAErE,oBAAoB;AACpB,MAAM,WAAW,MAAM;IACrB,8BAA8B;IAC9B,UAAU,EAAE,UAAU,EAAE,CAAC;IACzB,sCAAsC;IACtC,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,qBAAqB;IACrB,OAAO,EAAE,MAAM,EAAE,CAAC;IAClB,gBAAgB;IAChB,EAAE,EAAE,MAAM,CAAC;IACX,kBAAkB;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,kBAAkB;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,uBAAuB;IACvB,SAAS,EAAE,QAAQ,EAAE,CAAC;IACtB,oBAAoB;IACpB,MAAM,EAAE,gBAAgB,CAAC;IACzB,kBAAkB;IAClB,IAAI,EAAE,cAAc,CAAC;CACtB"}
@@ -0,0 +1,15 @@
1
+ import { VolumeBackupStatusEnum } from '../../volumeBackup/VolumeBackupStatusEnum';
2
+ /** Region volume backup */
3
+ export interface Backup {
4
+ /** Backup creation date */
5
+ creationDate: string;
6
+ /** Backup ID */
7
+ id: string;
8
+ /** Backup name */
9
+ name: string;
10
+ /** Backup size in GiB */
11
+ size: number;
12
+ /** Backup status */
13
+ status: VolumeBackupStatusEnum;
14
+ }
15
+ //# sourceMappingURL=Backup.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Backup.d.ts","sourceRoot":"","sources":["../../../../generated/types/cloud/region/volume/Backup.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,sBAAsB,EAAE,MAAM,mDAAmD,CAAC;AAE3F,2BAA2B;AAC3B,MAAM,WAAW,MAAM;IACrB,2BAA2B;IAC3B,YAAY,EAAE,MAAM,CAAC;IACrB,gBAAgB;IAChB,EAAE,EAAE,MAAM,CAAC;IACX,kBAAkB;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,yBAAyB;IACzB,IAAI,EAAE,MAAM,CAAC;IACb,oBAAoB;IACpB,MAAM,EAAE,sBAAsB,CAAC;CAChC"}
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,15 @@
1
+ import { SnapshotStatusEnum } from '../../volume/SnapshotStatusEnum';
2
+ /** Region volume snapshot */
3
+ export interface Snapshot {
4
+ /** Snapshot creation date */
5
+ creationDate: string;
6
+ /** Snapshot ID */
7
+ id: string;
8
+ /** Snapshot name */
9
+ name: string;
10
+ /** Snapshot size in GiB */
11
+ size: number;
12
+ /** Snapshot status */
13
+ status: SnapshotStatusEnum;
14
+ }
15
+ //# sourceMappingURL=Snapshot.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Snapshot.d.ts","sourceRoot":"","sources":["../../../../generated/types/cloud/region/volume/Snapshot.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,yCAAyC,CAAC;AAE7E,6BAA6B;AAC7B,MAAM,WAAW,QAAQ;IACvB,6BAA6B;IAC7B,YAAY,EAAE,MAAM,CAAC;IACrB,kBAAkB;IAClB,EAAE,EAAE,MAAM,CAAC;IACX,oBAAoB;IACpB,IAAI,EAAE,MAAM,CAAC;IACb,2BAA2B;IAC3B,IAAI,EAAE,MAAM,CAAC;IACb,sBAAsB;IACtB,MAAM,EAAE,kBAAkB,CAAC;CAC5B"}
@@ -0,0 +1 @@
1
+ export {};
@@ -1,7 +1,9 @@
1
1
  import * as create from './create/index';
2
2
  export * from './AttachedTo';
3
+ export * from './Backup';
3
4
  export * from './BulkDeleteSnapshots';
4
5
  export * from './Create';
6
+ export * from './Snapshot';
5
7
  export * from './Update';
6
8
  export { create };
7
9
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../generated/types/cloud/region/volume/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AAEzC,cAAc,cAAc,CAAC;AAC7B,cAAc,uBAAuB,CAAC;AACtC,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,OAAO,EAAE,MAAM,EAAE,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../generated/types/cloud/region/volume/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AAEzC,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,cAAc,uBAAuB,CAAC;AACtC,cAAc,UAAU,CAAC;AACzB,cAAc,YAAY,CAAC;AAC3B,cAAc,UAAU,CAAC;AACzB,OAAO,EAAE,MAAM,EAAE,CAAC"}
@@ -1,6 +1,8 @@
1
1
  import * as create from './create/index.js';
2
2
  export * from './AttachedTo.js';
3
+ export * from './Backup.js';
3
4
  export * from './BulkDeleteSnapshots.js';
4
5
  export * from './Create.js';
6
+ export * from './Snapshot.js';
5
7
  export * from './Update.js';
6
8
  export { create };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datatr-ux/ovhcloud-types",
3
- "version": "2.0.111",
3
+ "version": "2.0.113",
4
4
  "description": "TypeScript types for OVHCloud projects",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",