@nirvana-labs/nirvana 1.55.3 → 1.56.0

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.
Files changed (181) hide show
  1. package/CHANGELOG.md +28 -0
  2. package/bin/migration-config.json +300 -0
  3. package/client.d.mts +3 -0
  4. package/client.d.mts.map +1 -1
  5. package/client.d.ts +3 -0
  6. package/client.d.ts.map +1 -1
  7. package/client.js +3 -0
  8. package/client.js.map +1 -1
  9. package/client.mjs +3 -0
  10. package/client.mjs.map +1 -1
  11. package/package.json +1 -1
  12. package/resources/index.d.mts +1 -0
  13. package/resources/index.d.mts.map +1 -1
  14. package/resources/index.d.ts +1 -0
  15. package/resources/index.d.ts.map +1 -1
  16. package/resources/index.js +3 -1
  17. package/resources/index.js.map +1 -1
  18. package/resources/index.mjs +1 -0
  19. package/resources/index.mjs.map +1 -1
  20. package/resources/nks/clusters/availability.d.mts +65 -0
  21. package/resources/nks/clusters/availability.d.mts.map +1 -0
  22. package/resources/nks/clusters/availability.d.ts +65 -0
  23. package/resources/nks/clusters/availability.d.ts.map +1 -0
  24. package/resources/nks/clusters/availability.js +46 -0
  25. package/resources/nks/clusters/availability.js.map +1 -0
  26. package/resources/nks/clusters/availability.mjs +42 -0
  27. package/resources/nks/clusters/availability.mjs.map +1 -0
  28. package/resources/nks/clusters/clusters.d.mts +191 -0
  29. package/resources/nks/clusters/clusters.d.mts.map +1 -0
  30. package/resources/nks/clusters/clusters.d.ts +191 -0
  31. package/resources/nks/clusters/clusters.d.ts.map +1 -0
  32. package/resources/nks/clusters/clusters.js +96 -0
  33. package/resources/nks/clusters/clusters.js.map +1 -0
  34. package/resources/nks/clusters/clusters.mjs +91 -0
  35. package/resources/nks/clusters/clusters.mjs.map +1 -0
  36. package/resources/nks/clusters/index.d.mts +4 -0
  37. package/resources/nks/clusters/index.d.mts.map +1 -0
  38. package/resources/nks/clusters/index.d.ts +4 -0
  39. package/resources/nks/clusters/index.d.ts.map +1 -0
  40. package/resources/nks/clusters/index.js +11 -0
  41. package/resources/nks/clusters/index.js.map +1 -0
  42. package/resources/nks/clusters/index.mjs +5 -0
  43. package/resources/nks/clusters/index.mjs.map +1 -0
  44. package/resources/nks/clusters/kubeconfig.d.mts +18 -0
  45. package/resources/nks/clusters/kubeconfig.d.mts.map +1 -0
  46. package/resources/nks/clusters/kubeconfig.d.ts +18 -0
  47. package/resources/nks/clusters/kubeconfig.d.ts.map +1 -0
  48. package/resources/nks/clusters/kubeconfig.js +23 -0
  49. package/resources/nks/clusters/kubeconfig.js.map +1 -0
  50. package/resources/nks/clusters/kubeconfig.mjs +19 -0
  51. package/resources/nks/clusters/kubeconfig.mjs.map +1 -0
  52. package/resources/nks/clusters/pools/availability.d.mts +74 -0
  53. package/resources/nks/clusters/pools/availability.d.mts.map +1 -0
  54. package/resources/nks/clusters/pools/availability.d.ts +74 -0
  55. package/resources/nks/clusters/pools/availability.d.ts.map +1 -0
  56. package/resources/nks/clusters/pools/availability.js +56 -0
  57. package/resources/nks/clusters/pools/availability.js.map +1 -0
  58. package/resources/nks/clusters/pools/availability.mjs +52 -0
  59. package/resources/nks/clusters/pools/availability.mjs.map +1 -0
  60. package/resources/nks/clusters/pools/index.d.mts +4 -0
  61. package/resources/nks/clusters/pools/index.d.mts.map +1 -0
  62. package/resources/nks/clusters/pools/index.d.ts +4 -0
  63. package/resources/nks/clusters/pools/index.d.ts.map +1 -0
  64. package/resources/nks/clusters/pools/index.js +11 -0
  65. package/resources/nks/clusters/pools/index.js.map +1 -0
  66. package/resources/nks/clusters/pools/index.mjs +5 -0
  67. package/resources/nks/clusters/pools/index.mjs.map +1 -0
  68. package/resources/nks/clusters/pools/nodes/index.d.mts +3 -0
  69. package/resources/nks/clusters/pools/nodes/index.d.mts.map +1 -0
  70. package/resources/nks/clusters/pools/nodes/index.d.ts +3 -0
  71. package/resources/nks/clusters/pools/nodes/index.d.ts.map +1 -0
  72. package/resources/nks/clusters/pools/nodes/index.js +9 -0
  73. package/resources/nks/clusters/pools/nodes/index.js.map +1 -0
  74. package/resources/nks/clusters/pools/nodes/index.mjs +4 -0
  75. package/resources/nks/clusters/pools/nodes/index.mjs.map +1 -0
  76. package/resources/nks/clusters/pools/nodes/nodes.d.mts +95 -0
  77. package/resources/nks/clusters/pools/nodes/nodes.d.mts.map +1 -0
  78. package/resources/nks/clusters/pools/nodes/nodes.d.ts +95 -0
  79. package/resources/nks/clusters/pools/nodes/nodes.d.ts.map +1 -0
  80. package/resources/nks/clusters/pools/nodes/nodes.js +52 -0
  81. package/resources/nks/clusters/pools/nodes/nodes.js.map +1 -0
  82. package/resources/nks/clusters/pools/nodes/nodes.mjs +47 -0
  83. package/resources/nks/clusters/pools/nodes/nodes.mjs.map +1 -0
  84. package/resources/nks/clusters/pools/nodes/volumes.d.mts +109 -0
  85. package/resources/nks/clusters/pools/nodes/volumes.d.mts.map +1 -0
  86. package/resources/nks/clusters/pools/nodes/volumes.d.ts +109 -0
  87. package/resources/nks/clusters/pools/nodes/volumes.d.ts.map +1 -0
  88. package/resources/nks/clusters/pools/nodes/volumes.js +49 -0
  89. package/resources/nks/clusters/pools/nodes/volumes.js.map +1 -0
  90. package/resources/nks/clusters/pools/nodes/volumes.mjs +45 -0
  91. package/resources/nks/clusters/pools/nodes/volumes.mjs.map +1 -0
  92. package/resources/nks/clusters/pools/nodes.d.mts +2 -0
  93. package/resources/nks/clusters/pools/nodes.d.mts.map +1 -0
  94. package/resources/nks/clusters/pools/nodes.d.ts +2 -0
  95. package/resources/nks/clusters/pools/nodes.d.ts.map +1 -0
  96. package/resources/nks/clusters/pools/nodes.js +6 -0
  97. package/resources/nks/clusters/pools/nodes.js.map +1 -0
  98. package/resources/nks/clusters/pools/nodes.mjs +3 -0
  99. package/resources/nks/clusters/pools/nodes.mjs.map +1 -0
  100. package/resources/nks/clusters/pools/pools.d.mts +221 -0
  101. package/resources/nks/clusters/pools/pools.d.mts.map +1 -0
  102. package/resources/nks/clusters/pools/pools.d.ts +221 -0
  103. package/resources/nks/clusters/pools/pools.d.ts.map +1 -0
  104. package/resources/nks/clusters/pools/pools.js +109 -0
  105. package/resources/nks/clusters/pools/pools.js.map +1 -0
  106. package/resources/nks/clusters/pools/pools.mjs +104 -0
  107. package/resources/nks/clusters/pools/pools.mjs.map +1 -0
  108. package/resources/nks/clusters/pools.d.mts +2 -0
  109. package/resources/nks/clusters/pools.d.mts.map +1 -0
  110. package/resources/nks/clusters/pools.d.ts +2 -0
  111. package/resources/nks/clusters/pools.d.ts.map +1 -0
  112. package/resources/nks/clusters/pools.js +6 -0
  113. package/resources/nks/clusters/pools.js.map +1 -0
  114. package/resources/nks/clusters/pools.mjs +3 -0
  115. package/resources/nks/clusters/pools.mjs.map +1 -0
  116. package/resources/nks/clusters.d.mts +2 -0
  117. package/resources/nks/clusters.d.mts.map +1 -0
  118. package/resources/nks/clusters.d.ts +2 -0
  119. package/resources/nks/clusters.d.ts.map +1 -0
  120. package/resources/nks/clusters.js +6 -0
  121. package/resources/nks/clusters.js.map +1 -0
  122. package/resources/nks/clusters.mjs +3 -0
  123. package/resources/nks/clusters.mjs.map +1 -0
  124. package/resources/nks/index.d.mts +3 -0
  125. package/resources/nks/index.d.mts.map +1 -0
  126. package/resources/nks/index.d.ts +3 -0
  127. package/resources/nks/index.d.ts.map +1 -0
  128. package/resources/nks/index.js +9 -0
  129. package/resources/nks/index.js.map +1 -0
  130. package/resources/nks/index.mjs +4 -0
  131. package/resources/nks/index.mjs.map +1 -0
  132. package/resources/nks/nks.d.mts +10 -0
  133. package/resources/nks/nks.d.mts.map +1 -0
  134. package/resources/nks/nks.d.ts +10 -0
  135. package/resources/nks/nks.d.ts.map +1 -0
  136. package/resources/nks/nks.js +17 -0
  137. package/resources/nks/nks.js.map +1 -0
  138. package/resources/nks/nks.mjs +12 -0
  139. package/resources/nks/nks.mjs.map +1 -0
  140. package/resources/nks.d.mts +2 -0
  141. package/resources/nks.d.mts.map +1 -0
  142. package/resources/nks.d.ts +2 -0
  143. package/resources/nks.d.ts.map +1 -0
  144. package/resources/nks.js +6 -0
  145. package/resources/nks.js.map +1 -0
  146. package/resources/nks.mjs +3 -0
  147. package/resources/nks.mjs.map +1 -0
  148. package/resources/operations/operations.d.mts +1 -1
  149. package/resources/operations/operations.d.mts.map +1 -1
  150. package/resources/operations/operations.d.ts +1 -1
  151. package/resources/operations/operations.d.ts.map +1 -1
  152. package/resources/regions/regions.d.mts +13 -0
  153. package/resources/regions/regions.d.mts.map +1 -1
  154. package/resources/regions/regions.d.ts +13 -0
  155. package/resources/regions/regions.d.ts.map +1 -1
  156. package/src/client.ts +5 -0
  157. package/src/resources/index.ts +1 -0
  158. package/src/resources/nks/api.md +77 -0
  159. package/src/resources/nks/clusters/availability.ts +93 -0
  160. package/src/resources/nks/clusters/clusters.ts +273 -0
  161. package/src/resources/nks/clusters/index.ts +25 -0
  162. package/src/resources/nks/clusters/kubeconfig.ts +23 -0
  163. package/src/resources/nks/clusters/pools/availability.ts +103 -0
  164. package/src/resources/nks/clusters/pools/index.ts +23 -0
  165. package/src/resources/nks/clusters/pools/nodes/index.ts +18 -0
  166. package/src/resources/nks/clusters/pools/nodes/nodes.ts +150 -0
  167. package/src/resources/nks/clusters/pools/nodes/volumes.ts +152 -0
  168. package/src/resources/nks/clusters/pools/nodes.ts +3 -0
  169. package/src/resources/nks/clusters/pools/pools.ts +311 -0
  170. package/src/resources/nks/clusters/pools.ts +3 -0
  171. package/src/resources/nks/clusters.ts +3 -0
  172. package/src/resources/nks/index.ts +13 -0
  173. package/src/resources/nks/nks.ts +33 -0
  174. package/src/resources/nks.ts +3 -0
  175. package/src/resources/operations/operations.ts +1 -1
  176. package/src/resources/regions/regions.ts +15 -0
  177. package/src/version.ts +1 -1
  178. package/version.d.mts +1 -1
  179. package/version.d.ts +1 -1
  180. package/version.js +1 -1
  181. package/version.mjs +1 -1
