@nirvana-labs/nirvana-mcp 1.91.1 → 1.91.2

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 (46) hide show
  1. package/code-tool.d.mts.map +1 -1
  2. package/code-tool.d.ts.map +1 -1
  3. package/code-tool.js +2 -53
  4. package/code-tool.js.map +1 -1
  5. package/code-tool.mjs +3 -54
  6. package/code-tool.mjs.map +1 -1
  7. package/docs-search-tool.d.mts.map +1 -1
  8. package/docs-search-tool.d.ts.map +1 -1
  9. package/docs-search-tool.js +1 -41
  10. package/docs-search-tool.js.map +1 -1
  11. package/docs-search-tool.mjs +1 -41
  12. package/docs-search-tool.mjs.map +1 -1
  13. package/instructions.d.mts.map +1 -1
  14. package/instructions.d.ts.map +1 -1
  15. package/instructions.js +2 -18
  16. package/instructions.js.map +1 -1
  17. package/instructions.mjs +2 -18
  18. package/instructions.mjs.map +1 -1
  19. package/local-docs-search.js +339 -339
  20. package/local-docs-search.js.map +1 -1
  21. package/local-docs-search.mjs +339 -339
  22. package/local-docs-search.mjs.map +1 -1
  23. package/methods.js +177 -177
  24. package/methods.js.map +1 -1
  25. package/methods.mjs +177 -177
  26. package/methods.mjs.map +1 -1
  27. package/options.d.mts +2 -2
  28. package/options.d.mts.map +1 -1
  29. package/options.d.ts +2 -2
  30. package/options.d.ts.map +1 -1
  31. package/options.js +6 -6
  32. package/options.js.map +1 -1
  33. package/options.mjs +6 -6
  34. package/options.mjs.map +1 -1
  35. package/package.json +2 -2
  36. package/server.js +1 -1
  37. package/server.js.map +1 -1
  38. package/server.mjs +1 -1
  39. package/server.mjs.map +1 -1
  40. package/src/code-tool.ts +4 -83
  41. package/src/docs-search-tool.ts +2 -61
  42. package/src/instructions.ts +2 -28
  43. package/src/local-docs-search.ts +450 -450
  44. package/src/methods.ts +177 -177
  45. package/src/options.ts +9 -9
  46. package/src/server.ts +1 -1
package/src/methods.ts CHANGED
@@ -16,36 +16,36 @@ export const sdkMethods: SdkMethod[] = [
16
16
  httpMethod: 'get',
17
17
  httpPath: '/v1/user',
18
18
  },
19
- {
20
- clientCallName: 'client.user.security.update',
21
- fullyQualifiedName: 'user.security.update',
22
- httpMethod: 'patch',
23
- httpPath: '/v1/user/security',
24
- },
25
19
  {
26
20
  clientCallName: 'client.user.security.get',
27
21
  fullyQualifiedName: 'user.security.get',
28
22
  httpMethod: 'get',
29
23
  httpPath: '/v1/user/security',
30
24
  },
25
+ {
26
+ clientCallName: 'client.user.security.update',
27
+ fullyQualifiedName: 'user.security.update',
28
+ httpMethod: 'patch',
29
+ httpPath: '/v1/user/security',
30
+ },
31
31
  {
32
32
  clientCallName: 'client.apiKeys.create',
33
33
  fullyQualifiedName: 'apiKeys.create',
34
34
  httpMethod: 'post',
35
35
  httpPath: '/v1/api_keys',
36
36
  },
37
+ {
38
+ clientCallName: 'client.apiKeys.get',
39
+ fullyQualifiedName: 'apiKeys.get',
40
+ httpMethod: 'get',
41
+ httpPath: '/v1/api_keys/{api_key_id}',
42
+ },
37
43
  {
38
44
  clientCallName: 'client.apiKeys.update',
39
45
  fullyQualifiedName: 'apiKeys.update',
40
46
  httpMethod: 'patch',
41
47
  httpPath: '/v1/api_keys/{api_key_id}',
42
48
  },
