@datatr-ux/ovhcloud-types 1.0.30 → 1.0.31

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,5 +1,9 @@
1
+ import { AttachedTo } from './volume/AttachedTo';
2
+ import { VolumeStatusEnum } from '../volume/VolumeStatusEnum';
1
3
  /** Region volume */
2
4
  export interface Volume {
5
+ /** Volume attached to list */
6
+ attachedTo: AttachedTo[];
3
7
  /** Availability zone of the volume */
4
8
  availabilityZone?: string;
5
9
  /** Volume ID */
@@ -8,5 +12,7 @@ export interface Volume {
8
12
  name: string;
9
13
  /** Volume size */
10
14
  size: number;
15
+ /** Volume status */
16
+ status: VolumeStatusEnum;
11
17
  }
12
18
  //# sourceMappingURL=Volume.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Volume.d.ts","sourceRoot":"","sources":["../../../generated/types/cloud/region/Volume.ts"],"names":[],"mappings":"AAAA,oBAAoB;AACpB,MAAM,WAAW,MAAM;IACrB,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;CACd"}
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;AAEzE,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;CAC1B"}
@@ -0,0 +1,6 @@
1
+ /** Region volume attached to */
2
+ export interface AttachedTo {
3
+ /** Instance ID */
4
+ id: string;
5
+ }
6
+ //# sourceMappingURL=AttachedTo.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AttachedTo.d.ts","sourceRoot":"","sources":["../../../../generated/types/cloud/region/volume/AttachedTo.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAChC,MAAM,WAAW,UAAU;IACzB,kBAAkB;IAClB,EAAE,EAAE,MAAM,CAAC;CACZ"}
@@ -0,0 +1 @@
1
+ export {};
@@ -1,4 +1,5 @@
1
1
  import * as create from './create/index';
2
+ export * from './AttachedTo';
2
3
  export * from './Create';
3
4
  export { create };
4
5
  //# 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,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,OAAO,EAAE,MAAM,EAAE,CAAC"}
@@ -1,3 +1,4 @@
1
1
  import * as create from './create/index.js';
2
+ export * from './AttachedTo.js';
2
3
  export * from './Create.js';
3
4
  export { create };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datatr-ux/ovhcloud-types",
3
- "version": "1.0.30",
3
+ "version": "1.0.31",
4
4
  "description": "TypeScript types for OVHCloud projects",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",