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