@nirvana-labs/nirvana-mcp 1.91.1 → 1.91.3

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 +347 -347
  20. package/local-docs-search.js.map +1 -1
  21. package/local-docs-search.mjs +347 -347
  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 +2 -2
  37. package/server.js.map +1 -1
  38. package/server.mjs +2 -2
  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 +458 -458
  44. package/src/methods.ts +177 -177
  45. package/src/options.ts +9 -9
  46. package/src/server.ts +2 -2
package/methods.mjs CHANGED
@@ -6,36 +6,36 @@ export const sdkMethods = [
6
6
  httpMethod: 'get',
7
7
  httpPath: '/v1/user',
8
8
  },
9
- {
10
- clientCallName: 'client.user.security.update',
11
- fullyQualifiedName: 'user.security.update',
12
- httpMethod: 'patch',
13
- httpPath: '/v1/user/security',
14
- },
15
9
  {
16
10
  clientCallName: 'client.user.security.get',
17
11
  fullyQualifiedName: 'user.security.get',
18
12
  httpMethod: 'get',
19
13
  httpPath: '/v1/user/security',
20
14
  },
15
+ {
16
+ clientCallName: 'client.user.security.update',
17
+ fullyQualifiedName: 'user.security.update',
18
+ httpMethod: 'patch',
19
+ httpPath: '/v1/user/security',
20
+ },
21
21
  {
22
22
  clientCallName: 'client.apiKeys.create',
23
23
  fullyQualifiedName: 'apiKeys.create',
24
24
  httpMethod: 'post',
25
25
  httpPath: '/v1/api_keys',
26
26
  },
27
+ {
28
+ clientCallName: 'client.apiKeys.get',
29
+ fullyQualifiedName: 'apiKeys.get',
30
+ httpMethod: 'get',
31
+ httpPath: '/v1/api_keys/{api_key_id}',
32
+ },
27
33
  {
28
34
  clientCallName: 'client.apiKeys.update',
29
35
  fullyQualifiedName: 'apiKeys.update',
30
36
  httpMethod: 'patch',
31
37
  httpPath: '/v1/api_keys/{api_key_id}',
32
38
  },