43
- {
44
- clientCallName: 'client.apiKeys.list',
45
- fullyQualifiedName: 'apiKeys.list',
46
- httpMethod: 'get',
47
- httpPath: '/v1/api_keys',
48
- },
49
49
  {
50
50
  clientCallName: 'client.apiKeys.delete',
51
51
  fullyQualifiedName: 'apiKeys.delete',
@@ -53,16 +53,10 @@ export const sdkMethods: SdkMethod[] = [
53
53
  httpPath: '/v1/api_keys/{api_key_id}',
54
54
  },
55
55
  {
56
- clientCallName: 'client.apiKeys.get',
57
- fullyQualifiedName: 'apiKeys.get',
58
- httpMethod: 'get',
59
- httpPath: '/v1/api_keys/{api_key_id}',
60
- },
61
- {
62
- clientCallName: 'client.operations.list',
63
- fullyQualifiedName: 'operations.list',
56
+ clientCallName: 'client.apiKeys.list',
57
+ fullyQualifiedName: 'apiKeys.list',
64
58
  httpMethod: 'get',
65
- httpPath: '/v1/operations',
59
+ httpPath: '/v1/api_keys',
66
60
  },
67
61
  {
68
62
  clientCallName: 'client.operations.get',
@@ -70,12 +64,24 @@ export const sdkMethods: SdkMethod[] = [
70
64
  httpMethod: 'get',
71
65
  httpPath: '/v1/operations/{operation_id}',
72
66
  },
67
+ {
68
+ clientCallName: 'client.operations.list',
69
+ fullyQualifiedName: 'operations.list',
70
+ httpMethod: 'get',
71
+ httpPath: '/v1/operations',
72
+ },
73
73
  {
74
74
  clientCallName: 'client.organizations.create',
75
75
  fullyQualifiedName: 'organizations.create',
76
76
  httpMethod: 'post',
77
77
  httpPath: '/v1/organizations',
78
78
  },
79
+ {
80
+ clientCallName: 'client.organizations.get',
81
+ fullyQualifiedName: 'organizations.get',
82
+ httpMethod: 'get',
83
+ httpPath: '/v1/organizations/{organization_id}',
84
+ },
79
85
  {
80
86
  clientCallName: 'client.organizations.update',
81
87
  fullyQualifiedName: 'organizations.update',
@@ -88,36 +94,36 @@ export const sdkMethods: SdkMethod[] = [
88
94
  httpMethod: 'get',
89
95
  httpPath: '/v1/organizations',
90
96
  },
91
- {
92
- clientCallName: 'client.organizations.get',
93
- fullyQualifiedName: 'organizations.get',
94
- httpMethod: 'get',
95
- httpPath: '/v1/organizations/{organization_id}',
96
- },
97
97
  {
98
98
  clientCallName: 'client.organizations.leave',
99
99
  fullyQualifiedName: 'organizations.leave',
100
100
  httpMethod: 'post',
101
101
  httpPath: '/v1/organizations/{organization_id}/leave',
102
102
  },
103
- {
104
- clientCallName: 'client.organizations.memberships.list',
105
- fullyQualifiedName: 'organizations.memberships.list',
106
- httpMethod: 'get',
107
- httpPath: '/v1/organizations/{organization_id}/memberships',
108
- },
109
103
  {
110
104
  clientCallName: 'client.organizations.memberships.get',
111
105
  fullyQualifiedName: 'organizations.memberships.get',
112
106
  httpMethod: 'get',
113
107
  httpPath: '/v1/organizations/{organization_id}/memberships/{membership_id}',
114
108
  },
109
+ {
110
+ clientCallName: 'client.organizations.memberships.list',
111
+ fullyQualifiedName: 'organizations.memberships.list',
112
+ httpMethod: 'get',
113
+ httpPath: '/v1/organizations/{organization_id}/memberships',
114
+ },
115
115
  {
116
116
  clientCallName: 'client.organizations.address.create',
117
117
  fullyQualifiedName: 'organizations.address.create',
118
118
  httpMethod: 'post',
119
119
  httpPath: '/v1/organizations/{organization_id}/address',
120
120
  },
121
+ {
122
+ clientCallName: 'client.organizations.address.get',
123
+ fullyQualifiedName: 'organizations.address.get',
124
+ httpMethod: 'get',
125
+ httpPath: '/v1/organizations/{organization_id}/address',
126
+ },
121
127
  {
122
128
  clientCallName: 'client.organizations.address.update',
123
129
  fullyQualifiedName: 'organizations.address.update',
@@ -125,10 +131,10 @@ export const sdkMethods: SdkMethod[] = [
125
131
  httpPath: '/v1/organizations/{organization_id}/address',
126
132
  },
127
133
  {
128
- clientCallName: 'client.organizations.address.get',
129
- fullyQualifiedName: 'organizations.address.get',
134
+ clientCallName: 'client.quotas.get',
135
+ fullyQualifiedName: 'quotas.get',
130
136
  httpMethod: 'get',
131
- httpPath: '/v1/organizations/{organization_id}/address',
137
+ httpPath: '/v1/quotas/{region}',
132
138
  },
133
139
  {
134
140
  clientCallName: 'client.quotas.list',
@@ -137,10 +143,10 @@ export const sdkMethods: SdkMethod[] = [
137
143
  httpPath: '/v1/quotas',
138
144
  },
139
145
  {
140
- clientCallName: 'client.quotas.get',
141
- fullyQualifiedName: 'quotas.get',
146
+ clientCallName: 'client.usage.get',
147
+ fullyQualifiedName: 'usage.get',
142
148
  httpMethod: 'get',
143
- httpPath: '/v1/quotas/{region}',
149
+ httpPath: '/v1/usage/{resource_id}',
144
150
  },
145
151
  {
146
152
  clientCallName: 'client.usage.list',
@@ -149,10 +155,10 @@ export const sdkMethods: SdkMethod[] = [
149
155
  httpPath: '/v1/usage',
150
156
  },
151
157
  {
152
- clientCallName: 'client.usage.get',
153
- fullyQualifiedName: 'usage.get',
158
+ clientCallName: 'client.auditLogs.get',
159
+ fullyQualifiedName: 'auditLogs.get',
154
160
  httpMethod: 'get',
155
- httpPath: '/v1/usage/{resource_id}',
161
+ httpPath: '/v1/audit_logs/{audit_log_id}',
156
162
  },
157
163
  {
158
164
  clientCallName: 'client.auditLogs.list',
@@ -160,30 +166,24 @@ export const sdkMethods: SdkMethod[] = [
160
166
  httpMethod: 'get',
161
167
  httpPath: '/v1/audit_logs',
162
168
  },
163
- {
164
- clientCallName: 'client.auditLogs.get',
165
- fullyQualifiedName: 'auditLogs.get',
166
- httpMethod: 'get',
167
- httpPath: '/v1/audit_logs/{audit_log_id}',
168
- },
169
169
  {
170
170
  clientCallName: 'client.projects.create',
171
171
  fullyQualifiedName: 'projects.create',
172
172
  httpMethod: 'post',
173
173
  httpPath: '/v1/projects',
174
174
  },
175
+ {
176
+ clientCallName: 'client.projects.get',
177
+ fullyQualifiedName: 'projects.get',
178
+ httpMethod: 'get',
179
+ httpPath: '/v1/projects/{project_id}',
180
+ },
175
181
  {
176
182
  clientCallName: 'client.projects.update',
177
183
  fullyQualifiedName: 'projects.update',
178
184
  httpMethod: 'patch',
179
185
  httpPath: '/v1/projects/{project_id}',
180
186
  },
181
- {
182
- clientCallName: 'client.projects.list',
183
- fullyQualifiedName: 'projects.list',
184
- httpMethod: 'get',
185
- httpPath: '/v1/projects',
186
- },
187
187
  {
188
188
  clientCallName: 'client.projects.delete',
189
189
  fullyQualifiedName: 'projects.delete',
@@ -191,16 +191,10 @@ export const sdkMethods: SdkMethod[] = [
191
191
  httpPath: '/v1/projects/{project_id}',
192
192
  },
193
193
  {
194
- clientCallName: 'client.projects.get',
195
- fullyQualifiedName: 'projects.get',
196
- httpMethod: 'get',
197
- httpPath: '/v1/projects/{project_id}',
198
- },
199
- {
200
- clientCallName: 'client.regions.list',
201
- fullyQualifiedName: 'regions.list',
194
+ clientCallName: 'client.projects.list',
195
+ fullyQualifiedName: 'projects.list',
202
196
  httpMethod: 'get',
203
- httpPath: '/v1/regions',
197
+ httpPath: '/v1/projects',
204
198
  },
205
199
  {
206
200
  clientCallName: 'client.regions.get',
@@ -209,10 +203,10 @@ export const sdkMethods: SdkMethod[] = [
209
203
  httpPath: '/v1/regions/{name}',
210
204
  },
211
205
  {
212
- clientCallName: 'client.instanceTypes.list',
213
- fullyQualifiedName: 'instanceTypes.list',
206
+ clientCallName: 'client.regions.list',
207
+ fullyQualifiedName: 'regions.list',
214
208
  httpMethod: 'get',
215
- httpPath: '/v1/instance_types',
209
+ httpPath: '/v1/regions',
216
210
  },
217
211
  {
218
212
  clientCallName: 'client.instanceTypes.get',
@@ -220,24 +214,30 @@ export const sdkMethods: SdkMethod[] = [
220
214
  httpMethod: 'get',
221
215
  httpPath: '/v1/instance_types/{region}/{name}',
222
216
  },
217
+ {
218
+ clientCallName: 'client.instanceTypes.list',
219
+ fullyQualifiedName: 'instanceTypes.list',
220
+ httpMethod: 'get',
221
+ httpPath: '/v1/instance_types',
222
+ },
223
223
  {
224
224
  clientCallName: 'client.compute.vms.create',
225
225
  fullyQualifiedName: 'compute.vms.create',
226
226
  httpMethod: 'post',
227
227
  httpPath: '/v1/compute/vms',
228
228
  },
229
+ {
230
+ clientCallName: 'client.compute.vms.get',
231
+ fullyQualifiedName: 'compute.vms.get',
232
+ httpMethod: 'get',
233
+ httpPath: '/v1/compute/vms/{vm_id}',
234
+ },
229
235
  {
230
236
  clientCallName: 'client.compute.vms.update',
231
237
  fullyQualifiedName: 'compute.vms.update',
232
238
  httpMethod: 'patch',
233
239
  httpPath: '/v1/compute/vms/{vm_id}',
234
240
  },
235
- {
236
- clientCallName: 'client.compute.vms.list',
237
- fullyQualifiedName: 'compute.vms.list',
238
- httpMethod: 'get',
239
- httpPath: '/v1/compute/vms',
240
- },
241
241
  {
242
242
  clientCallName: 'client.compute.vms.delete',
243
243
  fullyQualifiedName: 'compute.vms.delete',
@@ -245,10 +245,10 @@ export const sdkMethods: SdkMethod[] = [
245
245
  httpPath: '/v1/compute/vms/{vm_id}',
246
246
  },
247
247
  {
248
- clientCallName: 'client.compute.vms.get',
249
- fullyQualifiedName: 'compute.vms.get',
248
+ clientCallName: 'client.compute.vms.list',
249
+ fullyQualifiedName: 'compute.vms.list',
250
250
  httpMethod: 'get',
251
- httpPath: '/v1/compute/vms/{vm_id}',
251
+ httpPath: '/v1/compute/vms',
252
252
  },
253
253
  {
254
254
  clientCallName: 'client.compute.vms.restart',
@@ -286,24 +286,30 @@ export const sdkMethods: SdkMethod[] = [
286
286
  httpMethod: 'post',
287
287
  httpPath: '/v1/compute/volumes',
288
288
  },
289
+ {
290
+ clientCallName: 'client.compute.volumes.get',
291
+ fullyQualifiedName: 'compute.volumes.get',
292
+ httpMethod: 'get',
293
+ httpPath: '/v1/compute/volumes/{volume_id}',
294
+ },
289
295
  {
290
296
  clientCallName: 'client.compute.volumes.update',
291
297
  fullyQualifiedName: 'compute.volumes.update',
292
298
  httpMethod: 'patch',
293
299
  httpPath: '/v1/compute/volumes/{volume_id}',
294
300
  },
295
- {
296
- clientCallName: 'client.compute.volumes.list',
297
- fullyQualifiedName: 'compute.volumes.list',
298
- httpMethod: 'get',
299
- httpPath: '/v1/compute/volumes',
300
- },
301
301
  {
302
302
  clientCallName: 'client.compute.volumes.delete',
303
303
  fullyQualifiedName: 'compute.volumes.delete',
304
304
  httpMethod: 'delete',
305
305
  httpPath: '/v1/compute/volumes/{volume_id}',
306
306
  },
307
+ {
308
+ clientCallName: 'client.compute.volumes.list',
309
+ fullyQualifiedName: 'compute.volumes.list',
310
+ httpMethod: 'get',
311
+ httpPath: '/v1/compute/volumes',
312
+ },
307
313
  {
308
314
  clientCallName: 'client.compute.volumes.attach',
309
315
  fullyQualifiedName: 'compute.volumes.attach',
@@ -316,12 +322,6 @@ export const sdkMethods: SdkMethod[] = [
316
322
  httpMethod: 'post',
317
323
  httpPath: '/v1/compute/volumes/{volume_id}/detach',
318
324
  },
319
- {
320
- clientCallName: 'client.compute.volumes.get',
321
- fullyQualifiedName: 'compute.volumes.get',
322
- httpMethod: 'get',
323
- httpPath: '/v1/compute/volumes/{volume_id}',
324
- },
325
325
  {
326
326
  clientCallName: 'client.compute.volumes.availability.create',
327
327
  fullyQualifiedName: 'compute.volumes.availability.create',
@@ -340,18 +340,18 @@ export const sdkMethods: SdkMethod[] = [
340
340
  httpMethod: 'post',
341
341
  httpPath: '/v1/networking/vpcs',
342
342
  },
343
+ {
344
+ clientCallName: 'client.networking.vpcs.get',
345
+ fullyQualifiedName: 'networking.vpcs.get',
346
+ httpMethod: 'get',
347
+ httpPath: '/v1/networking/vpcs/{vpc_id}',
348
+ },
343
349
  {
344
350
  clientCallName: 'client.networking.vpcs.update',
345
351
  fullyQualifiedName: 'networking.vpcs.update',
346
352
  httpMethod: 'patch',
347
353
  httpPath: '/v1/networking/vpcs/{vpc_id}',
348
354
  },
349
- {
350
- clientCallName: 'client.networking.vpcs.list',
351
- fullyQualifiedName: 'networking.vpcs.list',
352
- httpMethod: 'get',
353
- httpPath: '/v1/networking/vpcs',
354
- },
355
355
  {
356
356
  clientCallName: 'client.networking.vpcs.delete',
357
357
  fullyQualifiedName: 'networking.vpcs.delete',
@@ -359,10 +359,10 @@ export const sdkMethods: SdkMethod[] = [
359
359
  httpPath: '/v1/networking/vpcs/{vpc_id}',
360
360
  },
361
361
  {
362
- clientCallName: 'client.networking.vpcs.get',
363
- fullyQualifiedName: 'networking.vpcs.get',
362
+ clientCallName: 'client.networking.vpcs.list',
363
+ fullyQualifiedName: 'networking.vpcs.list',
364
364
  httpMethod: 'get',
365
- httpPath: '/v1/networking/vpcs/{vpc_id}',
365
+ httpPath: '/v1/networking/vpcs',
366
366
  },
367
367
  {
368
368
  clientCallName: 'client.networking.vpcs.availability.create',
@@ -382,18 +382,18 @@ export const sdkMethods: SdkMethod[] = [
382
382
  httpMethod: 'post',
383
383
  httpPath: '/v1/networking/vpcs/{vpc_id}/firewall_rules',
384
384
  },
385
+ {
386
+ clientCallName: 'client.networking.firewallRules.get',
387
+ fullyQualifiedName: 'networking.firewallRules.get',
388
+ httpMethod: 'get',
389
+ httpPath: '/v1/networking/vpcs/{vpc_id}/firewall_rules/{firewall_rule_id}',
390
+ },
385
391
  {
386
392
  clientCallName: 'client.networking.firewallRules.update',
387
393
  fullyQualifiedName: 'networking.firewallRules.update',
388
394
  httpMethod: 'patch',
389
395
  httpPath: '/v1/networking/vpcs/{vpc_id}/firewall_rules/{firewall_rule_id}',
390
396
  },
391
- {
392
- clientCallName: 'client.networking.firewallRules.list',
393
- fullyQualifiedName: 'networking.firewallRules.list',
394
- httpMethod: 'get',
395
- httpPath: '/v1/networking/vpcs/{vpc_id}/firewall_rules',
396
- },
397
397
  {
398
398
  clientCallName: 'client.networking.firewallRules.delete',
399
399
  fullyQualifiedName: 'networking.firewallRules.delete',
@@ -401,10 +401,10 @@ export const sdkMethods: SdkMethod[] = [
401
401
  httpPath: '/v1/networking/vpcs/{vpc_id}/firewall_rules/{firewall_rule_id}',
402
402
  },
403
403
  {
404
- clientCallName: 'client.networking.firewallRules.get',
405
- fullyQualifiedName: 'networking.firewallRules.get',
404
+ clientCallName: 'client.networking.firewallRules.list',
405
+ fullyQualifiedName: 'networking.firewallRules.list',
406
406
  httpMethod: 'get',
407
- httpPath: '/v1/networking/vpcs/{vpc_id}/firewall_rules/{firewall_rule_id}',
407
+ httpPath: '/v1/networking/vpcs/{vpc_id}/firewall_rules',
408
408
  },
409
409
  {
410
410
  clientCallName: 'client.networking.connect.connections.create',
@@ -412,18 +412,18 @@ export const sdkMethods: SdkMethod[] = [
412
412
  httpMethod: 'post',
413
413
  httpPath: '/v1/networking/connect/connections',
414
414
  },
415
+ {
416
+ clientCallName: 'client.networking.connect.connections.get',
417
+ fullyQualifiedName: 'networking.connect.connections.get',
418
+ httpMethod: 'get',
419
+ httpPath: '/v1/networking/connect/connections/{connection_id}',
420
+ },
415
421
  {
416
422
  clientCallName: 'client.networking.connect.connections.update',
417
423
  fullyQualifiedName: 'networking.connect.connections.update',
418
424
  httpMethod: 'patch',
419
425
  httpPath: '/v1/networking/connect/connections/{connection_id}',
420
426
  },
421
- {
422
- clientCallName: 'client.networking.connect.connections.list',
423
- fullyQualifiedName: 'networking.connect.connections.list',
424
- httpMethod: 'get',
425
- httpPath: '/v1/networking/connect/connections',
426
- },
427
427
  {
428
428
  clientCallName: 'client.networking.connect.connections.delete',
429
429
  fullyQualifiedName: 'networking.connect.connections.delete',
@@ -431,10 +431,10 @@ export const sdkMethods: SdkMethod[] = [
431
431
  httpPath: '/v1/networking/connect/connections/{connection_id}',
432
432
  },
433
433
  {
434
- clientCallName: 'client.networking.connect.connections.get',
435
- fullyQualifiedName: 'networking.connect.connections.get',
434
+ clientCallName: 'client.networking.connect.connections.list',
435
+ fullyQualifiedName: 'networking.connect.connections.list',
436
436
  httpMethod: 'get',
437
- httpPath: '/v1/networking/connect/connections/{connection_id}',
437
+ httpPath: '/v1/networking/connect/connections',
438
438
  },
439
439
  {
440
440
  clientCallName: 'client.networking.connect.routes.list',
@@ -448,18 +448,18 @@ export const sdkMethods: SdkMethod[] = [
448
448
  httpMethod: 'post',
449
449
  httpPath: '/v1/rpc_nodes/flex',
450
450
  },
451
+ {
452
+ clientCallName: 'client.rpcNodes.flex.get',
453
+ fullyQualifiedName: 'rpcNodes.flex.get',
454
+ httpMethod: 'get',
455
+ httpPath: '/v1/rpc_nodes/flex/{node_id}',
456
+ },
451
457
  {
452
458
  clientCallName: 'client.rpcNodes.flex.update',
453
459
  fullyQualifiedName: 'rpcNodes.flex.update',
454
460
  httpMethod: 'patch',
455
461
  httpPath: '/v1/rpc_nodes/flex/{node_id}',
456
462
  },
457
- {
458
- clientCallName: 'client.rpcNodes.flex.list',
459
- fullyQualifiedName: 'rpcNodes.flex.list',
460
- httpMethod: 'get',
461
- httpPath: '/v1/rpc_nodes/flex',
462
- },
463
463
  {
464
464
  clientCallName: 'client.rpcNodes.flex.delete',
465
465
  fullyQualifiedName: 'rpcNodes.flex.delete',
@@ -467,10 +467,10 @@ export const sdkMethods: SdkMethod[] = [
467
467
  httpPath: '/v1/rpc_nodes/flex/{node_id}',
468
468
  },
469
469
  {
470
- clientCallName: 'client.rpcNodes.flex.get',
471
- fullyQualifiedName: 'rpcNodes.flex.get',
470
+ clientCallName: 'client.rpcNodes.flex.list',
471
+ fullyQualifiedName: 'rpcNodes.flex.list',
472
472
  httpMethod: 'get',
473
- httpPath: '/v1/rpc_nodes/flex/{node_id}',
473
+ httpPath: '/v1/rpc_nodes/flex',
474
474
  },
475
475
  {
476
476
  clientCallName: 'client.rpcNodes.flex.blockchains.list',
@@ -478,18 +478,18 @@ export const sdkMethods: SdkMethod[] = [
478
478
  httpMethod: 'get',
479
479
  httpPath: '/v1/rpc_nodes/flex/blockchains',
480
480
  },
481
- {
482
- clientCallName: 'client.rpcNodes.dedicated.list',
483
- fullyQualifiedName: 'rpcNodes.dedicated.list',
484
- httpMethod: 'get',
485
- httpPath: '/v1/rpc_nodes/dedicated',
486
- },
487
481
  {
488
482
  clientCallName: 'client.rpcNodes.dedicated.get',
489
483
  fullyQualifiedName: 'rpcNodes.dedicated.get',
490
484
  httpMethod: 'get',
491
485
  httpPath: '/v1/rpc_nodes/dedicated/{node_id}',
492
486
  },
487
+ {
488
+ clientCallName: 'client.rpcNodes.dedicated.list',
489
+ fullyQualifiedName: 'rpcNodes.dedicated.list',
490
+ httpMethod: 'get',
491
+ httpPath: '/v1/rpc_nodes/dedicated',
492
+ },
493
493
  {
494
494
  clientCallName: 'client.rpcNodes.dedicated.blockchains.list',
495
495
  fullyQualifiedName: 'rpcNodes.dedicated.blockchains.list',
@@ -508,18 +508,18 @@ export const sdkMethods: SdkMethod[] = [
508
508
  httpMethod: 'post',
509
509
  httpPath: '/v1/nks/clusters',
510
510
  },
511
+ {
512
+ clientCallName: 'client.nks.clusters.get',
513
+ fullyQualifiedName: 'nks.clusters.get',
514
+ httpMethod: 'get',
515
+ httpPath: '/v1/nks/clusters/{cluster_id}',
516
+ },
511
517
  {
512
518
  clientCallName: 'client.nks.clusters.update',
513
519
  fullyQualifiedName: 'nks.clusters.update',
514
520
  httpMethod: 'patch',
515
521
  httpPath: '/v1/nks/clusters/{cluster_id}',
516
522
  },
517
- {
518
- clientCallName: 'client.nks.clusters.list',
519
- fullyQualifiedName: 'nks.clusters.list',
520
- httpMethod: 'get',
521
- httpPath: '/v1/nks/clusters',
522
- },
523
523
  {
524
524
  clientCallName: 'client.nks.clusters.delete',
525
525
  fullyQualifiedName: 'nks.clusters.delete',
@@ -527,10 +527,10 @@ export const sdkMethods: SdkMethod[] = [
527
527
  httpPath: '/v1/nks/clusters/{cluster_id}',
528
528
  },
529
529
  {
530
- clientCallName: 'client.nks.clusters.get',
531
- fullyQualifiedName: 'nks.clusters.get',
530
+ clientCallName: 'client.nks.clusters.list',
531
+ fullyQualifiedName: 'nks.clusters.list',
532
532
  httpMethod: 'get',
533
- httpPath: '/v1/nks/clusters/{cluster_id}',
533
+ httpPath: '/v1/nks/clusters',
534
534
  },
535
535
  {
536
536
  clientCallName: 'client.nks.clusters.availability.create',
@@ -544,24 +544,30 @@ export const sdkMethods: SdkMethod[] = [
544
544
  httpMethod: 'patch',
545
545
  httpPath: '/v1/nks/clusters/{cluster_id}/availability',
546
546
  },
547
- {
548
- clientCallName: 'client.nks.clusters.persistentVolumeClaims.list',
549
- fullyQualifiedName: 'nks.clusters.persistentVolumeClaims.list',
550
- httpMethod: 'get',
551
- httpPath: '/v1/nks/clusters/{cluster_id}/persistent_volume_claims',
552
- },
553
547
  {
554
548
  clientCallName: 'client.nks.clusters.persistentVolumeClaims.get',
555
549
  fullyQualifiedName: 'nks.clusters.persistentVolumeClaims.get',
556
550
  httpMethod: 'get',
557
551
  httpPath: '/v1/nks/clusters/{cluster_id}/persistent_volume_claims/{persistent_volume_claim_id}',
558
552
  },
553
+ {
554
+ clientCallName: 'client.nks.clusters.persistentVolumeClaims.list',
555
+ fullyQualifiedName: 'nks.clusters.persistentVolumeClaims.list',
556
+ httpMethod: 'get',
557
+ httpPath: '/v1/nks/clusters/{cluster_id}/persistent_volume_claims',
558
+ },
559
559
  {
560
560
  clientCallName: 'client.nks.clusters.kubeconfig.get',
561
561
  fullyQualifiedName: 'nks.clusters.kubeconfig.get',
562
562
  httpMethod: 'get',
563
563
  httpPath: '/v1/nks/clusters/{cluster_id}/kubeconfig',
564
564
  },
565
+ {
566
+ clientCallName: 'client.nks.clusters.controllers.get',
567
+ fullyQualifiedName: 'nks.clusters.controllers.get',
568
+ httpMethod: 'get',
569
+ httpPath: '/v1/nks/clusters/{cluster_id}/controllers/{controller_id}',
570
+ },
565
571
  {
566
572
  clientCallName: 'client.nks.clusters.controllers.list',
567
573
  fullyQualifiedName: 'nks.clusters.controllers.list',
@@ -569,10 +575,10 @@ export const sdkMethods: SdkMethod[] = [
569
575
  httpPath: '/v1/nks/clusters/{cluster_id}/controllers',
570
576
  },
571
577
  {
572
- clientCallName: 'client.nks.clusters.controllers.get',
573
- fullyQualifiedName: 'nks.clusters.controllers.get',
578
+ clientCallName: 'client.nks.clusters.controllers.volumes.get',
579
+ fullyQualifiedName: 'nks.clusters.controllers.volumes.get',
574
580
  httpMethod: 'get',
575
- httpPath: '/v1/nks/clusters/{cluster_id}/controllers/{controller_id}',
581
+ httpPath: '/v1/nks/clusters/{cluster_id}/controllers/{controller_id}/volumes/{volume_id}',
576
582
  },
577
583
  {
578
584
  clientCallName: 'client.nks.clusters.controllers.volumes.list',
@@ -581,10 +587,10 @@ export const sdkMethods: SdkMethod[] = [
581
587
  httpPath: '/v1/nks/clusters/{cluster_id}/controllers/{controller_id}/volumes',
582
588
  },
583
589
  {
584
- clientCallName: 'client.nks.clusters.controllers.volumes.get',
585
- fullyQualifiedName: 'nks.clusters.controllers.volumes.get',
590
+ clientCallName: 'client.nks.clusters.loadBalancers.get',
591
+ fullyQualifiedName: 'nks.clusters.loadBalancers.get',
586
592
  httpMethod: 'get',
587
- httpPath: '/v1/nks/clusters/{cluster_id}/controllers/{controller_id}/volumes/{volume_id}',
593
+ httpPath: '/v1/nks/clusters/{cluster_id}/load_balancers/{load_balancer_id}',
588
594
  },
589
595
  {
590
596
  clientCallName: 'client.nks.clusters.loadBalancers.update',
@@ -598,30 +604,24 @@ export const sdkMethods: SdkMethod[] = [
598
604
  httpMethod: 'get',
599
605
  httpPath: '/v1/nks/clusters/{cluster_id}/load_balancers',
600
606
  },
601
- {
602
- clientCallName: 'client.nks.clusters.loadBalancers.get',
603
- fullyQualifiedName: 'nks.clusters.loadBalancers.get',
604
- httpMethod: 'get',
605
- httpPath: '/v1/nks/clusters/{cluster_id}/load_balancers/{load_balancer_id}',
606
- },
607
607
  {
608
608
  clientCallName: 'client.nks.clusters.pools.create',
609
609
  fullyQualifiedName: 'nks.clusters.pools.create',
610
610
  httpMethod: 'post',
611
611
  httpPath: '/v1/nks/clusters/{cluster_id}/pools',
612
612
  },
613
+ {
614
+ clientCallName: 'client.nks.clusters.pools.get',
615
+ fullyQualifiedName: 'nks.clusters.pools.get',
616
+ httpMethod: 'get',
617
+ httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}',
618
+ },
613
619
  {
614
620
  clientCallName: 'client.nks.clusters.pools.update',
615
621
  fullyQualifiedName: 'nks.clusters.pools.update',
616
622
  httpMethod: 'patch',
617
623
  httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}',
618
624
  },
619
- {
620
- clientCallName: 'client.nks.clusters.pools.list',
621
- fullyQualifiedName: 'nks.clusters.pools.list',
622
- httpMethod: 'get',
623
- httpPath: '/v1/nks/clusters/{cluster_id}/pools',
624
- },
625
625
  {
626
626
  clientCallName: 'client.nks.clusters.pools.delete',
627
627
  fullyQualifiedName: 'nks.clusters.pools.delete',
@@ -629,10 +629,10 @@ export const sdkMethods: SdkMethod[] = [
629
629
  httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}',
630
630
  },
631
631
  {
632
- clientCallName: 'client.nks.clusters.pools.get',
633
- fullyQualifiedName: 'nks.clusters.pools.get',
632
+ clientCallName: 'client.nks.clusters.pools.list',
633
+ fullyQualifiedName: 'nks.clusters.pools.list',
634
634
  httpMethod: 'get',
635
- httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}',
635
+ httpPath: '/v1/nks/clusters/{cluster_id}/pools',
636
636
  },
637
637
  {
638
638
  clientCallName: 'client.nks.clusters.pools.availability.create',
@@ -647,10 +647,10 @@ export const sdkMethods: SdkMethod[] = [
647
647
  httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}/availability',
648
648
  },
649
649
  {
650
- clientCallName: 'client.nks.clusters.pools.nodes.list',
651
- fullyQualifiedName: 'nks.clusters.pools.nodes.list',
650
+ clientCallName: 'client.nks.clusters.pools.nodes.get',
651
+ fullyQualifiedName: 'nks.clusters.pools.nodes.get',
652
652
  httpMethod: 'get',
653
- httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}/nodes',
653
+ httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}/nodes/{node_id}',
654
654
  },
655
655
  {
656
656
  clientCallName: 'client.nks.clusters.pools.nodes.delete',
@@ -659,16 +659,10 @@ export const sdkMethods: SdkMethod[] = [
659
659
  httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}/nodes/{node_id}',
660
660
  },
661
661
  {
662
- clientCallName: 'client.nks.clusters.pools.nodes.get',
663
- fullyQualifiedName: 'nks.clusters.pools.nodes.get',
664
- httpMethod: 'get',
665
- httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}/nodes/{node_id}',
666
- },
667
- {
668
- clientCallName: 'client.nks.clusters.pools.nodes.volumes.list',
669
- fullyQualifiedName: 'nks.clusters.pools.nodes.volumes.list',
662
+ clientCallName: 'client.nks.clusters.pools.nodes.list',
663
+ fullyQualifiedName: 'nks.clusters.pools.nodes.list',
670
664
  httpMethod: 'get',
671
- httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}/nodes/{node_id}/volumes',
665
+ httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}/nodes',
672
666
  },
673
667
  {
674
668
  clientCallName: 'client.nks.clusters.pools.nodes.volumes.get',
@@ -676,6 +670,12 @@ export const sdkMethods: SdkMethod[] = [
676
670
  httpMethod: 'get',
677
671
  httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}/nodes/{node_id}/volumes/{volume_id}',
678
672
  },
673
+ {
674
+ clientCallName: 'client.nks.clusters.pools.nodes.volumes.list',
675
+ fullyQualifiedName: 'nks.clusters.pools.nodes.volumes.list',
676
+ httpMethod: 'get',
677
+ httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}/nodes/{node_id}/volumes',
678
+ },
679
679
  ];
680
680
 
681
681
  function allowedMethodsForCodeTool(options: McpOptions | undefined): SdkMethod[] | undefined {