@nirvana-labs/nirvana-mcp 1.91.0 → 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.
- package/code-tool-worker.d.mts.map +1 -1
- package/code-tool-worker.d.ts.map +1 -1
- package/code-tool-worker.js +3 -0
- package/code-tool-worker.js.map +1 -1
- package/code-tool-worker.mjs +3 -0
- package/code-tool-worker.mjs.map +1 -1
- package/code-tool.d.mts.map +1 -1
- package/code-tool.d.ts.map +1 -1
- package/code-tool.js +2 -53
- package/code-tool.js.map +1 -1
- package/code-tool.mjs +3 -54
- package/code-tool.mjs.map +1 -1
- package/docs-search-tool.d.mts.map +1 -1
- package/docs-search-tool.d.ts.map +1 -1
- package/docs-search-tool.js +1 -41
- package/docs-search-tool.js.map +1 -1
- package/docs-search-tool.mjs +1 -41
- package/docs-search-tool.mjs.map +1 -1
- package/instructions.d.mts.map +1 -1
- package/instructions.d.ts.map +1 -1
- package/instructions.js +2 -18
- package/instructions.js.map +1 -1
- package/instructions.mjs +2 -18
- package/instructions.mjs.map +1 -1
- package/local-docs-search.d.mts.map +1 -1
- package/local-docs-search.d.ts.map +1 -1
- package/local-docs-search.js +437 -330
- package/local-docs-search.js.map +1 -1
- package/local-docs-search.mjs +437 -330
- package/local-docs-search.mjs.map +1 -1
- package/methods.d.mts.map +1 -1
- package/methods.d.ts.map +1 -1
- package/methods.js +187 -169
- package/methods.js.map +1 -1
- package/methods.mjs +187 -169
- package/methods.mjs.map +1 -1
- package/options.d.mts +2 -2
- package/options.d.mts.map +1 -1
- package/options.d.ts +2 -2
- package/options.d.ts.map +1 -1
- package/options.js +6 -6
- package/options.js.map +1 -1
- package/options.mjs +6 -6
- package/options.mjs.map +1 -1
- package/package.json +2 -2
- package/server.js +2 -2
- package/server.js.map +1 -1
- package/server.mjs +2 -2
- package/server.mjs.map +1 -1
- package/src/code-tool-worker.ts +3 -0
- package/src/code-tool.ts +4 -83
- package/src/docs-search-tool.ts +2 -61
- package/src/instructions.ts +2 -28
- package/src/local-docs-search.ts +560 -435
- package/src/methods.ts +187 -169
- package/src/options.ts +9 -9
- 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.
|
|
47
|
-
fullyQualifiedName: 'apiKeys.
|
|
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/
|
|
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,18 +84,18 @@ 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.get',
|
|
95
|
+
fullyQualifiedName: 'organizations.memberships.get',
|
|
96
|
+
httpMethod: 'get',
|
|
97
|
+
httpPath: '/v1/organizations/{organization_id}/memberships/{membership_id}',
|
|
98
|
+
},
|
|
93
99
|
{
|
|
94
100
|
clientCallName: 'client.organizations.memberships.list',
|
|
95
101
|
fullyQualifiedName: 'organizations.memberships.list',
|
|
@@ -97,16 +103,22 @@ export const sdkMethods = [
|
|
|
97
103
|
httpPath: '/v1/organizations/{organization_id}/memberships',
|
|
98
104
|
},
|
|
99
105
|
{
|
|
100
|
-
clientCallName: 'client.organizations.
|
|
101
|
-
fullyQualifiedName: 'organizations.
|
|
102
|
-
httpMethod: '
|
|
103
|
-
httpPath: '/v1/organizations/{organization_id}/
|
|
106
|
+
clientCallName: 'client.organizations.address.create',
|
|
107
|
+
fullyQualifiedName: 'organizations.address.create',
|
|
108
|
+
httpMethod: 'post',
|
|
109
|
+
httpPath: '/v1/organizations/{organization_id}/address',
|
|
104
110
|
},
|
|
105
111
|
{
|
|
106
|
-
clientCallName: 'client.
|
|
107
|
-
fullyQualifiedName: '
|
|
112
|
+
clientCallName: 'client.organizations.address.get',
|
|
113
|
+
fullyQualifiedName: 'organizations.address.get',
|
|
108
114
|
httpMethod: 'get',
|
|
109
|
-
httpPath: '/v1/
|
|
115
|
+
httpPath: '/v1/organizations/{organization_id}/address',
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
clientCallName: 'client.organizations.address.update',
|
|
119
|
+
fullyQualifiedName: 'organizations.address.update',
|
|
120
|
+
httpMethod: 'patch',
|
|
121
|
+
httpPath: '/v1/organizations/{organization_id}/address',
|
|
110
122
|
},
|
|
111
123
|
{
|
|
112
124
|
clientCallName: 'client.quotas.get',
|
|
@@ -115,10 +127,10 @@ export const sdkMethods = [
|
|
|
115
127
|
httpPath: '/v1/quotas/{region}',
|
|
116
128
|
},
|
|
117
129
|
{
|
|
118
|
-
clientCallName: 'client.
|
|
119
|
-
fullyQualifiedName: '
|
|
130
|
+
clientCallName: 'client.quotas.list',
|
|
131
|
+
fullyQualifiedName: 'quotas.list',
|
|
120
132
|
httpMethod: 'get',
|
|
121
|
-
httpPath: '/v1/
|
|
133
|
+
httpPath: '/v1/quotas',
|
|
122
134
|
},
|
|
123
135
|
{
|
|
124
136
|
clientCallName: 'client.usage.get',
|
|
@@ -127,10 +139,10 @@ export const sdkMethods = [
|
|
|
127
139
|
httpPath: '/v1/usage/{resource_id}',
|
|
128
140
|
},
|
|
129
141
|
{
|
|
130
|
-
clientCallName: 'client.
|
|
131
|
-
fullyQualifiedName: '
|
|
142
|
+
clientCallName: 'client.usage.list',
|
|
143
|
+
fullyQualifiedName: 'usage.list',
|
|
132
144
|
httpMethod: 'get',
|
|
133
|
-
httpPath: '/v1/
|
|
145
|
+
httpPath: '/v1/usage',
|
|
134
146
|
},
|
|
135
147
|
{
|
|
136
148
|
clientCallName: 'client.auditLogs.get',
|
|
@@ -138,24 +150,30 @@ export const sdkMethods = [
|
|
|
138
150
|
httpMethod: 'get',
|
|
139
151
|
httpPath: '/v1/audit_logs/{audit_log_id}',
|
|
140
152
|
},
|
|
153
|
+
{
|
|
154
|
+
clientCallName: 'client.auditLogs.list',
|
|
155
|
+
fullyQualifiedName: 'auditLogs.list',
|
|
156
|
+
httpMethod: 'get',
|
|
157
|
+
httpPath: '/v1/audit_logs',
|
|
158
|
+
},
|
|
141
159
|
{
|
|
142
160
|
clientCallName: 'client.projects.create',
|
|
143
161
|
fullyQualifiedName: 'projects.create',
|
|
144
162
|
httpMethod: 'post',
|
|
145
163
|
httpPath: '/v1/projects',
|
|
146
164
|
},
|
|
165
|
+
{
|
|
166
|
+
clientCallName: 'client.projects.get',
|
|
167
|
+
fullyQualifiedName: 'projects.get',
|
|
168
|
+
httpMethod: 'get',
|
|
169
|
+
httpPath: '/v1/projects/{project_id}',
|
|
170
|
+
},
|
|
147
171
|
{
|
|
148
172
|
clientCallName: 'client.projects.update',
|
|
149
173
|
fullyQualifiedName: 'projects.update',
|
|
150
174
|
httpMethod: 'patch',
|
|
151
175
|
httpPath: '/v1/projects/{project_id}',
|
|
152
176
|
},
|
|
153
|
-
{
|
|
154
|
-
clientCallName: 'client.projects.list',
|
|
155
|
-
fullyQualifiedName: 'projects.list',
|
|
156
|
-
httpMethod: 'get',
|
|
157
|
-
httpPath: '/v1/projects',
|
|
158
|
-
},
|
|
159
177
|
{
|
|
160
178
|
clientCallName: 'client.projects.delete',
|
|
161
179
|
fullyQualifiedName: 'projects.delete',
|
|
@@ -163,16 +181,10 @@ export const sdkMethods = [
|
|
|
163
181
|
httpPath: '/v1/projects/{project_id}',
|
|
164
182
|
},
|
|
165
183
|
{
|
|
166
|
-
clientCallName: 'client.projects.
|
|
167
|
-
fullyQualifiedName: 'projects.
|
|
168
|
-
httpMethod: 'get',
|
|
169
|
-
httpPath: '/v1/projects/{project_id}',
|
|
170
|
-
},
|
|
171
|
-
{
|
|
172
|
-
clientCallName: 'client.regions.list',
|
|
173
|
-
fullyQualifiedName: 'regions.list',
|
|
184
|
+
clientCallName: 'client.projects.list',
|
|
185
|
+
fullyQualifiedName: 'projects.list',
|
|
174
186
|
httpMethod: 'get',
|
|
175
|
-
httpPath: '/v1/
|
|
187
|
+
httpPath: '/v1/projects',
|
|
176
188
|
},
|
|
177
189
|
{
|
|
178
190
|
clientCallName: 'client.regions.get',
|
|
@@ -181,10 +193,10 @@ export const sdkMethods = [
|
|
|
181
193
|
httpPath: '/v1/regions/{name}',
|
|
182
194
|
},
|
|
183
195
|
{
|
|
184
|
-
clientCallName: 'client.
|
|
185
|
-
fullyQualifiedName: '
|
|
196
|
+
clientCallName: 'client.regions.list',
|
|
197
|
+
fullyQualifiedName: 'regions.list',
|
|
186
198
|
httpMethod: 'get',
|
|
187
|
-
httpPath: '/v1/
|
|
199
|
+
httpPath: '/v1/regions',
|
|
188
200
|
},
|
|
189
201
|
{
|
|
190
202
|
clientCallName: 'client.instanceTypes.get',
|
|
@@ -192,24 +204,30 @@ export const sdkMethods = [
|
|
|
192
204
|
httpMethod: 'get',
|
|
193
205
|
httpPath: '/v1/instance_types/{region}/{name}',
|
|
194
206
|
},
|
|
207
|
+
{
|
|
208
|
+
clientCallName: 'client.instanceTypes.list',
|
|
209
|
+
fullyQualifiedName: 'instanceTypes.list',
|
|
210
|
+
httpMethod: 'get',
|
|
211
|
+
httpPath: '/v1/instance_types',
|
|
212
|
+
},
|
|
195
213
|
{
|
|
196
214
|
clientCallName: 'client.compute.vms.create',
|
|
197
215
|
fullyQualifiedName: 'compute.vms.create',
|
|
198
216
|
httpMethod: 'post',
|
|
199
217
|
httpPath: '/v1/compute/vms',
|
|
200
218
|
},
|
|
219
|
+
{
|
|
220
|
+
clientCallName: 'client.compute.vms.get',
|
|
221
|
+
fullyQualifiedName: 'compute.vms.get',
|
|
222
|
+
httpMethod: 'get',
|
|
223
|
+
httpPath: '/v1/compute/vms/{vm_id}',
|
|
224
|
+
},
|
|
201
225
|
{
|
|
202
226
|
clientCallName: 'client.compute.vms.update',
|
|
203
227
|
fullyQualifiedName: 'compute.vms.update',
|
|
204
228
|
httpMethod: 'patch',
|
|
205
229
|
httpPath: '/v1/compute/vms/{vm_id}',
|
|
206
230
|
},
|
|
207
|
-
{
|
|
208
|
-
clientCallName: 'client.compute.vms.list',
|
|
209
|
-
fullyQualifiedName: 'compute.vms.list',
|
|
210
|
-
httpMethod: 'get',
|
|
211
|
-
httpPath: '/v1/compute/vms',
|
|
212
|
-
},
|
|
213
231
|
{
|
|
214
232
|
clientCallName: 'client.compute.vms.delete',
|
|
215
233
|
fullyQualifiedName: 'compute.vms.delete',
|
|
@@ -217,10 +235,10 @@ export const sdkMethods = [
|
|
|
217
235
|
httpPath: '/v1/compute/vms/{vm_id}',
|
|
218
236
|
},
|
|
219
237
|
{
|
|
220
|
-
clientCallName: 'client.compute.vms.
|
|
221
|
-
fullyQualifiedName: 'compute.vms.
|
|
238
|
+
clientCallName: 'client.compute.vms.list',
|
|
239
|
+
fullyQualifiedName: 'compute.vms.list',
|
|
222
240
|
httpMethod: 'get',
|
|
223
|
-
httpPath: '/v1/compute/vms
|
|
241
|
+
httpPath: '/v1/compute/vms',
|
|
224
242
|
},
|
|
225
243
|
{
|
|
226
244
|
clientCallName: 'client.compute.vms.restart',
|
|
@@ -258,24 +276,30 @@ export const sdkMethods = [
|
|
|
258
276
|
httpMethod: 'post',
|
|
259
277
|
httpPath: '/v1/compute/volumes',
|
|
260
278
|
},
|
|
279
|
+
{
|
|
280
|
+
clientCallName: 'client.compute.volumes.get',
|
|
281
|
+
fullyQualifiedName: 'compute.volumes.get',
|
|
282
|
+
httpMethod: 'get',
|
|
283
|
+
httpPath: '/v1/compute/volumes/{volume_id}',
|
|
284
|
+
},
|
|
261
285
|
{
|
|
262
286
|
clientCallName: 'client.compute.volumes.update',
|
|
263
287
|
fullyQualifiedName: 'compute.volumes.update',
|
|
264
288
|
httpMethod: 'patch',
|
|
265
289
|
httpPath: '/v1/compute/volumes/{volume_id}',
|
|
266
290
|
},
|
|
267
|
-
{
|
|
268
|
-
clientCallName: 'client.compute.volumes.list',
|
|
269
|
-
fullyQualifiedName: 'compute.volumes.list',
|
|
270
|
-
httpMethod: 'get',
|
|
271
|
-
httpPath: '/v1/compute/volumes',
|
|
272
|
-
},
|
|
273
291
|
{
|
|
274
292
|
clientCallName: 'client.compute.volumes.delete',
|
|
275
293
|
fullyQualifiedName: 'compute.volumes.delete',
|
|
276
294
|
httpMethod: 'delete',
|
|
277
295
|
httpPath: '/v1/compute/volumes/{volume_id}',
|
|
278
296
|
},
|
|
297
|
+
{
|
|
298
|
+
clientCallName: 'client.compute.volumes.list',
|
|
299
|
+
fullyQualifiedName: 'compute.volumes.list',
|
|
300
|
+
httpMethod: 'get',
|
|
301
|
+
httpPath: '/v1/compute/volumes',
|
|
302
|
+
},
|
|
279
303
|
{
|
|
280
304
|
clientCallName: 'client.compute.volumes.attach',
|
|
281
305
|
fullyQualifiedName: 'compute.volumes.attach',
|
|
@@ -288,12 +312,6 @@ export const sdkMethods = [
|
|
|
288
312
|
httpMethod: 'post',
|
|
289
313
|
httpPath: '/v1/compute/volumes/{volume_id}/detach',
|
|
290
314
|
},
|
|
291
|
-
{
|
|
292
|
-
clientCallName: 'client.compute.volumes.get',
|
|
293
|
-
fullyQualifiedName: 'compute.volumes.get',
|
|
294
|
-
httpMethod: 'get',
|
|
295
|
-
httpPath: '/v1/compute/volumes/{volume_id}',
|
|
296
|
-
},
|
|
297
315
|
{
|
|
298
316
|
clientCallName: 'client.compute.volumes.availability.create',
|
|
299
317
|
fullyQualifiedName: 'compute.volumes.availability.create',
|
|
@@ -312,18 +330,18 @@ export const sdkMethods = [
|
|
|
312
330
|
httpMethod: 'post',
|
|
313
331
|
httpPath: '/v1/networking/vpcs',
|
|
314
332
|
},
|
|
333
|
+
{
|
|
334
|
+
clientCallName: 'client.networking.vpcs.get',
|
|
335
|
+
fullyQualifiedName: 'networking.vpcs.get',
|
|
336
|
+
httpMethod: 'get',
|
|
337
|
+
httpPath: '/v1/networking/vpcs/{vpc_id}',
|
|
338
|
+
},
|
|
315
339
|
{
|
|
316
340
|
clientCallName: 'client.networking.vpcs.update',
|
|
317
341
|
fullyQualifiedName: 'networking.vpcs.update',
|
|
318
342
|
httpMethod: 'patch',
|
|
319
343
|
httpPath: '/v1/networking/vpcs/{vpc_id}',
|
|
320
344
|
},
|
|
321
|
-
{
|
|
322
|
-
clientCallName: 'client.networking.vpcs.list',
|
|
323
|
-
fullyQualifiedName: 'networking.vpcs.list',
|
|
324
|
-
httpMethod: 'get',
|
|
325
|
-
httpPath: '/v1/networking/vpcs',
|
|
326
|
-
},
|
|
327
345
|
{
|
|
328
346
|
clientCallName: 'client.networking.vpcs.delete',
|
|
329
347
|
fullyQualifiedName: 'networking.vpcs.delete',
|
|
@@ -331,10 +349,10 @@ export const sdkMethods = [
|
|
|
331
349
|
httpPath: '/v1/networking/vpcs/{vpc_id}',
|
|
332
350
|
},
|
|
333
351
|
{
|
|
334
|
-
clientCallName: 'client.networking.vpcs.
|
|
335
|
-
fullyQualifiedName: 'networking.vpcs.
|
|
352
|
+
clientCallName: 'client.networking.vpcs.list',
|
|
353
|
+
fullyQualifiedName: 'networking.vpcs.list',
|
|
336
354
|
httpMethod: 'get',
|
|
337
|
-
httpPath: '/v1/networking/vpcs
|
|
355
|
+
httpPath: '/v1/networking/vpcs',
|
|
338
356
|
},
|
|
339
357
|
{
|
|
340
358
|
clientCallName: 'client.networking.vpcs.availability.create',
|
|
@@ -354,18 +372,18 @@ export const sdkMethods = [
|
|
|
354
372
|
httpMethod: 'post',
|
|
355
373
|
httpPath: '/v1/networking/vpcs/{vpc_id}/firewall_rules',
|
|
356
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
|
+
},
|
|
357
381
|
{
|
|
358
382
|
clientCallName: 'client.networking.firewallRules.update',
|
|
359
383
|
fullyQualifiedName: 'networking.firewallRules.update',
|
|
360
384
|
httpMethod: 'patch',
|
|
361
385
|
httpPath: '/v1/networking/vpcs/{vpc_id}/firewall_rules/{firewall_rule_id}',
|
|
362
386
|
},
|
|
363
|
-
{
|
|
364
|
-
clientCallName: 'client.networking.firewallRules.list',
|
|
365
|
-
fullyQualifiedName: 'networking.firewallRules.list',
|
|
366
|
-
httpMethod: 'get',
|
|
367
|
-
httpPath: '/v1/networking/vpcs/{vpc_id}/firewall_rules',
|
|
368
|
-
},
|
|
369
387
|
{
|
|
370
388
|
clientCallName: 'client.networking.firewallRules.delete',
|
|
371
389
|
fullyQualifiedName: 'networking.firewallRules.delete',
|
|
@@ -373,10 +391,10 @@ export const sdkMethods = [
|
|
|
373
391
|
httpPath: '/v1/networking/vpcs/{vpc_id}/firewall_rules/{firewall_rule_id}',
|
|
374
392
|
},
|
|
375
393
|
{
|
|
376
|
-
clientCallName: 'client.networking.firewallRules.
|
|
377
|
-
fullyQualifiedName: 'networking.firewallRules.
|
|
394
|
+
clientCallName: 'client.networking.firewallRules.list',
|
|
395
|
+
fullyQualifiedName: 'networking.firewallRules.list',
|
|
378
396
|
httpMethod: 'get',
|
|
379
|
-
httpPath: '/v1/networking/vpcs/{vpc_id}/firewall_rules
|
|
397
|
+
httpPath: '/v1/networking/vpcs/{vpc_id}/firewall_rules',
|
|
380
398
|
},
|
|
381
399
|
{
|
|
382
400
|
clientCallName: 'client.networking.connect.connections.create',
|
|
@@ -384,18 +402,18 @@ export const sdkMethods = [
|
|
|
384
402
|
httpMethod: 'post',
|
|
385
403
|
httpPath: '/v1/networking/connect/connections',
|
|
386
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
|
+
},
|
|
387
411
|
{
|
|
388
412
|
clientCallName: 'client.networking.connect.connections.update',
|
|
389
413
|
fullyQualifiedName: 'networking.connect.connections.update',
|
|
390
414
|
httpMethod: 'patch',
|
|
391
415
|
httpPath: '/v1/networking/connect/connections/{connection_id}',
|
|
392
416
|
},
|
|
393
|
-
{
|
|
394
|
-
clientCallName: 'client.networking.connect.connections.list',
|
|
395
|
-
fullyQualifiedName: 'networking.connect.connections.list',
|
|
396
|
-
httpMethod: 'get',
|
|
397
|
-
httpPath: '/v1/networking/connect/connections',
|
|
398
|
-
},
|
|
399
417
|
{
|
|
400
418
|
clientCallName: 'client.networking.connect.connections.delete',
|
|
401
419
|
fullyQualifiedName: 'networking.connect.connections.delete',
|
|
@@ -403,10 +421,10 @@ export const sdkMethods = [
|
|
|
403
421
|
httpPath: '/v1/networking/connect/connections/{connection_id}',
|
|
404
422
|
},
|
|
405
423
|
{
|
|
406
|
-
clientCallName: 'client.networking.connect.connections.
|
|
407
|
-
fullyQualifiedName: 'networking.connect.connections.
|
|
424
|
+
clientCallName: 'client.networking.connect.connections.list',
|
|
425
|
+
fullyQualifiedName: 'networking.connect.connections.list',
|
|
408
426
|
httpMethod: 'get',
|
|
409
|
-
httpPath: '/v1/networking/connect/connections
|
|
427
|
+
httpPath: '/v1/networking/connect/connections',
|
|
410
428
|
},
|
|
411
429
|
{
|
|
412
430
|
clientCallName: 'client.networking.connect.routes.list',
|
|
@@ -420,18 +438,18 @@ export const sdkMethods = [
|
|
|
420
438
|
httpMethod: 'post',
|
|
421
439
|
httpPath: '/v1/rpc_nodes/flex',
|
|
422
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
|
+
},
|
|
423
447
|
{
|
|
424
448
|
clientCallName: 'client.rpcNodes.flex.update',
|
|
425
449
|
fullyQualifiedName: 'rpcNodes.flex.update',
|
|
426
450
|
httpMethod: 'patch',
|
|
427
451
|
httpPath: '/v1/rpc_nodes/flex/{node_id}',
|
|
428
452
|
},
|
|
429
|
-
{
|
|
430
|
-
clientCallName: 'client.rpcNodes.flex.list',
|
|
431
|
-
fullyQualifiedName: 'rpcNodes.flex.list',
|
|
432
|
-
httpMethod: 'get',
|
|
433
|
-
httpPath: '/v1/rpc_nodes/flex',
|
|
434
|
-
},
|
|
435
453
|
{
|
|
436
454
|
clientCallName: 'client.rpcNodes.flex.delete',
|
|
437
455
|
fullyQualifiedName: 'rpcNodes.flex.delete',
|
|
@@ -439,10 +457,10 @@ export const sdkMethods = [
|
|
|
439
457
|
httpPath: '/v1/rpc_nodes/flex/{node_id}',
|
|
440
458
|
},
|
|
441
459
|
{
|
|
442
|
-
clientCallName: 'client.rpcNodes.flex.
|
|
443
|
-
fullyQualifiedName: 'rpcNodes.flex.
|
|
460
|
+
clientCallName: 'client.rpcNodes.flex.list',
|
|
461
|
+
fullyQualifiedName: 'rpcNodes.flex.list',
|
|
444
462
|
httpMethod: 'get',
|
|
445
|
-
httpPath: '/v1/rpc_nodes/flex
|
|
463
|
+
httpPath: '/v1/rpc_nodes/flex',
|
|
446
464
|
},
|
|
447
465
|
{
|
|
448
466
|
clientCallName: 'client.rpcNodes.flex.blockchains.list',
|
|
@@ -450,18 +468,18 @@ export const sdkMethods = [
|
|
|
450
468
|
httpMethod: 'get',
|
|
451
469
|
httpPath: '/v1/rpc_nodes/flex/blockchains',
|
|
452
470
|
},
|
|
453
|
-
{
|
|
454
|
-
clientCallName: 'client.rpcNodes.dedicated.list',
|
|
455
|
-
fullyQualifiedName: 'rpcNodes.dedicated.list',
|
|
456
|
-
httpMethod: 'get',
|
|
457
|
-
httpPath: '/v1/rpc_nodes/dedicated',
|
|
458
|
-
},
|
|
459
471
|
{
|
|
460
472
|
clientCallName: 'client.rpcNodes.dedicated.get',
|
|
461
473
|
fullyQualifiedName: 'rpcNodes.dedicated.get',
|
|
462
474
|
httpMethod: 'get',
|
|
463
475
|
httpPath: '/v1/rpc_nodes/dedicated/{node_id}',
|
|
464
476
|
},
|
|
477
|
+
{
|
|
478
|
+
clientCallName: 'client.rpcNodes.dedicated.list',
|
|
479
|
+
fullyQualifiedName: 'rpcNodes.dedicated.list',
|
|
480
|
+
httpMethod: 'get',
|
|
481
|
+
httpPath: '/v1/rpc_nodes/dedicated',
|
|
482
|
+
},
|
|
465
483
|
{
|
|
466
484
|
clientCallName: 'client.rpcNodes.dedicated.blockchains.list',
|
|
467
485
|
fullyQualifiedName: 'rpcNodes.dedicated.blockchains.list',
|
|
@@ -480,18 +498,18 @@ export const sdkMethods = [
|
|
|
480
498
|
httpMethod: 'post',
|
|
481
499
|
httpPath: '/v1/nks/clusters',
|
|
482
500
|
},
|
|
501
|
+
{
|
|
502
|
+
clientCallName: 'client.nks.clusters.get',
|
|
503
|
+
fullyQualifiedName: 'nks.clusters.get',
|
|
504
|
+
httpMethod: 'get',
|
|
505
|
+
httpPath: '/v1/nks/clusters/{cluster_id}',
|
|
506
|
+
},
|
|
483
507
|
{
|
|
484
508
|
clientCallName: 'client.nks.clusters.update',
|
|
485
509
|
fullyQualifiedName: 'nks.clusters.update',
|
|
486
510
|
httpMethod: 'patch',
|
|
487
511
|
httpPath: '/v1/nks/clusters/{cluster_id}',
|
|
488
512
|
},
|
|
489
|
-
{
|
|
490
|
-
clientCallName: 'client.nks.clusters.list',
|
|
491
|
-
fullyQualifiedName: 'nks.clusters.list',
|
|
492
|
-
httpMethod: 'get',
|
|
493
|
-
httpPath: '/v1/nks/clusters',
|
|
494
|
-
},
|
|
495
513
|
{
|
|
496
514
|
clientCallName: 'client.nks.clusters.delete',
|
|
497
515
|
fullyQualifiedName: 'nks.clusters.delete',
|
|
@@ -499,10 +517,10 @@ export const sdkMethods = [
|
|
|
499
517
|
httpPath: '/v1/nks/clusters/{cluster_id}',
|
|
500
518
|
},
|
|
501
519
|
{
|
|
502
|
-
clientCallName: 'client.nks.clusters.
|
|
503
|
-
fullyQualifiedName: 'nks.clusters.
|
|
520
|
+
clientCallName: 'client.nks.clusters.list',
|
|
521
|
+
fullyQualifiedName: 'nks.clusters.list',
|
|
504
522
|
httpMethod: 'get',
|
|
505
|
-
httpPath: '/v1/nks/clusters
|
|
523
|
+
httpPath: '/v1/nks/clusters',
|
|
506
524
|
},
|
|
507
525
|
{
|
|
508
526
|
clientCallName: 'client.nks.clusters.availability.create',
|
|
@@ -516,24 +534,30 @@ export const sdkMethods = [
|
|
|
516
534
|
httpMethod: 'patch',
|
|
517
535
|
httpPath: '/v1/nks/clusters/{cluster_id}/availability',
|
|
518
536
|
},
|
|
519
|
-
{
|
|
520
|
-
clientCallName: 'client.nks.clusters.persistentVolumeClaims.list',
|
|
521
|
-
fullyQualifiedName: 'nks.clusters.persistentVolumeClaims.list',
|
|
522
|
-
httpMethod: 'get',
|
|
523
|
-
httpPath: '/v1/nks/clusters/{cluster_id}/persistent_volume_claims',
|
|
524
|
-
},
|
|
525
537
|
{
|
|
526
538
|
clientCallName: 'client.nks.clusters.persistentVolumeClaims.get',
|
|
527
539
|
fullyQualifiedName: 'nks.clusters.persistentVolumeClaims.get',
|
|
528
540
|
httpMethod: 'get',
|
|
529
541
|
httpPath: '/v1/nks/clusters/{cluster_id}/persistent_volume_claims/{persistent_volume_claim_id}',
|
|
530
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
|
+
},
|
|
531
549
|
{
|
|
532
550
|
clientCallName: 'client.nks.clusters.kubeconfig.get',
|
|
533
551
|
fullyQualifiedName: 'nks.clusters.kubeconfig.get',
|
|
534
552
|
httpMethod: 'get',
|
|
535
553
|
httpPath: '/v1/nks/clusters/{cluster_id}/kubeconfig',
|
|
536
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
|
+
},
|
|
537
561
|
{
|
|
538
562
|
clientCallName: 'client.nks.clusters.controllers.list',
|
|
539
563
|
fullyQualifiedName: 'nks.clusters.controllers.list',
|
|
@@ -541,10 +565,10 @@ export const sdkMethods = [
|
|
|
541
565
|
httpPath: '/v1/nks/clusters/{cluster_id}/controllers',
|
|
542
566
|
},
|
|
543
567
|
{
|
|
544
|
-
clientCallName: 'client.nks.clusters.controllers.get',
|
|
545
|
-
fullyQualifiedName: 'nks.clusters.controllers.get',
|
|
568
|
+
clientCallName: 'client.nks.clusters.controllers.volumes.get',
|
|
569
|
+
fullyQualifiedName: 'nks.clusters.controllers.volumes.get',
|
|
546
570
|
httpMethod: 'get',
|
|
547
|
-
httpPath: '/v1/nks/clusters/{cluster_id}/controllers/{controller_id}',
|
|
571
|
+
httpPath: '/v1/nks/clusters/{cluster_id}/controllers/{controller_id}/volumes/{volume_id}',
|
|
548
572
|
},
|
|
549
573
|
{
|
|
550
574
|
clientCallName: 'client.nks.clusters.controllers.volumes.list',
|
|
@@ -553,10 +577,10 @@ export const sdkMethods = [
|
|
|
553
577
|
httpPath: '/v1/nks/clusters/{cluster_id}/controllers/{controller_id}/volumes',
|
|
554
578
|
},
|
|
555
579
|
{
|
|
556
|
-
clientCallName: 'client.nks.clusters.
|
|
557
|
-
fullyQualifiedName: 'nks.clusters.
|
|
580
|
+
clientCallName: 'client.nks.clusters.loadBalancers.get',
|
|
581
|
+
fullyQualifiedName: 'nks.clusters.loadBalancers.get',
|
|
558
582
|
httpMethod: 'get',
|
|
559
|
-
httpPath: '/v1/nks/clusters/{cluster_id}/
|
|
583
|
+
httpPath: '/v1/nks/clusters/{cluster_id}/load_balancers/{load_balancer_id}',
|
|
560
584
|
},
|
|
561
585
|
{
|
|
562
586
|
clientCallName: 'client.nks.clusters.loadBalancers.update',
|
|
@@ -570,30 +594,24 @@ export const sdkMethods = [
|
|
|
570
594
|
httpMethod: 'get',
|
|
571
595
|
httpPath: '/v1/nks/clusters/{cluster_id}/load_balancers',
|
|
572
596
|
},
|
|
573
|
-
{
|
|
574
|
-
clientCallName: 'client.nks.clusters.loadBalancers.get',
|
|
575
|
-
fullyQualifiedName: 'nks.clusters.loadBalancers.get',
|
|
576
|
-
httpMethod: 'get',
|
|
577
|
-
httpPath: '/v1/nks/clusters/{cluster_id}/load_balancers/{load_balancer_id}',
|
|
578
|
-
},
|
|
579
597
|
{
|
|
580
598
|
clientCallName: 'client.nks.clusters.pools.create',
|
|
581
599
|
fullyQualifiedName: 'nks.clusters.pools.create',
|
|
582
600
|
httpMethod: 'post',
|
|
583
601
|
httpPath: '/v1/nks/clusters/{cluster_id}/pools',
|
|
584
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
|
+
},
|
|
585
609
|
{
|
|
586
610
|
clientCallName: 'client.nks.clusters.pools.update',
|
|
587
611
|
fullyQualifiedName: 'nks.clusters.pools.update',
|
|
588
612
|
httpMethod: 'patch',
|
|
589
613
|
httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}',
|
|
590
614
|
},
|
|
591
|
-
{
|
|
592
|
-
clientCallName: 'client.nks.clusters.pools.list',
|
|
593
|
-
fullyQualifiedName: 'nks.clusters.pools.list',
|
|
594
|
-
httpMethod: 'get',
|
|
595
|
-
httpPath: '/v1/nks/clusters/{cluster_id}/pools',
|
|
596
|
-
},
|
|
597
615
|
{
|
|
598
616
|
clientCallName: 'client.nks.clusters.pools.delete',
|
|
599
617
|
fullyQualifiedName: 'nks.clusters.pools.delete',
|
|
@@ -601,10 +619,10 @@ export const sdkMethods = [
|
|
|
601
619
|
httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}',
|
|
602
620
|
},
|
|
603
621
|
{
|
|
604
|
-
clientCallName: 'client.nks.clusters.pools.
|
|
605
|
-
fullyQualifiedName: 'nks.clusters.pools.
|
|
622
|
+
clientCallName: 'client.nks.clusters.pools.list',
|
|
623
|
+
fullyQualifiedName: 'nks.clusters.pools.list',
|
|
606
624
|
httpMethod: 'get',
|
|
607
|
-
httpPath: '/v1/nks/clusters/{cluster_id}/pools
|
|
625
|
+
httpPath: '/v1/nks/clusters/{cluster_id}/pools',
|
|
608
626
|
},
|
|
609
627
|
{
|
|
610
628
|
clientCallName: 'client.nks.clusters.pools.availability.create',
|
|
@@ -619,10 +637,10 @@ export const sdkMethods = [
|
|
|
619
637
|
httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}/availability',
|
|
620
638
|
},
|
|
621
639
|
{
|
|
622
|
-
clientCallName: 'client.nks.clusters.pools.nodes.
|
|
623
|
-
fullyQualifiedName: 'nks.clusters.pools.nodes.
|
|
640
|
+
clientCallName: 'client.nks.clusters.pools.nodes.get',
|
|
641
|
+
fullyQualifiedName: 'nks.clusters.pools.nodes.get',
|
|
624
642
|
httpMethod: 'get',
|
|
625
|
-
httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}/nodes',
|
|
643
|
+
httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}/nodes/{node_id}',
|
|
626
644
|
},
|
|
627
645
|
{
|
|
628
646
|
clientCallName: 'client.nks.clusters.pools.nodes.delete',
|
|
@@ -631,16 +649,10 @@ export const sdkMethods = [
|
|
|
631
649
|
httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}/nodes/{node_id}',
|
|
632
650
|
},
|
|
633
651
|
{
|
|
634
|
-
clientCallName: 'client.nks.clusters.pools.nodes.
|
|
635
|
-
fullyQualifiedName: 'nks.clusters.pools.nodes.
|
|
636
|
-
httpMethod: 'get',
|
|
637
|
-
httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}/nodes/{node_id}',
|
|
638
|
-
},
|
|
639
|
-
{
|
|
640
|
-
clientCallName: 'client.nks.clusters.pools.nodes.volumes.list',
|
|
641
|
-
fullyQualifiedName: 'nks.clusters.pools.nodes.volumes.list',
|
|
652
|
+
clientCallName: 'client.nks.clusters.pools.nodes.list',
|
|
653
|
+
fullyQualifiedName: 'nks.clusters.pools.nodes.list',
|
|
642
654
|
httpMethod: 'get',
|
|
643
|
-
httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}/nodes
|
|
655
|
+
httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}/nodes',
|
|
644
656
|
},
|
|
645
657
|
{
|
|
646
658
|
clientCallName: 'client.nks.clusters.pools.nodes.volumes.get',
|
|
@@ -648,6 +660,12 @@ export const sdkMethods = [
|
|
|
648
660
|
httpMethod: 'get',
|
|
649
661
|
httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}/nodes/{node_id}/volumes/{volume_id}',
|
|
650
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
|
+
},
|
|
651
669
|
];
|
|
652
670
|
function allowedMethodsForCodeTool(options) {
|
|
653
671
|
if (!options) {
|