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