33
- {
34
- clientCallName: 'client.apiKeys.list',
35
- fullyQualifiedName: 'apiKeys.list',
36
- httpMethod: 'get',
37
- httpPath: '/v1/api_keys',
38
- },
39
39
  {
40
40
  clientCallName: 'client.apiKeys.delete',
41
41
  fullyQualifiedName: 'apiKeys.delete',
@@ -43,16 +43,10 @@ export const sdkMethods = [
43
43
  httpPath: '/v1/api_keys/{api_key_id}',
44
44
  },
45
45
  {
46
- clientCallName: 'client.apiKeys.get',
47
- fullyQualifiedName: 'apiKeys.get',
48
- httpMethod: 'get',
49
- httpPath: '/v1/api_keys/{api_key_id}',
50
- },
51
- {
52
- clientCallName: 'client.operations.list',
53
- fullyQualifiedName: 'operations.list',
46
+ clientCallName: 'client.apiKeys.list',
47
+ fullyQualifiedName: 'apiKeys.list',
54
48
  httpMethod: 'get',
55
- httpPath: '/v1/operations',
49
+ httpPath: '/v1/api_keys',
56
50
  },
57
51
  {
58
52
  clientCallName: 'client.operations.get',
@@ -60,12 +54,24 @@ export const sdkMethods = [
60
54
  httpMethod: 'get',
61
55
  httpPath: '/v1/operations/{operation_id}',
62
56
  },
57
+ {
58
+ clientCallName: 'client.operations.list',
59
+ fullyQualifiedName: 'operations.list',
60
+ httpMethod: 'get',
61
+ httpPath: '/v1/operations',
62
+ },
63
63
  {
64
64
  clientCallName: 'client.organizations.create',
65
65
  fullyQualifiedName: 'organizations.create',
66
66
  httpMethod: 'post',
67
67
  httpPath: '/v1/organizations',
68
68
  },
69
+ {
70
+ clientCallName: 'client.organizations.get',
71
+ fullyQualifiedName: 'organizations.get',
72
+ httpMethod: 'get',
73
+ httpPath: '/v1/organizations/{organization_id}',
74
+ },
69
75
  {
70
76
  clientCallName: 'client.organizations.update',
71
77
  fullyQualifiedName: 'organizations.update',
@@ -78,36 +84,36 @@ export const sdkMethods = [
78
84
  httpMethod: 'get',
79
85
  httpPath: '/v1/organizations',
80
86
  },
81
- {
82
- clientCallName: 'client.organizations.get',
83
- fullyQualifiedName: 'organizations.get',
84
- httpMethod: 'get',
85
- httpPath: '/v1/organizations/{organization_id}',
86
- },
87
87
  {
88
88
  clientCallName: 'client.organizations.leave',
89
89
  fullyQualifiedName: 'organizations.leave',
90
90
  httpMethod: 'post',
91
91
  httpPath: '/v1/organizations/{organization_id}/leave',
92
92
  },
93
- {
94
- clientCallName: 'client.organizations.memberships.list',
95
- fullyQualifiedName: 'organizations.memberships.list',
96
- httpMethod: 'get',
97
- httpPath: '/v1/organizations/{organization_id}/memberships',
98
- },
99
93
  {
100
94
  clientCallName: 'client.organizations.memberships.get',
101
95
  fullyQualifiedName: 'organizations.memberships.get',
102
96
  httpMethod: 'get',
103
97
  httpPath: '/v1/organizations/{organization_id}/memberships/{membership_id}',
104
98
  },
99
+ {
100
+ clientCallName: 'client.organizations.memberships.list',
101
+ fullyQualifiedName: 'organizations.memberships.list',
102
+ httpMethod: 'get',
103
+ httpPath: '/v1/organizations/{organization_id}/memberships',
104
+ },
105
105
  {
106
106
  clientCallName: 'client.organizations.address.create',
107
107
  fullyQualifiedName: 'organizations.address.create',
108
108
  httpMethod: 'post',
109
109
  httpPath: '/v1/organizations/{organization_id}/address',
110
110
  },
111
+ {
112
+ clientCallName: 'client.organizations.address.get',
113
+ fullyQualifiedName: 'organizations.address.get',
114
+ httpMethod: 'get',
115
+ httpPath: '/v1/organizations/{organization_id}/address',
116
+ },
111
117
  {
112
118
  clientCallName: 'client.organizations.address.update',
113
119
  fullyQualifiedName: 'organizations.address.update',
@@ -115,10 +121,10 @@ export const sdkMethods = [
115
121
  httpPath: '/v1/organizations/{organization_id}/address',
116
122
  },
117
123
  {
118
- clientCallName: 'client.organizations.address.get',
119
- fullyQualifiedName: 'organizations.address.get',
124
+ clientCallName: 'client.quotas.get',
125
+ fullyQualifiedName: 'quotas.get',
120
126
  httpMethod: 'get',
121
- httpPath: '/v1/organizations/{organization_id}/address',
127
+ httpPath: '/v1/quotas/{region}',
122
128
  },
123
129
  {
124
130
  clientCallName: 'client.quotas.list',
@@ -127,10 +133,10 @@ export const sdkMethods = [
127
133
  httpPath: '/v1/quotas',
128
134
  },
129
135
  {
130
- clientCallName: 'client.quotas.get',
131
- fullyQualifiedName: 'quotas.get',
136
+ clientCallName: 'client.usage.get',
137
+ fullyQualifiedName: 'usage.get',
132
138
  httpMethod: 'get',
133
- httpPath: '/v1/quotas/{region}',
139
+ httpPath: '/v1/usage/{resource_id}',
134
140
  },
135
141
  {
136
142
  clientCallName: 'client.usage.list',
@@ -139,10 +145,10 @@ export const sdkMethods = [
139
145
  httpPath: '/v1/usage',
140
146
  },
141
147
  {
142
- clientCallName: 'client.usage.get',
143
- fullyQualifiedName: 'usage.get',
148
+ clientCallName: 'client.auditLogs.get',
149
+ fullyQualifiedName: 'auditLogs.get',
144
150
  httpMethod: 'get',
145
- httpPath: '/v1/usage/{resource_id}',
151
+ httpPath: '/v1/audit_logs/{audit_log_id}',
146
152
  },
147
153
  {
148
154
  clientCallName: 'client.auditLogs.list',
@@ -150,30 +156,24 @@ export const sdkMethods = [
150
156
  httpMethod: 'get',
151
157
  httpPath: '/v1/audit_logs',
152
158
  },
153
- {
154
- clientCallName: 'client.auditLogs.get',
155
- fullyQualifiedName: 'auditLogs.get',
156
- httpMethod: 'get',
157
- httpPath: '/v1/audit_logs/{audit_log_id}',
158
- },
159
159
  {
160
160
  clientCallName: 'client.projects.create',
161
161
  fullyQualifiedName: 'projects.create',
162
162
  httpMethod: 'post',
163
163
  httpPath: '/v1/projects',
164
164
  },
165
+ {
166
+ clientCallName: 'client.projects.get',
167
+ fullyQualifiedName: 'projects.get',
168
+ httpMethod: 'get',
169
+ httpPath: '/v1/projects/{project_id}',
170
+ },
165
171
  {
166
172
  clientCallName: 'client.projects.update',
167
173
  fullyQualifiedName: 'projects.update',
168
174
  httpMethod: 'patch',
169
175
  httpPath: '/v1/projects/{project_id}',
170
176
  },
171
- {
172
- clientCallName: 'client.projects.list',
173
- fullyQualifiedName: 'projects.list',
174
- httpMethod: 'get',
175
- httpPath: '/v1/projects',
176
- },
177
177
  {
178
178
  clientCallName: 'client.projects.delete',
179
179
  fullyQualifiedName: 'projects.delete',
@@ -181,16 +181,10 @@ export const sdkMethods = [
181
181
  httpPath: '/v1/projects/{project_id}',
182
182
  },
183
183
  {
184
- clientCallName: 'client.projects.get',
185
- fullyQualifiedName: 'projects.get',
186
- httpMethod: 'get',
187
- httpPath: '/v1/projects/{project_id}',
188
- },
189
- {
190
- clientCallName: 'client.regions.list',
191
- fullyQualifiedName: 'regions.list',
184
+ clientCallName: 'client.projects.list',
185
+ fullyQualifiedName: 'projects.list',
192
186
  httpMethod: 'get',
193
- httpPath: '/v1/regions',
187
+ httpPath: '/v1/projects',
194
188
  },
195
189
  {
196
190
  clientCallName: 'client.regions.get',
@@ -199,10 +193,10 @@ export const sdkMethods = [
199
193
  httpPath: '/v1/regions/{name}',
200
194
  },
201
195
  {
202
- clientCallName: 'client.instanceTypes.list',
203
- fullyQualifiedName: 'instanceTypes.list',
196
+ clientCallName: 'client.regions.list',
197
+ fullyQualifiedName: 'regions.list',
204
198
  httpMethod: 'get',
205
- httpPath: '/v1/instance_types',
199
+ httpPath: '/v1/regions',
206
200
  },
207
201
  {
208
202
  clientCallName: 'client.instanceTypes.get',
@@ -210,24 +204,30 @@ export const sdkMethods = [
210
204
  httpMethod: 'get',
211
205
  httpPath: '/v1/instance_types/{region}/{name}',
212
206
  },
207
+ {
208
+ clientCallName: 'client.instanceTypes.list',
209
+ fullyQualifiedName: 'instanceTypes.list',
210
+ httpMethod: 'get',
211
+ httpPath: '/v1/instance_types',
212
+ },
213
213
  {
214
214
  clientCallName: 'client.compute.vms.create',
215
215
  fullyQualifiedName: 'compute.vms.create',
216
216
  httpMethod: 'post',
217
217
  httpPath: '/v1/compute/vms',
218
218
  },
219
+ {
220
+ clientCallName: 'client.compute.vms.get',
221
+ fullyQualifiedName: 'compute.vms.get',
222
+ httpMethod: 'get',
223
+ httpPath: '/v1/compute/vms/{vm_id}',
224
+ },
219
225
  {
220
226
  clientCallName: 'client.compute.vms.update',
221
227
  fullyQualifiedName: 'compute.vms.update',
222
228
  httpMethod: 'patch',
223
229
  httpPath: '/v1/compute/vms/{vm_id}',
224
230
  },
225
- {
226
- clientCallName: 'client.compute.vms.list',
227
- fullyQualifiedName: 'compute.vms.list',
228
- httpMethod: 'get',
229
- httpPath: '/v1/compute/vms',
230
- },
231
231
  {
232
232
  clientCallName: 'client.compute.vms.delete',
233
233
  fullyQualifiedName: 'compute.vms.delete',
@@ -235,10 +235,10 @@ export const sdkMethods = [
235
235
  httpPath: '/v1/compute/vms/{vm_id}',
236
236
  },
237
237
  {
238
- clientCallName: 'client.compute.vms.get',
239
- fullyQualifiedName: 'compute.vms.get',
238
+ clientCallName: 'client.compute.vms.list',
239
+ fullyQualifiedName: 'compute.vms.list',
240
240
  httpMethod: 'get',
241
- httpPath: '/v1/compute/vms/{vm_id}',
241
+ httpPath: '/v1/compute/vms',
242
242
  },
243
243
  {
244
244
  clientCallName: 'client.compute.vms.restart',
@@ -276,24 +276,30 @@ export const sdkMethods = [
276
276
  httpMethod: 'post',
277
277
  httpPath: '/v1/compute/volumes',
278
278
  },
279
+ {
280
+ clientCallName: 'client.compute.volumes.get',
281
+ fullyQualifiedName: 'compute.volumes.get',
282
+ httpMethod: 'get',
283
+ httpPath: '/v1/compute/volumes/{volume_id}',
284
+ },
279
285
  {
280
286
  clientCallName: 'client.compute.volumes.update',
281
287
  fullyQualifiedName: 'compute.volumes.update',
282
288
  httpMethod: 'patch',
283
289
  httpPath: '/v1/compute/volumes/{volume_id}',
284
290
  },
285
- {
286
- clientCallName: 'client.compute.volumes.list',
287
- fullyQualifiedName: 'compute.volumes.list',
288
- httpMethod: 'get',
289
- httpPath: '/v1/compute/volumes',
290
- },
291
291
  {
292
292
  clientCallName: 'client.compute.volumes.delete',
293
293
  fullyQualifiedName: 'compute.volumes.delete',
294
294
  httpMethod: 'delete',
295
295
  httpPath: '/v1/compute/volumes/{volume_id}',
296
296
  },
297
+ {
298
+ clientCallName: 'client.compute.volumes.list',
299
+ fullyQualifiedName: 'compute.volumes.list',
300
+ httpMethod: 'get',
301
+ httpPath: '/v1/compute/volumes',
302
+ },
297
303
  {
298
304
  clientCallName: 'client.compute.volumes.attach',
299
305
  fullyQualifiedName: 'compute.volumes.attach',
@@ -306,12 +312,6 @@ export const sdkMethods = [
306
312
  httpMethod: 'post',
307
313
  httpPath: '/v1/compute/volumes/{volume_id}/detach',
308
314
  },
309
- {
310
- clientCallName: 'client.compute.volumes.get',
311
- fullyQualifiedName: 'compute.volumes.get',
312
- httpMethod: 'get',
313
- httpPath: '/v1/compute/volumes/{volume_id}',
314
- },
315
315
  {
316
316
  clientCallName: 'client.compute.volumes.availability.create',
317
317
  fullyQualifiedName: 'compute.volumes.availability.create',
@@ -330,18 +330,18 @@ export const sdkMethods = [
330
330
  httpMethod: 'post',
331
331
  httpPath: '/v1/networking/vpcs',
332
332
  },
333
+ {
334
+ clientCallName: 'client.networking.vpcs.get',
335
+ fullyQualifiedName: 'networking.vpcs.get',
336
+ httpMethod: 'get',
337
+ httpPath: '/v1/networking/vpcs/{vpc_id}',
338
+ },
333
339
  {
334
340
  clientCallName: 'client.networking.vpcs.update',
335
341
  fullyQualifiedName: 'networking.vpcs.update',
336
342
  httpMethod: 'patch',
337
343
  httpPath: '/v1/networking/vpcs/{vpc_id}',
338
344
  },
339
- {
340
- clientCallName: 'client.networking.vpcs.list',
341
- fullyQualifiedName: 'networking.vpcs.list',
342
- httpMethod: 'get',
343
- httpPath: '/v1/networking/vpcs',
344
- },
345
345
  {
346
346
  clientCallName: 'client.networking.vpcs.delete',
347
347
  fullyQualifiedName: 'networking.vpcs.delete',
@@ -349,10 +349,10 @@ export const sdkMethods = [
349
349
  httpPath: '/v1/networking/vpcs/{vpc_id}',
350
350
  },
351
351
  {
352
- clientCallName: 'client.networking.vpcs.get',
353
- fullyQualifiedName: 'networking.vpcs.get',
352
+ clientCallName: 'client.networking.vpcs.list',
353
+ fullyQualifiedName: 'networking.vpcs.list',
354
354
  httpMethod: 'get',
355
- httpPath: '/v1/networking/vpcs/{vpc_id}',
355
+ httpPath: '/v1/networking/vpcs',
356
356
  },
357
357
  {
358
358
  clientCallName: 'client.networking.vpcs.availability.create',
@@ -372,18 +372,18 @@ export const sdkMethods = [
372
372
  httpMethod: 'post',
373
373
  httpPath: '/v1/networking/vpcs/{vpc_id}/firewall_rules',
374
374
  },
375
+ {
376
+ clientCallName: 'client.networking.firewallRules.get',
377
+ fullyQualifiedName: 'networking.firewallRules.get',
378
+ httpMethod: 'get',
379
+ httpPath: '/v1/networking/vpcs/{vpc_id}/firewall_rules/{firewall_rule_id}',
380
+ },
375
381
  {
376
382
  clientCallName: 'client.networking.firewallRules.update',
377
383
  fullyQualifiedName: 'networking.firewallRules.update',
378
384
  httpMethod: 'patch',
379
385
  httpPath: '/v1/networking/vpcs/{vpc_id}/firewall_rules/{firewall_rule_id}',
380
386
  },
381
- {
382
- clientCallName: 'client.networking.firewallRules.list',
383
- fullyQualifiedName: 'networking.firewallRules.list',
384
- httpMethod: 'get',
385
- httpPath: '/v1/networking/vpcs/{vpc_id}/firewall_rules',
386
- },
387
387
  {
388
388
  clientCallName: 'client.networking.firewallRules.delete',
389
389
  fullyQualifiedName: 'networking.firewallRules.delete',
@@ -391,10 +391,10 @@ export const sdkMethods = [
391
391
  httpPath: '/v1/networking/vpcs/{vpc_id}/firewall_rules/{firewall_rule_id}',
392
392
  },
393
393
  {
394
- clientCallName: 'client.networking.firewallRules.get',
395
- fullyQualifiedName: 'networking.firewallRules.get',
394
+ clientCallName: 'client.networking.firewallRules.list',
395
+ fullyQualifiedName: 'networking.firewallRules.list',
396
396
  httpMethod: 'get',
397
- httpPath: '/v1/networking/vpcs/{vpc_id}/firewall_rules/{firewall_rule_id}',
397
+ httpPath: '/v1/networking/vpcs/{vpc_id}/firewall_rules',
398
398
  },
399
399
  {
400
400
  clientCallName: 'client.networking.connect.connections.create',
@@ -402,18 +402,18 @@ export const sdkMethods = [
402
402
  httpMethod: 'post',
403
403
  httpPath: '/v1/networking/connect/connections',
404
404
  },
405
+ {
406
+ clientCallName: 'client.networking.connect.connections.get',
407
+ fullyQualifiedName: 'networking.connect.connections.get',
408
+ httpMethod: 'get',
409
+ httpPath: '/v1/networking/connect/connections/{connection_id}',
410
+ },
405
411
  {
406
412
  clientCallName: 'client.networking.connect.connections.update',
407
413
  fullyQualifiedName: 'networking.connect.connections.update',
408
414
  httpMethod: 'patch',
409
415
  httpPath: '/v1/networking/connect/connections/{connection_id}',
410
416
  },
411
- {
412
- clientCallName: 'client.networking.connect.connections.list',
413
- fullyQualifiedName: 'networking.connect.connections.list',
414
- httpMethod: 'get',
415
- httpPath: '/v1/networking/connect/connections',
416
- },
417
417
  {
418
418
  clientCallName: 'client.networking.connect.connections.delete',
419
419
  fullyQualifiedName: 'networking.connect.connections.delete',
@@ -421,10 +421,10 @@ export const sdkMethods = [
421
421
  httpPath: '/v1/networking/connect/connections/{connection_id}',
422
422
  },
423
423
  {
424
- clientCallName: 'client.networking.connect.connections.get',
425
- fullyQualifiedName: 'networking.connect.connections.get',
424
+ clientCallName: 'client.networking.connect.connections.list',
425
+ fullyQualifiedName: 'networking.connect.connections.list',
426
426
  httpMethod: 'get',
427
- httpPath: '/v1/networking/connect/connections/{connection_id}',
427
+ httpPath: '/v1/networking/connect/connections',
428
428
  },
429
429
  {
430
430
  clientCallName: 'client.networking.connect.routes.list',
@@ -438,18 +438,18 @@ export const sdkMethods = [
438
438
  httpMethod: 'post',
439
439
  httpPath: '/v1/rpc_nodes/flex',
440
440
  },
441
+ {
442
+ clientCallName: 'client.rpcNodes.flex.get',
443
+ fullyQualifiedName: 'rpcNodes.flex.get',
444
+ httpMethod: 'get',
445
+ httpPath: '/v1/rpc_nodes/flex/{node_id}',
446
+ },
441
447
  {
442
448
  clientCallName: 'client.rpcNodes.flex.update',
443
449
  fullyQualifiedName: 'rpcNodes.flex.update',
444
450
  httpMethod: 'patch',
445
451
  httpPath: '/v1/rpc_nodes/flex/{node_id}',
446
452
  },
447
- {
448
- clientCallName: 'client.rpcNodes.flex.list',
449
- fullyQualifiedName: 'rpcNodes.flex.list',
450
- httpMethod: 'get',
451
- httpPath: '/v1/rpc_nodes/flex',
452
- },
453
453
  {
454
454
  clientCallName: 'client.rpcNodes.flex.delete',
455
455
  fullyQualifiedName: 'rpcNodes.flex.delete',
@@ -457,10 +457,10 @@ export const sdkMethods = [
457
457
  httpPath: '/v1/rpc_nodes/flex/{node_id}',
458
458
  },
459
459
  {
460
- clientCallName: 'client.rpcNodes.flex.get',
461
- fullyQualifiedName: 'rpcNodes.flex.get',
460
+ clientCallName: 'client.rpcNodes.flex.list',
461
+ fullyQualifiedName: 'rpcNodes.flex.list',
462
462
  httpMethod: 'get',
463
- httpPath: '/v1/rpc_nodes/flex/{node_id}',
463
+ httpPath: '/v1/rpc_nodes/flex',
464
464
  },
465
465
  {
466
466
  clientCallName: 'client.rpcNodes.flex.blockchains.list',
@@ -468,18 +468,18 @@ export const sdkMethods = [
468
468
  httpMethod: 'get',
469
469
  httpPath: '/v1/rpc_nodes/flex/blockchains',
470
470
  },
471
- {
472
- clientCallName: 'client.rpcNodes.dedicated.list',
473
- fullyQualifiedName: 'rpcNodes.dedicated.list',
474
- httpMethod: 'get',
475
- httpPath: '/v1/rpc_nodes/dedicated',
476
- },
477
471
  {
478
472
  clientCallName: 'client.rpcNodes.dedicated.get',
479
473
  fullyQualifiedName: 'rpcNodes.dedicated.get',
480
474
  httpMethod: 'get',
481
475
  httpPath: '/v1/rpc_nodes/dedicated/{node_id}',
482
476
  },
477
+ {
478
+ clientCallName: 'client.rpcNodes.dedicated.list',
479
+ fullyQualifiedName: 'rpcNodes.dedicated.list',
480
+ httpMethod: 'get',
481
+ httpPath: '/v1/rpc_nodes/dedicated',
482
+ },
483
483
  {
484
484
  clientCallName: 'client.rpcNodes.dedicated.blockchains.list',
485
485
  fullyQualifiedName: 'rpcNodes.dedicated.blockchains.list',
@@ -498,18 +498,18 @@ export const sdkMethods = [
498
498
  httpMethod: 'post',
499
499
  httpPath: '/v1/nks/clusters',
500
500
  },
501
+ {
502
+ clientCallName: 'client.nks.clusters.get',
503
+ fullyQualifiedName: 'nks.clusters.get',
504
+ httpMethod: 'get',
505
+ httpPath: '/v1/nks/clusters/{cluster_id}',
506
+ },
501
507
  {
502
508
  clientCallName: 'client.nks.clusters.update',
503
509
  fullyQualifiedName: 'nks.clusters.update',
504
510
  httpMethod: 'patch',
505
511
  httpPath: '/v1/nks/clusters/{cluster_id}',
506
512
  },
507
- {
508
- clientCallName: 'client.nks.clusters.list',
509
- fullyQualifiedName: 'nks.clusters.list',
510
- httpMethod: 'get',
511
- httpPath: '/v1/nks/clusters',
512
- },
513
513
  {
514
514
  clientCallName: 'client.nks.clusters.delete',
515
515
  fullyQualifiedName: 'nks.clusters.delete',
@@ -517,10 +517,10 @@ export const sdkMethods = [
517
517
  httpPath: '/v1/nks/clusters/{cluster_id}',
518
518
  },
519
519
  {
520
- clientCallName: 'client.nks.clusters.get',
521
- fullyQualifiedName: 'nks.clusters.get',
520
+ clientCallName: 'client.nks.clusters.list',
521
+ fullyQualifiedName: 'nks.clusters.list',
522
522
  httpMethod: 'get',
523
- httpPath: '/v1/nks/clusters/{cluster_id}',
523
+ httpPath: '/v1/nks/clusters',
524
524
  },
525
525
  {
526
526
  clientCallName: 'client.nks.clusters.availability.create',
@@ -534,24 +534,30 @@ export const sdkMethods = [
534
534
  httpMethod: 'patch',
535
535
  httpPath: '/v1/nks/clusters/{cluster_id}/availability',
536
536
  },
537
- {
538
- clientCallName: 'client.nks.clusters.persistentVolumeClaims.list',
539
- fullyQualifiedName: 'nks.clusters.persistentVolumeClaims.list',
540
- httpMethod: 'get',
541
- httpPath: '/v1/nks/clusters/{cluster_id}/persistent_volume_claims',
542
- },
543
537
  {
544
538
  clientCallName: 'client.nks.clusters.persistentVolumeClaims.get',
545
539
  fullyQualifiedName: 'nks.clusters.persistentVolumeClaims.get',
546
540
  httpMethod: 'get',
547
541
  httpPath: '/v1/nks/clusters/{cluster_id}/persistent_volume_claims/{persistent_volume_claim_id}',
548
542
  },
543
+ {
544
+ clientCallName: 'client.nks.clusters.persistentVolumeClaims.list',
545
+ fullyQualifiedName: 'nks.clusters.persistentVolumeClaims.list',
546
+ httpMethod: 'get',
547
+ httpPath: '/v1/nks/clusters/{cluster_id}/persistent_volume_claims',
548
+ },
549
549
  {
550
550
  clientCallName: 'client.nks.clusters.kubeconfig.get',
551
551
  fullyQualifiedName: 'nks.clusters.kubeconfig.get',
552
552
  httpMethod: 'get',
553
553
  httpPath: '/v1/nks/clusters/{cluster_id}/kubeconfig',
554
554
  },
555
+ {
556
+ clientCallName: 'client.nks.clusters.controllers.get',
557
+ fullyQualifiedName: 'nks.clusters.controllers.get',
558
+ httpMethod: 'get',
559
+ httpPath: '/v1/nks/clusters/{cluster_id}/controllers/{controller_id}',
560
+ },
555
561
  {
556
562
  clientCallName: 'client.nks.clusters.controllers.list',
557
563
  fullyQualifiedName: 'nks.clusters.controllers.list',
@@ -559,10 +565,10 @@ export const sdkMethods = [
559
565
  httpPath: '/v1/nks/clusters/{cluster_id}/controllers',
560
566
  },
561
567
  {
562
- clientCallName: 'client.nks.clusters.controllers.get',
563
- fullyQualifiedName: 'nks.clusters.controllers.get',
568
+ clientCallName: 'client.nks.clusters.controllers.volumes.get',
569
+ fullyQualifiedName: 'nks.clusters.controllers.volumes.get',
564
570
  httpMethod: 'get',
565
- httpPath: '/v1/nks/clusters/{cluster_id}/controllers/{controller_id}',
571
+ httpPath: '/v1/nks/clusters/{cluster_id}/controllers/{controller_id}/volumes/{volume_id}',
566
572
  },
567
573
  {
568
574
  clientCallName: 'client.nks.clusters.controllers.volumes.list',
@@ -571,10 +577,10 @@ export const sdkMethods = [
571
577
  httpPath: '/v1/nks/clusters/{cluster_id}/controllers/{controller_id}/volumes',
572
578
  },
573
579
  {
574
- clientCallName: 'client.nks.clusters.controllers.volumes.get',
575
- fullyQualifiedName: 'nks.clusters.controllers.volumes.get',
580
+ clientCallName: 'client.nks.clusters.loadBalancers.get',
581
+ fullyQualifiedName: 'nks.clusters.loadBalancers.get',
576
582
  httpMethod: 'get',
577
- httpPath: '/v1/nks/clusters/{cluster_id}/controllers/{controller_id}/volumes/{volume_id}',
583
+ httpPath: '/v1/nks/clusters/{cluster_id}/load_balancers/{load_balancer_id}',
578
584
  },
579
585
  {
580
586
  clientCallName: 'client.nks.clusters.loadBalancers.update',
@@ -588,30 +594,24 @@ export const sdkMethods = [
588
594
  httpMethod: 'get',
589
595
  httpPath: '/v1/nks/clusters/{cluster_id}/load_balancers',
590
596
  },
591
- {
592
- clientCallName: 'client.nks.clusters.loadBalancers.get',
593
- fullyQualifiedName: 'nks.clusters.loadBalancers.get',
594
- httpMethod: 'get',
595
- httpPath: '/v1/nks/clusters/{cluster_id}/load_balancers/{load_balancer_id}',
596
- },
597
597
  {
598
598
  clientCallName: 'client.nks.clusters.pools.create',
599
599
  fullyQualifiedName: 'nks.clusters.pools.create',
600
600
  httpMethod: 'post',
601
601
  httpPath: '/v1/nks/clusters/{cluster_id}/pools',
602
602
  },
603
+ {
604
+ clientCallName: 'client.nks.clusters.pools.get',
605
+ fullyQualifiedName: 'nks.clusters.pools.get',
606
+ httpMethod: 'get',
607
+ httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}',
608
+ },
603
609
  {
604
610
  clientCallName: 'client.nks.clusters.pools.update',
605
611
  fullyQualifiedName: 'nks.clusters.pools.update',
606
612
  httpMethod: 'patch',
607
613
  httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}',
608
614
  },
609
- {
610
- clientCallName: 'client.nks.clusters.pools.list',
611
- fullyQualifiedName: 'nks.clusters.pools.list',
612
- httpMethod: 'get',
613
- httpPath: '/v1/nks/clusters/{cluster_id}/pools',
614
- },
615
615
  {
616
616
  clientCallName: 'client.nks.clusters.pools.delete',
617
617
  fullyQualifiedName: 'nks.clusters.pools.delete',
@@ -619,10 +619,10 @@ export const sdkMethods = [
619
619
  httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}',
620
620
  },
621
621
  {
622
- clientCallName: 'client.nks.clusters.pools.get',
623
- fullyQualifiedName: 'nks.clusters.pools.get',
622
+ clientCallName: 'client.nks.clusters.pools.list',
623
+ fullyQualifiedName: 'nks.clusters.pools.list',
624
624
  httpMethod: 'get',
625
- httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}',
625
+ httpPath: '/v1/nks/clusters/{cluster_id}/pools',
626
626
  },
627
627
  {
628
628
  clientCallName: 'client.nks.clusters.pools.availability.create',
@@ -637,10 +637,10 @@ export const sdkMethods = [
637
637
  httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}/availability',
638
638
  },
639
639
  {
640
- clientCallName: 'client.nks.clusters.pools.nodes.list',
641
- fullyQualifiedName: 'nks.clusters.pools.nodes.list',
640
+ clientCallName: 'client.nks.clusters.pools.nodes.get',
641
+ fullyQualifiedName: 'nks.clusters.pools.nodes.get',
642
642
  httpMethod: 'get',
643
- httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}/nodes',
643
+ httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}/nodes/{node_id}',
644
644
  },
645
645
  {
646
646
  clientCallName: 'client.nks.clusters.pools.nodes.delete',
@@ -649,16 +649,10 @@ export const sdkMethods = [
649
649
  httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}/nodes/{node_id}',
650
650
  },
651
651
  {
652
- clientCallName: 'client.nks.clusters.pools.nodes.get',
653
- fullyQualifiedName: 'nks.clusters.pools.nodes.get',
654
- httpMethod: 'get',
655
- httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}/nodes/{node_id}',
656
- },
657
- {
658
- clientCallName: 'client.nks.clusters.pools.nodes.volumes.list',
659
- fullyQualifiedName: 'nks.clusters.pools.nodes.volumes.list',
652
+ clientCallName: 'client.nks.clusters.pools.nodes.list',
653
+ fullyQualifiedName: 'nks.clusters.pools.nodes.list',
660
654
  httpMethod: 'get',
661
- httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}/nodes/{node_id}/volumes',
655
+ httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}/nodes',
662
656
  },
663
657
  {
664
658
  clientCallName: 'client.nks.clusters.pools.nodes.volumes.get',
@@ -666,6 +660,12 @@ export const sdkMethods = [
666
660
  httpMethod: 'get',
667
661
  httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}/nodes/{node_id}/volumes/{volume_id}',
668
662
  },
663
+ {
664
+ clientCallName: 'client.nks.clusters.pools.nodes.volumes.list',
665
+ fullyQualifiedName: 'nks.clusters.pools.nodes.volumes.list',
666
+ httpMethod: 'get',
667
+ httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}/nodes/{node_id}/volumes',
668
+ },
669
669
  ];
670
670
  function allowedMethodsForCodeTool(options) {
671
671
  if (!options) {