@nirvana-labs/nirvana-mcp 1.91.1 → 1.91.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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.js +339 -339
- package/local-docs-search.js.map +1 -1
- package/local-docs-search.mjs +339 -339
- package/local-docs-search.mjs.map +1 -1
- package/methods.js +177 -177
- package/methods.js.map +1 -1
- package/methods.mjs +177 -177
- 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 +1 -1
- package/server.js.map +1 -1
- package/server.mjs +1 -1
- package/server.mjs.map +1 -1
- 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 +450 -450
- package/src/methods.ts +177 -177
- package/src/options.ts +9 -9
- package/src/server.ts +1 -1
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,36 +88,36 @@ 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.list',
|
|
99
|
-
fullyQualifiedName: 'organizations.memberships.list',
|
|
100
|
-
httpMethod: 'get',
|
|
101
|
-
httpPath: '/v1/organizations/{organization_id}/memberships',
|
|
102
|
-
},
|
|
103
97
|
{
|
|
104
98
|
clientCallName: 'client.organizations.memberships.get',
|
|
105
99
|
fullyQualifiedName: 'organizations.memberships.get',
|
|
106
100
|
httpMethod: 'get',
|
|
107
101
|
httpPath: '/v1/organizations/{organization_id}/memberships/{membership_id}',
|
|
108
102
|
},
|
|
103
|
+
{
|
|
104
|
+
clientCallName: 'client.organizations.memberships.list',
|
|
105
|
+
fullyQualifiedName: 'organizations.memberships.list',
|
|
106
|
+
httpMethod: 'get',
|
|
107
|
+
httpPath: '/v1/organizations/{organization_id}/memberships',
|
|
108
|
+
},
|
|
109
109
|
{
|
|
110
110
|
clientCallName: 'client.organizations.address.create',
|
|
111
111
|
fullyQualifiedName: 'organizations.address.create',
|
|
112
112
|
httpMethod: 'post',
|
|
113
113
|
httpPath: '/v1/organizations/{organization_id}/address',
|
|
114
114
|
},
|
|
115
|
+
{
|
|
116
|
+
clientCallName: 'client.organizations.address.get',
|
|
117
|
+
fullyQualifiedName: 'organizations.address.get',
|
|
118
|
+
httpMethod: 'get',
|
|
119
|
+
httpPath: '/v1/organizations/{organization_id}/address',
|
|
120
|
+
},
|
|
115
121
|
{
|
|
116
122
|
clientCallName: 'client.organizations.address.update',
|
|
117
123
|
fullyQualifiedName: 'organizations.address.update',
|
|
@@ -119,10 +125,10 @@ exports.sdkMethods = [
|
|
|
119
125
|
httpPath: '/v1/organizations/{organization_id}/address',
|
|
120
126
|
},
|
|
121
127
|
{
|
|
122
|
-
clientCallName: 'client.
|
|
123
|
-
fullyQualifiedName: '
|
|
128
|
+
clientCallName: 'client.quotas.get',
|
|
129
|
+
fullyQualifiedName: 'quotas.get',
|
|
124
130
|
httpMethod: 'get',
|
|
125
|
-
httpPath: '/v1/
|
|
131
|
+
httpPath: '/v1/quotas/{region}',
|
|
126
132
|
},
|
|
127
133
|
{
|
|
128
134
|
clientCallName: 'client.quotas.list',
|
|
@@ -131,10 +137,10 @@ exports.sdkMethods = [
|
|
|
131
137
|
httpPath: '/v1/quotas',
|
|
132
138
|
},
|
|
133
139
|
{
|
|
134
|
-
clientCallName: 'client.
|
|
135
|
-
fullyQualifiedName: '
|
|
140
|
+
clientCallName: 'client.usage.get',
|
|
141
|
+
fullyQualifiedName: 'usage.get',
|
|
136
142
|
httpMethod: 'get',
|
|
137
|
-
httpPath: '/v1/
|
|
143
|
+
httpPath: '/v1/usage/{resource_id}',
|
|
138
144
|
},
|
|
139
145
|
{
|
|
140
146
|
clientCallName: 'client.usage.list',
|
|
@@ -143,10 +149,10 @@ exports.sdkMethods = [
|
|
|
143
149
|
httpPath: '/v1/usage',
|
|
144
150
|
},
|
|
145
151
|
{
|
|
146
|
-
clientCallName: 'client.
|
|
147
|
-
fullyQualifiedName: '
|
|
152
|
+
clientCallName: 'client.auditLogs.get',
|
|
153
|
+
fullyQualifiedName: 'auditLogs.get',
|
|
148
154
|
httpMethod: 'get',
|
|
149
|
-
httpPath: '/v1/
|
|
155
|
+
httpPath: '/v1/audit_logs/{audit_log_id}',
|
|
150
156
|
},
|
|
151
157
|
{
|
|
152
158
|
clientCallName: 'client.auditLogs.list',
|
|
@@ -154,30 +160,24 @@ exports.sdkMethods = [
|
|
|
154
160
|
httpMethod: 'get',
|
|
155
161
|
httpPath: '/v1/audit_logs',
|
|
156
162
|
},
|
|
157
|
-
{
|
|
158
|
-
clientCallName: 'client.auditLogs.get',
|
|
159
|
-
fullyQualifiedName: 'auditLogs.get',
|
|
160
|
-
httpMethod: 'get',
|
|
161
|
-
httpPath: '/v1/audit_logs/{audit_log_id}',
|
|
162
|
-
},
|
|
163
163
|
{
|
|
164
164
|
clientCallName: 'client.projects.create',
|
|
165
165
|
fullyQualifiedName: 'projects.create',
|
|
166
166
|
httpMethod: 'post',
|
|
167
167
|
httpPath: '/v1/projects',
|
|
168
168
|
},
|
|
169
|
+
{
|
|
170
|
+
clientCallName: 'client.projects.get',
|
|
171
|
+
fullyQualifiedName: 'projects.get',
|
|
172
|
+
httpMethod: 'get',
|
|
173
|
+
httpPath: '/v1/projects/{project_id}',
|
|
174
|
+
},
|
|
169
175
|
{
|
|
170
176
|
clientCallName: 'client.projects.update',
|
|
171
177
|
fullyQualifiedName: 'projects.update',
|
|
172
178
|
httpMethod: 'patch',
|
|
173
179
|
httpPath: '/v1/projects/{project_id}',
|
|
174
180
|
},
|
|
175
|
-
{
|
|
176
|
-
clientCallName: 'client.projects.list',
|
|
177
|
-
fullyQualifiedName: 'projects.list',
|
|
178
|
-
httpMethod: 'get',
|
|
179
|
-
httpPath: '/v1/projects',
|
|
180
|
-
},
|
|
181
181
|
{
|
|
182
182
|
clientCallName: 'client.projects.delete',
|
|
183
183
|
fullyQualifiedName: 'projects.delete',
|
|
@@ -185,16 +185,10 @@ exports.sdkMethods = [
|
|
|
185
185
|
httpPath: '/v1/projects/{project_id}',
|
|
186
186
|
},
|
|
187
187
|
{
|
|
188
|
-
clientCallName: 'client.projects.
|
|
189
|
-
fullyQualifiedName: 'projects.
|
|
190
|
-
httpMethod: 'get',
|
|
191
|
-
httpPath: '/v1/projects/{project_id}',
|
|
192
|
-
},
|
|
193
|
-
{
|
|
194
|
-
clientCallName: 'client.regions.list',
|
|
195
|
-
fullyQualifiedName: 'regions.list',
|
|
188
|
+
clientCallName: 'client.projects.list',
|
|
189
|
+
fullyQualifiedName: 'projects.list',
|
|
196
190
|
httpMethod: 'get',
|
|
197
|
-
httpPath: '/v1/
|
|
191
|
+
httpPath: '/v1/projects',
|
|
198
192
|
},
|
|
199
193
|
{
|
|
200
194
|
clientCallName: 'client.regions.get',
|
|
@@ -203,10 +197,10 @@ exports.sdkMethods = [
|
|
|
203
197
|
httpPath: '/v1/regions/{name}',
|
|
204
198
|
},
|
|
205
199
|
{
|
|
206
|
-
clientCallName: 'client.
|
|
207
|
-
fullyQualifiedName: '
|
|
200
|
+
clientCallName: 'client.regions.list',
|
|
201
|
+
fullyQualifiedName: 'regions.list',
|
|
208
202
|
httpMethod: 'get',
|
|
209
|
-
httpPath: '/v1/
|
|
203
|
+
httpPath: '/v1/regions',
|
|
210
204
|
},
|
|
211
205
|
{
|
|
212
206
|
clientCallName: 'client.instanceTypes.get',
|
|
@@ -214,24 +208,30 @@ exports.sdkMethods = [
|
|
|
214
208
|
httpMethod: 'get',
|
|
215
209
|
httpPath: '/v1/instance_types/{region}/{name}',
|
|
216
210
|
},
|
|
211
|
+
{
|
|
212
|
+
clientCallName: 'client.instanceTypes.list',
|
|
213
|
+
fullyQualifiedName: 'instanceTypes.list',
|
|
214
|
+
httpMethod: 'get',
|
|
215
|
+
httpPath: '/v1/instance_types',
|
|
216
|
+
},
|
|
217
217
|
{
|
|
218
218
|
clientCallName: 'client.compute.vms.create',
|
|
219
219
|
fullyQualifiedName: 'compute.vms.create',
|
|
220
220
|
httpMethod: 'post',
|
|
221
221
|
httpPath: '/v1/compute/vms',
|
|
222
222
|
},
|
|
223
|
+
{
|
|
224
|
+
clientCallName: 'client.compute.vms.get',
|
|
225
|
+
fullyQualifiedName: 'compute.vms.get',
|
|
226
|
+
httpMethod: 'get',
|
|
227
|
+
httpPath: '/v1/compute/vms/{vm_id}',
|
|
228
|
+
},
|
|
223
229
|
{
|
|
224
230
|
clientCallName: 'client.compute.vms.update',
|
|
225
231
|
fullyQualifiedName: 'compute.vms.update',
|
|
226
232
|
httpMethod: 'patch',
|
|
227
233
|
httpPath: '/v1/compute/vms/{vm_id}',
|
|
228
234
|
},
|
|
229
|
-
{
|
|
230
|
-
clientCallName: 'client.compute.vms.list',
|
|
231
|
-
fullyQualifiedName: 'compute.vms.list',
|
|
232
|
-
httpMethod: 'get',
|
|
233
|
-
httpPath: '/v1/compute/vms',
|
|
234
|
-
},
|
|
235
235
|
{
|
|
236
236
|
clientCallName: 'client.compute.vms.delete',
|
|
237
237
|
fullyQualifiedName: 'compute.vms.delete',
|
|
@@ -239,10 +239,10 @@ exports.sdkMethods = [
|
|
|
239
239
|
httpPath: '/v1/compute/vms/{vm_id}',
|
|
240
240
|
},
|
|
241
241
|
{
|
|
242
|
-
clientCallName: 'client.compute.vms.
|
|
243
|
-
fullyQualifiedName: 'compute.vms.
|
|
242
|
+
clientCallName: 'client.compute.vms.list',
|
|
243
|
+
fullyQualifiedName: 'compute.vms.list',
|
|
244
244
|
httpMethod: 'get',
|
|
245
|
-
httpPath: '/v1/compute/vms
|
|
245
|
+
httpPath: '/v1/compute/vms',
|
|
246
246
|
},
|
|
247
247
|
{
|
|
248
248
|
clientCallName: 'client.compute.vms.restart',
|
|
@@ -280,24 +280,30 @@ exports.sdkMethods = [
|
|
|
280
280
|
httpMethod: 'post',
|
|
281
281
|
httpPath: '/v1/compute/volumes',
|
|
282
282
|
},
|
|
283
|
+
{
|
|
284
|
+
clientCallName: 'client.compute.volumes.get',
|
|
285
|
+
fullyQualifiedName: 'compute.volumes.get',
|
|
286
|
+
httpMethod: 'get',
|
|
287
|
+
httpPath: '/v1/compute/volumes/{volume_id}',
|
|
288
|
+
},
|
|
283
289
|
{
|
|
284
290
|
clientCallName: 'client.compute.volumes.update',
|
|
285
291
|
fullyQualifiedName: 'compute.volumes.update',
|
|
286
292
|
httpMethod: 'patch',
|
|
287
293
|
httpPath: '/v1/compute/volumes/{volume_id}',
|
|
288
294
|
},
|
|
289
|
-
{
|
|
290
|
-
clientCallName: 'client.compute.volumes.list',
|
|
291
|
-
fullyQualifiedName: 'compute.volumes.list',
|
|
292
|
-
httpMethod: 'get',
|
|
293
|
-
httpPath: '/v1/compute/volumes',
|
|
294
|
-
},
|
|
295
295
|
{
|
|
296
296
|
clientCallName: 'client.compute.volumes.delete',
|
|
297
297
|
fullyQualifiedName: 'compute.volumes.delete',
|
|
298
298
|
httpMethod: 'delete',
|
|
299
299
|
httpPath: '/v1/compute/volumes/{volume_id}',
|
|
300
300
|
},
|
|
301
|
+
{
|
|
302
|
+
clientCallName: 'client.compute.volumes.list',
|
|
303
|
+
fullyQualifiedName: 'compute.volumes.list',
|
|
304
|
+
httpMethod: 'get',
|
|
305
|
+
httpPath: '/v1/compute/volumes',
|
|
306
|
+
},
|
|
301
307
|
{
|
|
302
308
|
clientCallName: 'client.compute.volumes.attach',
|
|
303
309
|
fullyQualifiedName: 'compute.volumes.attach',
|
|
@@ -310,12 +316,6 @@ exports.sdkMethods = [
|
|
|
310
316
|
httpMethod: 'post',
|
|
311
317
|
httpPath: '/v1/compute/volumes/{volume_id}/detach',
|
|
312
318
|
},
|
|
313
|
-
{
|
|
314
|
-
clientCallName: 'client.compute.volumes.get',
|
|
315
|
-
fullyQualifiedName: 'compute.volumes.get',
|
|
316
|
-
httpMethod: 'get',
|
|
317
|
-
httpPath: '/v1/compute/volumes/{volume_id}',
|
|
318
|
-
},
|
|
319
319
|
{
|
|
320
320
|
clientCallName: 'client.compute.volumes.availability.create',
|
|
321
321
|
fullyQualifiedName: 'compute.volumes.availability.create',
|
|
@@ -334,18 +334,18 @@ exports.sdkMethods = [
|
|
|
334
334
|
httpMethod: 'post',
|
|
335
335
|
httpPath: '/v1/networking/vpcs',
|
|
336
336
|
},
|
|
337
|
+
{
|
|
338
|
+
clientCallName: 'client.networking.vpcs.get',
|
|
339
|
+
fullyQualifiedName: 'networking.vpcs.get',
|
|
340
|
+
httpMethod: 'get',
|
|
341
|
+
httpPath: '/v1/networking/vpcs/{vpc_id}',
|
|
342
|
+
},
|
|
337
343
|
{
|
|
338
344
|
clientCallName: 'client.networking.vpcs.update',
|
|
339
345
|
fullyQualifiedName: 'networking.vpcs.update',
|
|
340
346
|
httpMethod: 'patch',
|
|
341
347
|
httpPath: '/v1/networking/vpcs/{vpc_id}',
|
|
342
348
|
},
|
|
343
|
-
{
|
|
344
|
-
clientCallName: 'client.networking.vpcs.list',
|
|
345
|
-
fullyQualifiedName: 'networking.vpcs.list',
|
|
346
|
-
httpMethod: 'get',
|
|
347
|
-
httpPath: '/v1/networking/vpcs',
|
|
348
|
-
},
|
|
349
349
|
{
|
|
350
350
|
clientCallName: 'client.networking.vpcs.delete',
|
|
351
351
|
fullyQualifiedName: 'networking.vpcs.delete',
|
|
@@ -353,10 +353,10 @@ exports.sdkMethods = [
|
|
|
353
353
|
httpPath: '/v1/networking/vpcs/{vpc_id}',
|
|
354
354
|
},
|
|
355
355
|
{
|
|
356
|
-
clientCallName: 'client.networking.vpcs.
|
|
357
|
-
fullyQualifiedName: 'networking.vpcs.
|
|
356
|
+
clientCallName: 'client.networking.vpcs.list',
|
|
357
|
+
fullyQualifiedName: 'networking.vpcs.list',
|
|
358
358
|
httpMethod: 'get',
|
|
359
|
-
httpPath: '/v1/networking/vpcs
|
|
359
|
+
httpPath: '/v1/networking/vpcs',
|
|
360
360
|
},
|
|
361
361
|
{
|
|
362
362
|
clientCallName: 'client.networking.vpcs.availability.create',
|
|
@@ -376,18 +376,18 @@ exports.sdkMethods = [
|
|
|
376
376
|
httpMethod: 'post',
|
|
377
377
|
httpPath: '/v1/networking/vpcs/{vpc_id}/firewall_rules',
|
|
378
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
|
+
},
|
|
379
385
|
{
|
|
380
386
|
clientCallName: 'client.networking.firewallRules.update',
|
|
381
387
|
fullyQualifiedName: 'networking.firewallRules.update',
|
|
382
388
|
httpMethod: 'patch',
|
|
383
389
|
httpPath: '/v1/networking/vpcs/{vpc_id}/firewall_rules/{firewall_rule_id}',
|
|
384
390
|
},
|
|
385
|
-
{
|
|
386
|
-
clientCallName: 'client.networking.firewallRules.list',
|
|
387
|
-
fullyQualifiedName: 'networking.firewallRules.list',
|
|
388
|
-
httpMethod: 'get',
|
|
389
|
-
httpPath: '/v1/networking/vpcs/{vpc_id}/firewall_rules',
|
|
390
|
-
},
|
|
391
391
|
{
|
|
392
392
|
clientCallName: 'client.networking.firewallRules.delete',
|
|
393
393
|
fullyQualifiedName: 'networking.firewallRules.delete',
|
|
@@ -395,10 +395,10 @@ exports.sdkMethods = [
|
|
|
395
395
|
httpPath: '/v1/networking/vpcs/{vpc_id}/firewall_rules/{firewall_rule_id}',
|
|
396
396
|
},
|
|
397
397
|
{
|
|
398
|
-
clientCallName: 'client.networking.firewallRules.
|
|
399
|
-
fullyQualifiedName: 'networking.firewallRules.
|
|
398
|
+
clientCallName: 'client.networking.firewallRules.list',
|
|
399
|
+
fullyQualifiedName: 'networking.firewallRules.list',
|
|
400
400
|
httpMethod: 'get',
|
|
401
|
-
httpPath: '/v1/networking/vpcs/{vpc_id}/firewall_rules
|
|
401
|
+
httpPath: '/v1/networking/vpcs/{vpc_id}/firewall_rules',
|
|
402
402
|
},
|
|
403
403
|
{
|
|
404
404
|
clientCallName: 'client.networking.connect.connections.create',
|
|
@@ -406,18 +406,18 @@ exports.sdkMethods = [
|
|
|
406
406
|
httpMethod: 'post',
|
|
407
407
|
httpPath: '/v1/networking/connect/connections',
|
|
408
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
|
+
},
|
|
409
415
|
{
|
|
410
416
|
clientCallName: 'client.networking.connect.connections.update',
|
|
411
417
|
fullyQualifiedName: 'networking.connect.connections.update',
|
|
412
418
|
httpMethod: 'patch',
|
|
413
419
|
httpPath: '/v1/networking/connect/connections/{connection_id}',
|
|
414
420
|
},
|
|
415
|
-
{
|
|
416
|
-
clientCallName: 'client.networking.connect.connections.list',
|
|
417
|
-
fullyQualifiedName: 'networking.connect.connections.list',
|
|
418
|
-
httpMethod: 'get',
|
|
419
|
-
httpPath: '/v1/networking/connect/connections',
|
|
420
|
-
},
|
|
421
421
|
{
|
|
422
422
|
clientCallName: 'client.networking.connect.connections.delete',
|
|
423
423
|
fullyQualifiedName: 'networking.connect.connections.delete',
|
|
@@ -425,10 +425,10 @@ exports.sdkMethods = [
|
|
|
425
425
|
httpPath: '/v1/networking/connect/connections/{connection_id}',
|
|
426
426
|
},
|
|
427
427
|
{
|
|
428
|
-
clientCallName: 'client.networking.connect.connections.
|
|
429
|
-
fullyQualifiedName: 'networking.connect.connections.
|
|
428
|
+
clientCallName: 'client.networking.connect.connections.list',
|
|
429
|
+
fullyQualifiedName: 'networking.connect.connections.list',
|
|
430
430
|
httpMethod: 'get',
|
|
431
|
-
httpPath: '/v1/networking/connect/connections
|
|
431
|
+
httpPath: '/v1/networking/connect/connections',
|
|
432
432
|
},
|
|
433
433
|
{
|
|
434
434
|
clientCallName: 'client.networking.connect.routes.list',
|
|
@@ -442,18 +442,18 @@ exports.sdkMethods = [
|
|
|
442
442
|
httpMethod: 'post',
|
|
443
443
|
httpPath: '/v1/rpc_nodes/flex',
|
|
444
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
|
+
},
|
|
445
451
|
{
|
|
446
452
|
clientCallName: 'client.rpcNodes.flex.update',
|
|
447
453
|
fullyQualifiedName: 'rpcNodes.flex.update',
|
|
448
454
|
httpMethod: 'patch',
|
|
449
455
|
httpPath: '/v1/rpc_nodes/flex/{node_id}',
|
|
450
456
|
},
|
|
451
|
-
{
|
|
452
|
-
clientCallName: 'client.rpcNodes.flex.list',
|
|
453
|
-
fullyQualifiedName: 'rpcNodes.flex.list',
|
|
454
|
-
httpMethod: 'get',
|
|
455
|
-
httpPath: '/v1/rpc_nodes/flex',
|
|
456
|
-
},
|
|
457
457
|
{
|
|
458
458
|
clientCallName: 'client.rpcNodes.flex.delete',
|
|
459
459
|
fullyQualifiedName: 'rpcNodes.flex.delete',
|
|
@@ -461,10 +461,10 @@ exports.sdkMethods = [
|
|
|
461
461
|
httpPath: '/v1/rpc_nodes/flex/{node_id}',
|
|
462
462
|
},
|
|
463
463
|
{
|
|
464
|
-
clientCallName: 'client.rpcNodes.flex.
|
|
465
|
-
fullyQualifiedName: 'rpcNodes.flex.
|
|
464
|
+
clientCallName: 'client.rpcNodes.flex.list',
|
|
465
|
+
fullyQualifiedName: 'rpcNodes.flex.list',
|
|
466
466
|
httpMethod: 'get',
|
|
467
|
-
httpPath: '/v1/rpc_nodes/flex
|
|
467
|
+
httpPath: '/v1/rpc_nodes/flex',
|
|
468
468
|
},
|
|
469
469
|
{
|
|
470
470
|
clientCallName: 'client.rpcNodes.flex.blockchains.list',
|
|
@@ -472,18 +472,18 @@ exports.sdkMethods = [
|
|
|
472
472
|
httpMethod: 'get',
|
|
473
473
|
httpPath: '/v1/rpc_nodes/flex/blockchains',
|
|
474
474
|
},
|
|
475
|
-
{
|
|
476
|
-
clientCallName: 'client.rpcNodes.dedicated.list',
|
|
477
|
-
fullyQualifiedName: 'rpcNodes.dedicated.list',
|
|
478
|
-
httpMethod: 'get',
|
|
479
|
-
httpPath: '/v1/rpc_nodes/dedicated',
|
|
480
|
-
},
|
|
481
475
|
{
|
|
482
476
|
clientCallName: 'client.rpcNodes.dedicated.get',
|
|
483
477
|
fullyQualifiedName: 'rpcNodes.dedicated.get',
|
|
484
478
|
httpMethod: 'get',
|
|
485
479
|
httpPath: '/v1/rpc_nodes/dedicated/{node_id}',
|
|
486
480
|
},
|
|
481
|
+
{
|
|
482
|
+
clientCallName: 'client.rpcNodes.dedicated.list',
|
|
483
|
+
fullyQualifiedName: 'rpcNodes.dedicated.list',
|
|
484
|
+
httpMethod: 'get',
|
|
485
|
+
httpPath: '/v1/rpc_nodes/dedicated',
|
|
486
|
+
},
|
|
487
487
|
{
|
|
488
488
|
clientCallName: 'client.rpcNodes.dedicated.blockchains.list',
|
|
489
489
|
fullyQualifiedName: 'rpcNodes.dedicated.blockchains.list',
|
|
@@ -502,18 +502,18 @@ exports.sdkMethods = [
|
|
|
502
502
|
httpMethod: 'post',
|
|
503
503
|
httpPath: '/v1/nks/clusters',
|
|
504
504
|
},
|
|
505
|
+
{
|
|
506
|
+
clientCallName: 'client.nks.clusters.get',
|
|
507
|
+
fullyQualifiedName: 'nks.clusters.get',
|
|
508
|
+
httpMethod: 'get',
|
|
509
|
+
httpPath: '/v1/nks/clusters/{cluster_id}',
|
|
510
|
+
},
|
|
505
511
|
{
|
|
506
512
|
clientCallName: 'client.nks.clusters.update',
|
|
507
513
|
fullyQualifiedName: 'nks.clusters.update',
|
|
508
514
|
httpMethod: 'patch',
|
|
509
515
|
httpPath: '/v1/nks/clusters/{cluster_id}',
|
|
510
516
|
},
|
|
511
|
-
{
|
|
512
|
-
clientCallName: 'client.nks.clusters.list',
|
|
513
|
-
fullyQualifiedName: 'nks.clusters.list',
|
|
514
|
-
httpMethod: 'get',
|
|
515
|
-
httpPath: '/v1/nks/clusters',
|
|
516
|
-
},
|
|
517
517
|
{
|
|
518
518
|
clientCallName: 'client.nks.clusters.delete',
|
|
519
519
|
fullyQualifiedName: 'nks.clusters.delete',
|
|
@@ -521,10 +521,10 @@ exports.sdkMethods = [
|
|
|
521
521
|
httpPath: '/v1/nks/clusters/{cluster_id}',
|
|
522
522
|
},
|
|
523
523
|
{
|
|
524
|
-
clientCallName: 'client.nks.clusters.
|
|
525
|
-
fullyQualifiedName: 'nks.clusters.
|
|
524
|
+
clientCallName: 'client.nks.clusters.list',
|
|
525
|
+
fullyQualifiedName: 'nks.clusters.list',
|
|
526
526
|
httpMethod: 'get',
|
|
527
|
-
httpPath: '/v1/nks/clusters
|
|
527
|
+
httpPath: '/v1/nks/clusters',
|
|
528
528
|
},
|
|
529
529
|
{
|
|
530
530
|
clientCallName: 'client.nks.clusters.availability.create',
|
|
@@ -538,24 +538,30 @@ exports.sdkMethods = [
|
|
|
538
538
|
httpMethod: 'patch',
|
|
539
539
|
httpPath: '/v1/nks/clusters/{cluster_id}/availability',
|
|
540
540
|
},
|
|
541
|
-
{
|
|
542
|
-
clientCallName: 'client.nks.clusters.persistentVolumeClaims.list',
|
|
543
|
-
fullyQualifiedName: 'nks.clusters.persistentVolumeClaims.list',
|
|
544
|
-
httpMethod: 'get',
|
|
545
|
-
httpPath: '/v1/nks/clusters/{cluster_id}/persistent_volume_claims',
|
|
546
|
-
},
|
|
547
541
|
{
|
|
548
542
|
clientCallName: 'client.nks.clusters.persistentVolumeClaims.get',
|
|
549
543
|
fullyQualifiedName: 'nks.clusters.persistentVolumeClaims.get',
|
|
550
544
|
httpMethod: 'get',
|
|
551
545
|
httpPath: '/v1/nks/clusters/{cluster_id}/persistent_volume_claims/{persistent_volume_claim_id}',
|
|
552
546
|
},
|
|
547
|
+
{
|
|
548
|
+
clientCallName: 'client.nks.clusters.persistentVolumeClaims.list',
|
|
549
|
+
fullyQualifiedName: 'nks.clusters.persistentVolumeClaims.list',
|
|
550
|
+
httpMethod: 'get',
|
|
551
|
+
httpPath: '/v1/nks/clusters/{cluster_id}/persistent_volume_claims',
|
|
552
|
+
},
|
|
553
553
|
{
|
|
554
554
|
clientCallName: 'client.nks.clusters.kubeconfig.get',
|
|
555
555
|
fullyQualifiedName: 'nks.clusters.kubeconfig.get',
|
|
556
556
|
httpMethod: 'get',
|
|
557
557
|
httpPath: '/v1/nks/clusters/{cluster_id}/kubeconfig',
|
|
558
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
|
+
},
|
|
559
565
|
{
|
|
560
566
|
clientCallName: 'client.nks.clusters.controllers.list',
|
|
561
567
|
fullyQualifiedName: 'nks.clusters.controllers.list',
|
|
@@ -563,10 +569,10 @@ exports.sdkMethods = [
|
|
|
563
569
|
httpPath: '/v1/nks/clusters/{cluster_id}/controllers',
|
|
564
570
|
},
|
|
565
571
|
{
|
|
566
|
-
clientCallName: 'client.nks.clusters.controllers.get',
|
|
567
|
-
fullyQualifiedName: 'nks.clusters.controllers.get',
|
|
572
|
+
clientCallName: 'client.nks.clusters.controllers.volumes.get',
|
|
573
|
+
fullyQualifiedName: 'nks.clusters.controllers.volumes.get',
|
|
568
574
|
httpMethod: 'get',
|
|
569
|
-
httpPath: '/v1/nks/clusters/{cluster_id}/controllers/{controller_id}',
|
|
575
|
+
httpPath: '/v1/nks/clusters/{cluster_id}/controllers/{controller_id}/volumes/{volume_id}',
|
|
570
576
|
},
|
|
571
577
|
{
|
|
572
578
|
clientCallName: 'client.nks.clusters.controllers.volumes.list',
|
|
@@ -575,10 +581,10 @@ exports.sdkMethods = [
|
|
|
575
581
|
httpPath: '/v1/nks/clusters/{cluster_id}/controllers/{controller_id}/volumes',
|
|
576
582
|
},
|
|
577
583
|
{
|
|
578
|
-
clientCallName: 'client.nks.clusters.
|
|
579
|
-
fullyQualifiedName: 'nks.clusters.
|
|
584
|
+
clientCallName: 'client.nks.clusters.loadBalancers.get',
|
|
585
|
+
fullyQualifiedName: 'nks.clusters.loadBalancers.get',
|
|
580
586
|
httpMethod: 'get',
|
|
581
|
-
httpPath: '/v1/nks/clusters/{cluster_id}/
|
|
587
|
+
httpPath: '/v1/nks/clusters/{cluster_id}/load_balancers/{load_balancer_id}',
|
|
582
588
|
},
|
|
583
589
|
{
|
|
584
590
|
clientCallName: 'client.nks.clusters.loadBalancers.update',
|
|
@@ -592,30 +598,24 @@ exports.sdkMethods = [
|
|
|
592
598
|
httpMethod: 'get',
|
|
593
599
|
httpPath: '/v1/nks/clusters/{cluster_id}/load_balancers',
|
|
594
600
|
},
|
|
595
|
-
{
|
|
596
|
-
clientCallName: 'client.nks.clusters.loadBalancers.get',
|
|
597
|
-
fullyQualifiedName: 'nks.clusters.loadBalancers.get',
|
|
598
|
-
httpMethod: 'get',
|
|
599
|
-
httpPath: '/v1/nks/clusters/{cluster_id}/load_balancers/{load_balancer_id}',
|
|
600
|
-
},
|
|
601
601
|
{
|
|
602
602
|
clientCallName: 'client.nks.clusters.pools.create',
|
|
603
603
|
fullyQualifiedName: 'nks.clusters.pools.create',
|
|
604
604
|
httpMethod: 'post',
|
|
605
605
|
httpPath: '/v1/nks/clusters/{cluster_id}/pools',
|
|
606
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
|
+
},
|
|
607
613
|
{
|
|
608
614
|
clientCallName: 'client.nks.clusters.pools.update',
|
|
609
615
|
fullyQualifiedName: 'nks.clusters.pools.update',
|
|
610
616
|
httpMethod: 'patch',
|
|
611
617
|
httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}',
|
|
612
618
|
},
|
|
613
|
-
{
|
|
614
|
-
clientCallName: 'client.nks.clusters.pools.list',
|
|
615
|
-
fullyQualifiedName: 'nks.clusters.pools.list',
|
|
616
|
-
httpMethod: 'get',
|
|
617
|
-
httpPath: '/v1/nks/clusters/{cluster_id}/pools',
|
|
618
|
-
},
|
|
619
619
|
{
|
|
620
620
|
clientCallName: 'client.nks.clusters.pools.delete',
|
|
621
621
|
fullyQualifiedName: 'nks.clusters.pools.delete',
|
|
@@ -623,10 +623,10 @@ exports.sdkMethods = [
|
|
|
623
623
|
httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}',
|
|
624
624
|
},
|
|
625
625
|
{
|
|
626
|
-
clientCallName: 'client.nks.clusters.pools.
|
|
627
|
-
fullyQualifiedName: 'nks.clusters.pools.
|
|
626
|
+
clientCallName: 'client.nks.clusters.pools.list',
|
|
627
|
+
fullyQualifiedName: 'nks.clusters.pools.list',
|
|
628
628
|
httpMethod: 'get',
|
|
629
|
-
httpPath: '/v1/nks/clusters/{cluster_id}/pools
|
|
629
|
+
httpPath: '/v1/nks/clusters/{cluster_id}/pools',
|
|
630
630
|
},
|
|
631
631
|
{
|
|
632
632
|
clientCallName: 'client.nks.clusters.pools.availability.create',
|
|
@@ -641,10 +641,10 @@ exports.sdkMethods = [
|
|
|
641
641
|
httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}/availability',
|
|
642
642
|
},
|
|
643
643
|
{
|
|
644
|
-
clientCallName: 'client.nks.clusters.pools.nodes.
|
|
645
|
-
fullyQualifiedName: 'nks.clusters.pools.nodes.
|
|
644
|
+
clientCallName: 'client.nks.clusters.pools.nodes.get',
|
|
645
|
+
fullyQualifiedName: 'nks.clusters.pools.nodes.get',
|
|
646
646
|
httpMethod: 'get',
|
|
647
|
-
httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}/nodes',
|
|
647
|
+
httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}/nodes/{node_id}',
|
|
648
648
|
},
|
|
649
649
|
{
|
|
650
650
|
clientCallName: 'client.nks.clusters.pools.nodes.delete',
|
|
@@ -653,16 +653,10 @@ exports.sdkMethods = [
|
|
|
653
653
|
httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}/nodes/{node_id}',
|
|
654
654
|
},
|
|
655
655
|
{
|
|
656
|
-
clientCallName: 'client.nks.clusters.pools.nodes.
|
|
657
|
-
fullyQualifiedName: 'nks.clusters.pools.nodes.
|
|
658
|
-
httpMethod: 'get',
|
|
659
|
-
httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}/nodes/{node_id}',
|
|
660
|
-
},
|
|
661
|
-
{
|
|
662
|
-
clientCallName: 'client.nks.clusters.pools.nodes.volumes.list',
|
|
663
|
-
fullyQualifiedName: 'nks.clusters.pools.nodes.volumes.list',
|
|
656
|
+
clientCallName: 'client.nks.clusters.pools.nodes.list',
|
|
657
|
+
fullyQualifiedName: 'nks.clusters.pools.nodes.list',
|
|
664
658
|
httpMethod: 'get',
|
|
665
|
-
httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}/nodes
|
|
659
|
+
httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}/nodes',
|
|
666
660
|
},
|
|
667
661
|
{
|
|
668
662
|
clientCallName: 'client.nks.clusters.pools.nodes.volumes.get',
|
|
@@ -670,6 +664,12 @@ exports.sdkMethods = [
|
|
|
670
664
|
httpMethod: 'get',
|
|
671
665
|
httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}/nodes/{node_id}/volumes/{volume_id}',
|
|
672
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
|
+
},
|
|
673
673
|
];
|
|
674
674
|
function allowedMethodsForCodeTool(options) {
|
|
675
675
|
if (!options) {
|