@@ -0,0 +1,109 @@
1
+ import { APIResource } from "../../../../../core/resource.mjs";
2
+ import * as Shared from "../../../../shared.mjs";
3
+ import * as VolumesAPI from "../../../../compute/volumes/volumes.mjs";
4
+ import { APIPromise } from "../../../../../core/api-promise.mjs";
5
+ import { Cursor, type CursorParams, PagePromise } from "../../../../../core/pagination.mjs";
6
+ import { RequestOptions } from "../../../../../internal/request-options.mjs";
7
+ export declare class Volumes extends APIResource {
8
+ /**
9
+ * List all volumes attached to an NKS node
10
+ *
11
+ * @example
12
+ * ```ts
13
+ * // Automatically fetches more pages as needed.
14
+ * for await (const nksNodeVolume of client.nks.clusters.pools.nodes.volumes.list(
15
+ * 'node_id',
16
+ * { cluster_id: 'cluster_id', pool_id: 'pool_id' },
17
+ * )) {
18
+ * // ...
19
+ * }
20
+ * ```
21
+ */
22
+ list(nodeID: string, params: VolumeListParams, options?: RequestOptions): PagePromise<NKSNodeVolumesCursor, NKSNodeVolume>;
23
+ /**
24
+ * Get details about a volume attached to an NKS node
25
+ *
26
+ * @example
27
+ * ```ts
28
+ * const nksNodeVolume =
29
+ * await client.nks.clusters.pools.nodes.volumes.get(
30
+ * 'volume_id',
31
+ * {
32
+ * cluster_id: 'cluster_id',
33
+ * pool_id: 'pool_id',
34
+ * node_id: 'node_id',
35
+ * },
36
+ * );
37
+ * ```
38
+ */
39
+ get(volumeID: string, params: VolumeGetParams, options?: RequestOptions): APIPromise<NKSNodeVolume>;
40
+ }
41
+ export type NKSNodeVolumesCursor = Cursor<NKSNodeVolume>;
42
+ /**
43
+ * NKS node volume details.
44
+ */
45
+ export interface NKSNodeVolume {
46
+ /**
47
+ * Unique identifier for the volume.
48
+ */
49
+ id: string;
50
+ /**
51
+ * When the volume was created.
52
+ */
53
+ created_at: string;
54
+ /**
55
+ * Volume kind.
56
+ */
57
+ kind: VolumesAPI.VolumeKind;
58
+ /**
59
+ * Name of the volume.
60
+ */
61
+ name: string;
62
+ /**
63
+ * Status of the resource.
64
+ */
65
+ status: Shared.ResourceStatus;
66
+ /**
67
+ * Type of the Volume.
68
+ */
69
+ type: VolumesAPI.VolumeType;
70
+ /**
71
+ * When the volume was last updated.
72
+ */
73
+ updated_at: string;
74
+ }
75
+ export interface NKSNodeVolumeList {
76
+ items: Array<NKSNodeVolume>;
77
+ /**
78
+ * Pagination response details.
79
+ */
80
+ pagination: Shared.Pagination;
81
+ }
82
+ export interface VolumeListParams extends CursorParams {
83
+ /**
84
+ * Path param: Cluster ID
85
+ */
86
+ cluster_id: string;
87
+ /**
88
+ * Path param: Node Pool ID
89
+ */
90
+ pool_id: string;
91
+ }
92
+ export interface VolumeGetParams {
93
+ /**
94
+ * Cluster ID
95
+ */
96
+ cluster_id: string;
97
+ /**
98
+ * Node Pool ID
99
+ */
100
+ pool_id: string;
101
+ /**
102
+ * Node ID
103
+ */
104
+ node_id: string;
105
+ }
106
+ export declare namespace Volumes {
107
+ export { type NKSNodeVolume as NKSNodeVolume, type NKSNodeVolumeList as NKSNodeVolumeList, type NKSNodeVolumesCursor as NKSNodeVolumesCursor, type VolumeListParams as VolumeListParams, type VolumeGetParams as VolumeGetParams, };
108
+ }
109
+ //# sourceMappingURL=volumes.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"volumes.d.mts","sourceRoot":"","sources":["../../../../../src/resources/nks/clusters/pools/nodes/volumes.ts"],"names":[],"mappings":"OAEO,EAAE,WAAW,EAAE;OACf,KAAK,MAAM;OACX,KAAK,UAAU;OACf,EAAE,UAAU,EAAE;OACd,EAAE,MAAM,EAAE,KAAK,YAAY,EAAE,WAAW,EAAE;OAC1C,EAAE,cAAc,EAAE;AAGzB,qBAAa,OAAQ,SAAQ,WAAW;IACtC;;;;;;;;;;;;;OAaG;IACH,IAAI,CACF,MAAM,EAAE,MAAM,EACd,MAAM,EAAE,gBAAgB,EACxB,OAAO,CAAC,EAAE,cAAc,GACvB,WAAW,CAAC,oBAAoB,EAAE,aAAa,CAAC;IASnD;;;;;;;;;;;;;;;OAeG;IACH,GAAG,CAAC,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,eAAe,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,aAAa,CAAC;CAOpG;AAED,MAAM,MAAM,oBAAoB,GAAG,MAAM,CAAC,aAAa,CAAC,CAAC;AAEzD;;GAEG;AACH,MAAM,WAAW,aAAa;IAC5B;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IAEX;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,IAAI,EAAE,UAAU,CAAC,UAAU,CAAC;IAE5B;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IAEb;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC,cAAc,CAAC;IAE9B;;OAEG;IACH,IAAI,EAAE,UAAU,CAAC,UAAU,CAAC;IAE5B;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,iBAAiB;IAChC,KAAK,EAAE,KAAK,CAAC,aAAa,CAAC,CAAC;IAE5B;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC,UAAU,CAAC;CAC/B;AAED,MAAM,WAAW,gBAAiB,SAAQ,YAAY;IACpD;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,eAAe;IAC9B;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAEhB;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,CAAC,OAAO,WAAW,OAAO,CAAC;IAC/B,OAAO,EACL,KAAK,aAAa,IAAI,aAAa,EACnC,KAAK,iBAAiB,IAAI,iBAAiB,EAC3C,KAAK,oBAAoB,IAAI,oBAAoB,EACjD,KAAK,gBAAgB,IAAI,gBAAgB,EACzC,KAAK,eAAe,IAAI,eAAe,GACxC,CAAC;CACH"}
@@ -0,0 +1,109 @@
1
+ import { APIResource } from "../../../../../core/resource.js";
2
+ import * as Shared from "../../../../shared.js";
3
+ import * as VolumesAPI from "../../../../compute/volumes/volumes.js";
4
+ import { APIPromise } from "../../../../../core/api-promise.js";
5
+ import { Cursor, type CursorParams, PagePromise } from "../../../../../core/pagination.js";
6
+ import { RequestOptions } from "../../../../../internal/request-options.js";
7
+ export declare class Volumes extends APIResource {
8
+ /**
9
+ * List all volumes attached to an NKS node
10
+ *
11
+ * @example
12
+ * ```ts
13
+ * // Automatically fetches more pages as needed.
14
+ * for await (const nksNodeVolume of client.nks.clusters.pools.nodes.volumes.list(
15
+ * 'node_id',
16
+ * { cluster_id: 'cluster_id', pool_id: 'pool_id' },
17
+ * )) {
18
+ * // ...
19
+ * }
20
+ * ```
21
+ */
22
+ list(nodeID: string, params: VolumeListParams, options?: RequestOptions): PagePromise<NKSNodeVolumesCursor, NKSNodeVolume>;
23
+ /**
24
+ * Get details about a volume attached to an NKS node
25
+ *
26
+ * @example
27
+ * ```ts
28
+ * const nksNodeVolume =
29
+ * await client.nks.clusters.pools.nodes.volumes.get(
30
+ * 'volume_id',
31
+ * {
32
+ * cluster_id: 'cluster_id',
33
+ * pool_id: 'pool_id',
34
+ * node_id: 'node_id',
35
+ * },
36
+ * );
37
+ * ```
38
+ */
39
+ get(volumeID: string, params: VolumeGetParams, options?: RequestOptions): APIPromise<NKSNodeVolume>;
40
+ }
41
+ export type NKSNodeVolumesCursor = Cursor<NKSNodeVolume>;
42
+ /**
43
+ * NKS node volume details.
44
+ */
45
+ export interface NKSNodeVolume {
46
+ /**
47
+ * Unique identifier for the volume.
48
+ */
49
+ id: string;
50
+ /**
51
+ * When the volume was created.
52
+ */
53
+ created_at: string;
54
+ /**
55
+ * Volume kind.
56
+ */
57
+ kind: VolumesAPI.VolumeKind;
58
+ /**
59
+ * Name of the volume.
60
+ */
61
+ name: string;
62
+ /**
63
+ * Status of the resource.
64
+ */
65
+ status: Shared.ResourceStatus;
66
+ /**
67
+ * Type of the Volume.
68
+ */
69
+ type: VolumesAPI.VolumeType;
70
+ /**
71
+ * When the volume was last updated.
72
+ */
73
+ updated_at: string;
74
+ }
75
+ export interface NKSNodeVolumeList {
76
+ items: Array<NKSNodeVolume>;
77
+ /**
78
+ * Pagination response details.
79
+ */
80
+ pagination: Shared.Pagination;
81
+ }
82
+ export interface VolumeListParams extends CursorParams {
83
+ /**
84
+ * Path param: Cluster ID
85
+ */
86
+ cluster_id: string;
87
+ /**
88
+ * Path param: Node Pool ID
89
+ */
90
+ pool_id: string;
91
+ }
92
+ export interface VolumeGetParams {
93
+ /**
94
+ * Cluster ID
95
+ */
96
+ cluster_id: string;
97
+ /**
98
+ * Node Pool ID
99
+ */
100
+ pool_id: string;
101
+ /**
102
+ * Node ID
103
+ */
104
+ node_id: string;
105
+ }
106
+ export declare namespace Volumes {
107
+ export { type NKSNodeVolume as NKSNodeVolume, type NKSNodeVolumeList as NKSNodeVolumeList, type NKSNodeVolumesCursor as NKSNodeVolumesCursor, type VolumeListParams as VolumeListParams, type VolumeGetParams as VolumeGetParams, };
108
+ }
109
+ //# sourceMappingURL=volumes.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"volumes.d.ts","sourceRoot":"","sources":["../../../../../src/resources/nks/clusters/pools/nodes/volumes.ts"],"names":[],"mappings":"OAEO,EAAE,WAAW,EAAE;OACf,KAAK,MAAM;OACX,KAAK,UAAU;OACf,EAAE,UAAU,EAAE;OACd,EAAE,MAAM,EAAE,KAAK,YAAY,EAAE,WAAW,EAAE;OAC1C,EAAE,cAAc,EAAE;AAGzB,qBAAa,OAAQ,SAAQ,WAAW;IACtC;;;;;;;;;;;;;OAaG;IACH,IAAI,CACF,MAAM,EAAE,MAAM,EACd,MAAM,EAAE,gBAAgB,EACxB,OAAO,CAAC,EAAE,cAAc,GACvB,WAAW,CAAC,oBAAoB,EAAE,aAAa,CAAC;IASnD;;;;;;;;;;;;;;;OAeG;IACH,GAAG,CAAC,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,eAAe,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,aAAa,CAAC;CAOpG;AAED,MAAM,MAAM,oBAAoB,GAAG,MAAM,CAAC,aAAa,CAAC,CAAC;AAEzD;;GAEG;AACH,MAAM,WAAW,aAAa;IAC5B;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IAEX;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,IAAI,EAAE,UAAU,CAAC,UAAU,CAAC;IAE5B;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IAEb;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC,cAAc,CAAC;IAE9B;;OAEG;IACH,IAAI,EAAE,UAAU,CAAC,UAAU,CAAC;IAE5B;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,iBAAiB;IAChC,KAAK,EAAE,KAAK,CAAC,aAAa,CAAC,CAAC;IAE5B;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC,UAAU,CAAC;CAC/B;AAED,MAAM,WAAW,gBAAiB,SAAQ,YAAY;IACpD;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,eAAe;IAC9B;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAEhB;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,CAAC,OAAO,WAAW,OAAO,CAAC;IAC/B,OAAO,EACL,KAAK,aAAa,IAAI,aAAa,EACnC,KAAK,iBAAiB,IAAI,iBAAiB,EAC3C,KAAK,oBAAoB,IAAI,oBAAoB,EACjD,KAAK,gBAAgB,IAAI,gBAAgB,EACzC,KAAK,eAAe,IAAI,eAAe,GACxC,CAAC;CACH"}
@@ -0,0 +1,49 @@
1
+ "use strict";
2
+ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.Volumes = void 0;
5
+ const resource_1 = require("../../../../../core/resource.js");
6
+ const pagination_1 = require("../../../../../core/pagination.js");
7
+ const path_1 = require("../../../../../internal/utils/path.js");
8
+ class Volumes extends resource_1.APIResource {
9
+ /**
10
+ * List all volumes attached to an NKS node
11
+ *
12
+ * @example
13
+ * ```ts
14
+ * // Automatically fetches more pages as needed.
15
+ * for await (const nksNodeVolume of client.nks.clusters.pools.nodes.volumes.list(
16
+ * 'node_id',
17
+ * { cluster_id: 'cluster_id', pool_id: 'pool_id' },
18
+ * )) {
19
+ * // ...
20
+ * }
21
+ * ```
22
+ */
23
+ list(nodeID, params, options) {
24
+ const { cluster_id, pool_id, ...query } = params;
25
+ return this._client.getAPIList((0, path_1.path) `/v1/nks/clusters/${cluster_id}/pools/${pool_id}/nodes/${nodeID}/volumes`, (pagination_1.Cursor), { query, ...options });
26
+ }
27
+ /**
28
+ * Get details about a volume attached to an NKS node
29
+ *
30
+ * @example
31
+ * ```ts
32
+ * const nksNodeVolume =
33
+ * await client.nks.clusters.pools.nodes.volumes.get(
34
+ * 'volume_id',
35
+ * {
36
+ * cluster_id: 'cluster_id',
37
+ * pool_id: 'pool_id',
38
+ * node_id: 'node_id',
39
+ * },
40
+ * );
41
+ * ```
42
+ */
43
+ get(volumeID, params, options) {
44
+ const { cluster_id, pool_id, node_id } = params;
45
+ return this._client.get((0, path_1.path) `/v1/nks/clusters/${cluster_id}/pools/${pool_id}/nodes/${node_id}/volumes/${volumeID}`, options);
46
+ }
47
+ }
48
+ exports.Volumes = Volumes;
49
+ //# sourceMappingURL=volumes.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"volumes.js","sourceRoot":"","sources":["../../../../../src/resources/nks/clusters/pools/nodes/volumes.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,8DAA2D;AAI3D,kEAAwF;AAExF,gEAA0D;AAE1D,MAAa,OAAQ,SAAQ,sBAAW;IACtC;;;;;;;;;;;;;OAaG;IACH,IAAI,CACF,MAAc,EACd,MAAwB,EACxB,OAAwB;QAExB,MAAM,EAAE,UAAU,EAAE,OAAO,EAAE,GAAG,KAAK,EAAE,GAAG,MAAM,CAAC;QACjD,OAAO,IAAI,CAAC,OAAO,CAAC,UAAU,CAC5B,IAAA,WAAI,EAAA,oBAAoB,UAAU,UAAU,OAAO,UAAU,MAAM,UAAU,EAC7E,CAAA,mBAAqB,CAAA,EACrB,EAAE,KAAK,EAAE,GAAG,OAAO,EAAE,CACtB,CAAC;IACJ,CAAC;IAED;;;;;;;;;;;;;;;OAeG;IACH,GAAG,CAAC,QAAgB,EAAE,MAAuB,EAAE,OAAwB;QACrE,MAAM,EAAE,UAAU,EAAE,OAAO,EAAE,OAAO,EAAE,GAAG,MAAM,CAAC;QAChD,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CACrB,IAAA,WAAI,EAAA,oBAAoB,UAAU,UAAU,OAAO,UAAU,OAAO,YAAY,QAAQ,EAAE,EAC1F,OAAO,CACR,CAAC;IACJ,CAAC;CACF;AAnDD,0BAmDC"}
@@ -0,0 +1,45 @@
1
+ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+ import { APIResource } from "../../../../../core/resource.mjs";
3
+ import { Cursor } from "../../../../../core/pagination.mjs";
4
+ import { path } from "../../../../../internal/utils/path.mjs";
5
+ export class Volumes extends APIResource {
6
+ /**
7
+ * List all volumes attached to an NKS node
8
+ *
9
+ * @example
10
+ * ```ts
11
+ * // Automatically fetches more pages as needed.
12
+ * for await (const nksNodeVolume of client.nks.clusters.pools.nodes.volumes.list(
13
+ * 'node_id',
14
+ * { cluster_id: 'cluster_id', pool_id: 'pool_id' },
15
+ * )) {
16
+ * // ...
17
+ * }
18
+ * ```
19
+ */
20
+ list(nodeID, params, options) {
21
+ const { cluster_id, pool_id, ...query } = params;
22
+ return this._client.getAPIList(path `/v1/nks/clusters/${cluster_id}/pools/${pool_id}/nodes/${nodeID}/volumes`, (Cursor), { query, ...options });
23
+ }
24
+ /**
25
+ * Get details about a volume attached to an NKS node
26
+ *
27
+ * @example
28
+ * ```ts
29
+ * const nksNodeVolume =
30
+ * await client.nks.clusters.pools.nodes.volumes.get(
31
+ * 'volume_id',
32
+ * {
33
+ * cluster_id: 'cluster_id',
34
+ * pool_id: 'pool_id',
35
+ * node_id: 'node_id',
36
+ * },
37
+ * );
38
+ * ```
39
+ */
40
+ get(volumeID, params, options) {
41
+ const { cluster_id, pool_id, node_id } = params;
42
+ return this._client.get(path `/v1/nks/clusters/${cluster_id}/pools/${pool_id}/nodes/${node_id}/volumes/${volumeID}`, options);
43
+ }
44
+ }
45
+ //# sourceMappingURL=volumes.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"volumes.mjs","sourceRoot":"","sources":["../../../../../src/resources/nks/clusters/pools/nodes/volumes.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;OAIf,EAAE,MAAM,EAAkC;OAE1C,EAAE,IAAI,EAAE;AAEf,MAAM,OAAO,OAAQ,SAAQ,WAAW;IACtC;;;;;;;;;;;;;OAaG;IACH,IAAI,CACF,MAAc,EACd,MAAwB,EACxB,OAAwB;QAExB,MAAM,EAAE,UAAU,EAAE,OAAO,EAAE,GAAG,KAAK,EAAE,GAAG,MAAM,CAAC;QACjD,OAAO,IAAI,CAAC,OAAO,CAAC,UAAU,CAC5B,IAAI,CAAA,oBAAoB,UAAU,UAAU,OAAO,UAAU,MAAM,UAAU,EAC7E,CAAA,MAAqB,CAAA,EACrB,EAAE,KAAK,EAAE,GAAG,OAAO,EAAE,CACtB,CAAC;IACJ,CAAC;IAED;;;;;;;;;;;;;;;OAeG;IACH,GAAG,CAAC,QAAgB,EAAE,MAAuB,EAAE,OAAwB;QACrE,MAAM,EAAE,UAAU,EAAE,OAAO,EAAE,OAAO,EAAE,GAAG,MAAM,CAAC;QAChD,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CACrB,IAAI,CAAA,oBAAoB,UAAU,UAAU,OAAO,UAAU,OAAO,YAAY,QAAQ,EAAE,EAC1F,OAAO,CACR,CAAC;IACJ,CAAC;CACF"}
@@ -0,0 +1,2 @@
1
+ export * from "./nodes/index.mjs";
2
+ //# sourceMappingURL=nodes.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"nodes.d.mts","sourceRoot":"","sources":["../../../../src/resources/nks/clusters/pools/nodes.ts"],"names":[],"mappings":""}
@@ -0,0 +1,2 @@
1
+ export * from "./nodes/index.js";
2
+ //# sourceMappingURL=nodes.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"nodes.d.ts","sourceRoot":"","sources":["../../../../src/resources/nks/clusters/pools/nodes.ts"],"names":[],"mappings":""}
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ const tslib_1 = require("../../../../internal/tslib.js");
5
+ tslib_1.__exportStar(require("./nodes/index.js"), exports);
6
+ //# sourceMappingURL=nodes.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"nodes.js","sourceRoot":"","sources":["../../../../src/resources/nks/clusters/pools/nodes.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,2DAA8B"}
@@ -0,0 +1,3 @@
1
+ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+ export * from "./nodes/index.mjs";
3
+ //# sourceMappingURL=nodes.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"nodes.mjs","sourceRoot":"","sources":["../../../../src/resources/nks/clusters/pools/nodes.ts"],"names":[],"mappings":"AAAA,sFAAsF"}
@@ -0,0 +1,221 @@
1
+ import { APIResource } from "../../../../core/resource.mjs";
2
+ import * as Shared from "../../../shared.mjs";
3
+ import * as OperationsAPI from "../../../operations/operations.mjs";
4
+ import * as AvailabilityAPI from "./availability.mjs";
5
+ import { Availability, AvailabilityCreateParams, AvailabilityUpdateParams } from "./availability.mjs";
6
+ import * as NodesAPI from "./nodes/nodes.mjs";
7
+ import { NKSNode, NKSNodeList, NKSNodesCursor, NodeGetParams, NodeListParams, Nodes } from "./nodes/nodes.mjs";
8
+ import { APIPromise } from "../../../../core/api-promise.mjs";
9
+ import { Cursor, type CursorParams, PagePromise } from "../../../../core/pagination.mjs";
10
+ import { RequestOptions } from "../../../../internal/request-options.mjs";
11
+ export declare class Pools extends APIResource {
12
+ availability: AvailabilityAPI.Availability;
13
+ nodes: NodesAPI.Nodes;
14
+ /**
15
+ * Create a node pool in an NKS cluster
16
+ *
17
+ * @example
18
+ * ```ts
19
+ * const operation = await client.nks.clusters.pools.create(
20
+ * 'cluster_id',
21
+ * {
22
+ * name: 'my-node-pool',
23
+ * node_config: {
24
+ * ram_gi: 8,
25
+ * storage_gi: 100,
26
+ * vcpu: 4,
27
+ * },
28
+ * node_count: 3,
29
+ * },
30
+ * );
31
+ * ```
32
+ */
33
+ create(clusterID: string, body: PoolCreateParams, options?: RequestOptions): APIPromise<OperationsAPI.Operation>;
34
+ /**
35
+ * Update an NKS node pool
36
+ *
37
+ * @example
38
+ * ```ts
39
+ * const nksNodePool = await client.nks.clusters.pools.update(
40
+ * 'pool_id',
41
+ * { cluster_id: 'cluster_id' },
42
+ * );
43
+ * ```
44
+ */
45
+ update(poolID: string, params: PoolUpdateParams, options?: RequestOptions): APIPromise<NKSNodePool>;
46
+ /**
47
+ * List all node pools in an NKS cluster
48
+ *
49
+ * @example
50
+ * ```ts
51
+ * // Automatically fetches more pages as needed.
52
+ * for await (const nksNodePool of client.nks.clusters.pools.list(
53
+ * 'cluster_id',
54
+ * )) {
55
+ * // ...
56
+ * }
57
+ * ```
58
+ */
59
+ list(clusterID: string, query?: PoolListParams | null | undefined, options?: RequestOptions): PagePromise<NKSNodePoolsCursor, NKSNodePool>;
60
+ /**
61
+ * Delete an NKS node pool
62
+ *
63
+ * @example
64
+ * ```ts
65
+ * const operation = await client.nks.clusters.pools.delete(
66
+ * 'pool_id',
67
+ * { cluster_id: 'cluster_id' },
68
+ * );
69
+ * ```
70
+ */
71
+ delete(poolID: string, params: PoolDeleteParams, options?: RequestOptions): APIPromise<OperationsAPI.Operation>;
72
+ /**
73
+ * Get details about an NKS node pool
74
+ *
75
+ * @example
76
+ * ```ts
77
+ * const nksNodePool = await client.nks.clusters.pools.get(
78
+ * 'pool_id',
79
+ * { cluster_id: 'cluster_id' },
80
+ * );
81
+ * ```
82
+ */
83
+ get(poolID: string, params: PoolGetParams, options?: RequestOptions): APIPromise<NKSNodePool>;
84
+ }
85
+ export type NKSNodePoolsCursor = Cursor<NKSNodePool>;
86
+ /**
87
+ * Node configuration.
88
+ */
89
+ export interface NKSNodeConfig {
90
+ /**
91
+ * RAM size in GiB per node.
92
+ */
93
+ ram_gi: number;
94
+ /**
95
+ * Storage size in GiB per node.
96
+ */
97
+ storage_gi: number;
98
+ /**
99
+ * Number of virtual CPUs per node.
100
+ */
101
+ vcpu: number;
102
+ }
103
+ /**
104
+ * NKS node pool details.
105
+ */
106
+ export interface NKSNodePool {
107
+ /**
108
+ * Unique identifier for the node pool.
109
+ */
110
+ id: string;
111
+ /**
112
+ * ID of the Cluster this node pool belongs to.
113
+ */
114
+ cluster_id: string;
115
+ /**
116
+ * When the node pool was created.
117
+ */
118
+ created_at: string;
119
+ /**
120
+ * Name of the node pool.
121
+ */
122
+ name: string;
123
+ /**
124
+ * Node configuration.
125
+ */
126
+ node_config: NKSNodePool.NodeConfig;
127
+ /**
128
+ * Number of nodes.
129
+ */
130
+ node_count: number;
131
+ /**
132
+ * Status of the resource.
133
+ */
134
+ status: Shared.ResourceStatus;
135
+ /**
136
+ * Tags attached to the node pool.
137
+ */
138
+ tags: Array<string>;
139
+ /**
140
+ * When the node pool was last updated.
141
+ */
142
+ updated_at: string;
143
+ }
144
+ export declare namespace NKSNodePool {
145
+ /**
146
+ * Node configuration.
147
+ */
148
+ interface NodeConfig {
149
+ /**
150
+ * RAM size in GiB per node.
151
+ */
152
+ ram_gi: number;
153
+ /**
154
+ * Storage size in GiB per node.
155
+ */
156
+ storage_gi: number;
157
+ /**
158
+ * Number of virtual CPUs per node.
159
+ */
160
+ vcpu: number;
161
+ }
162
+ }
163
+ export interface NKSNodePoolList {
164
+ items: Array<NKSNodePool>;
165
+ /**
166
+ * Pagination response details.
167
+ */
168
+ pagination: Shared.Pagination;
169
+ }
170
+ export interface PoolCreateParams {
171
+ /**
172
+ * Name of the node pool.
173
+ */
174
+ name: string;
175
+ /**
176
+ * Node configuration.
177
+ */
178
+ node_config: NKSNodeConfig;
179
+ /**
180
+ * Number of nodes. Must be between 1 and 100.
181
+ */
182
+ node_count: number;
183
+ /**
184
+ * Tags to attach to the node pool.
185
+ */
186
+ tags?: Array<string>;
187
+ }
188
+ export interface PoolUpdateParams {
189
+ /**
190
+ * Path param: Cluster ID
191
+ */
192
+ cluster_id: string;
193
+ /**
194
+ * Body param: Name of the node pool.
195
+ */
196
+ name?: string;
197
+ /**
198
+ * Body param: Tags to attach to the node pool.
199
+ */
200
+ tags?: Array<string>;
201
+ }
202
+ export interface PoolListParams extends CursorParams {
203
+ }
204
+ export interface PoolDeleteParams {
205
+ /**
206
+ * Cluster ID
207
+ */
208
+ cluster_id: string;
209
+ }
210
+ export interface PoolGetParams {
211
+ /**
212
+ * Cluster ID
213
+ */
214
+ cluster_id: string;
215
+ }
216
+ export declare namespace Pools {
217
+ export { type NKSNodeConfig as NKSNodeConfig, type NKSNodePool as NKSNodePool, type NKSNodePoolList as NKSNodePoolList, type NKSNodePoolsCursor as NKSNodePoolsCursor, type PoolCreateParams as PoolCreateParams, type PoolUpdateParams as PoolUpdateParams, type PoolListParams as PoolListParams, type PoolDeleteParams as PoolDeleteParams, type PoolGetParams as PoolGetParams, };
218
+ export { Availability as Availability, type AvailabilityCreateParams as AvailabilityCreateParams, type AvailabilityUpdateParams as AvailabilityUpdateParams, };
219
+ export { Nodes as Nodes, type NKSNode as NKSNode, type NKSNodeList as NKSNodeList, type NKSNodesCursor as NKSNodesCursor, type NodeListParams as NodeListParams, type NodeGetParams as NodeGetParams, };
220
+ }
221
+ //# sourceMappingURL=pools.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"pools.d.mts","sourceRoot":"","sources":["../../../../src/resources/nks/clusters/pools/pools.ts"],"names":[],"mappings":"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"}