@nirvana-labs/nirvana 1.40.1 → 1.42.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.
- package/CHANGELOG.md +22 -0
- package/client.d.mts +1 -0
- package/client.d.mts.map +1 -1
- package/client.d.ts +1 -0
- package/client.d.ts.map +1 -1
- package/client.js +8 -1
- package/client.js.map +1 -1
- package/client.mjs +8 -1
- package/client.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/compute/vms/availability.d.mts +4 -0
- package/resources/compute/vms/availability.d.mts.map +1 -1
- package/resources/compute/vms/availability.d.ts +4 -0
- package/resources/compute/vms/availability.d.ts.map +1 -1
- package/resources/compute/vms/vms.d.mts +12 -0
- package/resources/compute/vms/vms.d.mts.map +1 -1
- package/resources/compute/vms/vms.d.ts +12 -0
- package/resources/compute/vms/vms.d.ts.map +1 -1
- package/resources/compute/vms/vms.js.map +1 -1
- package/resources/compute/vms/vms.mjs.map +1 -1
- package/resources/compute/volumes/availability.d.mts +4 -0
- package/resources/compute/volumes/availability.d.mts.map +1 -1
- package/resources/compute/volumes/availability.d.ts +4 -0
- package/resources/compute/volumes/availability.d.ts.map +1 -1
- package/resources/compute/volumes/volumes.d.mts +12 -0
- package/resources/compute/volumes/volumes.d.mts.map +1 -1
- package/resources/compute/volumes/volumes.d.ts +12 -0
- package/resources/compute/volumes/volumes.d.ts.map +1 -1
- package/resources/compute/volumes/volumes.js.map +1 -1
- package/resources/compute/volumes/volumes.mjs.map +1 -1
- package/resources/networking/connect/connect.d.mts +4 -0
- package/resources/networking/connect/connect.d.mts.map +1 -1
- package/resources/networking/connect/connect.d.ts +4 -0
- package/resources/networking/connect/connect.d.ts.map +1 -1
- package/resources/networking/connect/connect.js.map +1 -1
- package/resources/networking/connect/connect.mjs.map +1 -1
- package/resources/networking/connect/connections.d.mts +8 -0
- package/resources/networking/connect/connections.d.mts.map +1 -1
- package/resources/networking/connect/connections.d.ts +8 -0
- package/resources/networking/connect/connections.d.ts.map +1 -1
- package/resources/networking/vpcs/availability.d.mts +4 -0
- package/resources/networking/vpcs/availability.d.mts.map +1 -1
- package/resources/networking/vpcs/availability.d.ts +4 -0
- package/resources/networking/vpcs/availability.d.ts.map +1 -1
- package/resources/networking/vpcs/vpcs.d.mts +12 -0
- package/resources/networking/vpcs/vpcs.d.mts.map +1 -1
- package/resources/networking/vpcs/vpcs.d.ts +12 -0
- package/resources/networking/vpcs/vpcs.d.ts.map +1 -1
- package/resources/networking/vpcs/vpcs.js.map +1 -1
- package/resources/networking/vpcs/vpcs.mjs.map +1 -1
- package/resources/operations.d.mts +8 -0
- package/resources/operations.d.mts.map +1 -1
- package/resources/operations.d.ts +8 -0
- package/resources/operations.d.ts.map +1 -1
- package/resources/rpc-nodes/flex/flex.d.mts +1 -1
- package/resources/rpc-nodes/flex/flex.d.mts.map +1 -1
- package/resources/rpc-nodes/flex/flex.d.ts +1 -1
- package/resources/rpc-nodes/flex/flex.d.ts.map +1 -1
- package/src/client.ts +8 -1
- package/src/resources/compute/vms/availability.ts +5 -0
- package/src/resources/compute/vms/vms.ts +16 -1
- package/src/resources/compute/volumes/availability.ts +5 -0
- package/src/resources/compute/volumes/volumes.ts +16 -1
- package/src/resources/networking/connect/connect.ts +5 -0
- package/src/resources/networking/connect/connections.ts +11 -1
- package/src/resources/networking/vpcs/availability.ts +5 -0
- package/src/resources/networking/vpcs/vpcs.ts +16 -1
- package/src/resources/operations.ts +11 -1
- package/src/resources/rpc-nodes/flex/flex.ts +1 -1
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -160,6 +160,11 @@ export interface Volume {
|
|
|
160
160
|
*/
|
|
161
161
|
name: string;
|
|
162
162
|
|
|
163
|
+
/**
|
|
164
|
+
* Project ID the Volume belongs to.
|
|
165
|
+
*/
|
|
166
|
+
project_id: string;
|
|
167
|
+
|
|
163
168
|
/**
|
|
164
169
|
* Region the resource is in.
|
|
165
170
|
*/
|
|
@@ -241,6 +246,11 @@ export interface VolumeCreateParams {
|
|
|
241
246
|
*/
|
|
242
247
|
type: VolumeType;
|
|
243
248
|
|
|
249
|
+
/**
|
|
250
|
+
* Project ID the Volume belongs to.
|
|
251
|
+
*/
|
|
252
|
+
project_id?: string;
|
|
253
|
+
|
|
244
254
|
/**
|
|
245
255
|
* Tags to attach to the Volume.
|
|
246
256
|
*/
|
|
@@ -269,7 +279,12 @@ export interface VolumeUpdateParams {
|
|
|
269
279
|
tags?: Array<string>;
|
|
270
280
|
}
|
|
271
281
|
|
|
272
|
-
export interface VolumeListParams extends CursorParams {
|
|
282
|
+
export interface VolumeListParams extends CursorParams {
|
|
283
|
+
/**
|
|
284
|
+
* Project ID of resources to request
|
|
285
|
+
*/
|
|
286
|
+
project_id?: string;
|
|
287
|
+
}
|
|
273
288
|
|
|
274
289
|
export interface VolumeAttachParams {
|
|
275
290
|
/**
|
|
@@ -133,6 +133,11 @@ export interface ConnectionCreateParams {
|
|
|
133
133
|
*/
|
|
134
134
|
aws?: ConnectAPI.ConnectConnectionAWSConfigRequest;
|
|
135
135
|
|
|
136
|
+
/**
|
|
137
|
+
* Project ID the Connect Connection belongs to
|
|
138
|
+
*/
|
|
139
|
+
project_id?: string;
|
|
140
|
+
|
|
136
141
|
/**
|
|
137
142
|
* Tags to attach to the Connect Connection
|
|
138
143
|
*/
|
|
@@ -151,7 +156,12 @@ export interface ConnectionUpdateParams {
|
|
|
151
156
|
tags?: Array<string>;
|
|
152
157
|
}
|
|
153
158
|
|
|
154
|
-
export interface ConnectionListParams extends CursorParams {
|
|
159
|
+
export interface ConnectionListParams extends CursorParams {
|
|
160
|
+
/**
|
|
161
|
+
* Project ID of resources to request
|
|
162
|
+
*/
|
|
163
|
+
project_id?: string;
|
|
164
|
+
}
|
|
155
165
|
|
|
156
166
|
export declare namespace Connections {
|
|
157
167
|
export {
|
|
@@ -151,6 +151,11 @@ export interface VPC {
|
|
|
151
151
|
*/
|
|
152
152
|
name: string;
|
|
153
153
|
|
|
154
|
+
/**
|
|
155
|
+
* Project ID the VPC belongs to.
|
|
156
|
+
*/
|
|
157
|
+
project_id: string;
|
|
158
|
+
|
|
154
159
|
/**
|
|
155
160
|
* Region the resource is in.
|
|
156
161
|
*/
|
|
@@ -202,6 +207,11 @@ export interface VPCCreateParams {
|
|
|
202
207
|
*/
|
|
203
208
|
subnet_name: string;
|
|
204
209
|
|
|
210
|
+
/**
|
|
211
|
+
* Project ID the VPC belongs to.
|
|
212
|
+
*/
|
|
213
|
+
project_id?: string;
|
|
214
|
+
|
|
205
215
|
/**
|
|
206
216
|
* Tags to attach to the VPC.
|
|
207
217
|
*/
|
|
@@ -225,7 +235,12 @@ export interface VPCUpdateParams {
|
|
|
225
235
|
tags?: Array<string>;
|
|
226
236
|
}
|
|
227
237
|
|
|
228
|
-
export interface VPCListParams extends CursorParams {
|
|
238
|
+
export interface VPCListParams extends CursorParams {
|
|
239
|
+
/**
|
|
240
|
+
* Project ID of resources to request
|
|
241
|
+
*/
|
|
242
|
+
project_id?: string;
|
|
243
|
+
}
|
|
229
244
|
|
|
230
245
|
VPCs.Availability = Availability;
|
|
231
246
|
|
|
@@ -66,6 +66,11 @@ export interface Operation {
|
|
|
66
66
|
* When the Operation was updated.
|
|
67
67
|
*/
|
|
68
68
|
updated_at: string;
|
|
69
|
+
|
|
70
|
+
/**
|
|
71
|
+
* Project ID the Operation belongs to.
|
|
72
|
+
*/
|
|
73
|
+
project_id?: string;
|
|
69
74
|
}
|
|
70
75
|
|
|
71
76
|
/**
|
|
@@ -92,7 +97,12 @@ export type OperationStatus = 'pending' | 'running' | 'done' | 'failed' | 'unkno
|
|
|
92
97
|
*/
|
|
93
98
|
export type OperationType = 'create' | 'update' | 'delete' | 'restart';
|
|
94
99
|
|
|
95
|
-
export interface OperationListParams extends CursorParams {
|
|
100
|
+
export interface OperationListParams extends CursorParams {
|
|
101
|
+
/**
|
|
102
|
+
* Project ID of resources to request
|
|
103
|
+
*/
|
|
104
|
+
project_id?: string;
|
|
105
|
+
}
|
|
96
106
|
|
|
97
107
|
export declare namespace Operations {
|
|
98
108
|
export {
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '1.
|
|
1
|
+
export const VERSION = '1.42.0'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "1.
|
|
1
|
+
export declare const VERSION = "1.42.0";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "1.
|
|
1
|
+
export declare const VERSION = "1.42.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '1.
|
|
1
|
+
export const VERSION = '1.42.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|