@cloudfleet/sdk 0.0.1-76e2a56 → 0.0.1-7a6b7de
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/dist/client/client.gen.d.ts +3 -0
- package/dist/client/client.gen.d.ts.map +1 -0
- package/dist/client/client.gen.js +236 -0
- package/dist/client/client.gen.js.map +1 -0
- package/dist/client/index.d.ts +9 -0
- package/dist/client/index.d.ts.map +1 -0
- package/dist/client/index.js +7 -0
- package/dist/client/index.js.map +1 -0
- package/dist/client/types.gen.d.ts +118 -0
- package/dist/client/types.gen.d.ts.map +1 -0
- package/dist/client/types.gen.js +3 -0
- package/dist/client/types.gen.js.map +1 -0
- package/dist/client/utils.gen.d.ts +34 -0
- package/dist/client/utils.gen.d.ts.map +1 -0
- package/dist/client/utils.gen.js +229 -0
- package/dist/client/utils.gen.js.map +1 -0
- package/dist/client.gen.d.ts +4 -4
- package/dist/client.gen.d.ts.map +1 -1
- package/dist/client.gen.js +2 -4
- package/dist/client.gen.js.map +1 -1
- package/dist/core/auth.gen.d.ts +19 -0
- package/dist/core/auth.gen.d.ts.map +1 -0
- package/dist/core/auth.gen.js +15 -0
- package/dist/core/auth.gen.js.map +1 -0
- package/dist/core/bodySerializer.gen.d.ts +26 -0
- package/dist/core/bodySerializer.gen.d.ts.map +1 -0
- package/dist/core/bodySerializer.gen.js +58 -0
- package/dist/core/bodySerializer.gen.js.map +1 -0
- package/dist/core/params.gen.d.ts +44 -0
- package/dist/core/params.gen.d.ts.map +1 -0
- package/dist/core/params.gen.js +101 -0
- package/dist/core/params.gen.js.map +1 -0
- package/dist/core/pathSerializer.gen.d.ts +34 -0
- package/dist/core/pathSerializer.gen.d.ts.map +1 -0
- package/dist/core/pathSerializer.gen.js +107 -0
- package/dist/core/pathSerializer.gen.js.map +1 -0
- package/dist/core/queryKeySerializer.gen.d.ts +19 -0
- package/dist/core/queryKeySerializer.gen.d.ts.map +1 -0
- package/dist/core/queryKeySerializer.gen.js +93 -0
- package/dist/core/queryKeySerializer.gen.js.map +1 -0
- package/dist/core/serverSentEvents.gen.d.ts +72 -0
- package/dist/core/serverSentEvents.gen.d.ts.map +1 -0
- package/dist/core/serverSentEvents.gen.js +134 -0
- package/dist/core/serverSentEvents.gen.js.map +1 -0
- package/dist/core/types.gen.d.ts +79 -0
- package/dist/core/types.gen.d.ts.map +1 -0
- package/dist/core/types.gen.js +3 -0
- package/dist/core/types.gen.js.map +1 -0
- package/dist/core/utils.gen.d.ts +20 -0
- package/dist/core/utils.gen.d.ts.map +1 -0
- package/dist/core/utils.gen.js +88 -0
- package/dist/core/utils.gen.js.map +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/schemas.gen.d.ts +959 -887
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +1436 -943
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +211 -142
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +274 -221
- package/dist/sdk.gen.js.map +1 -1
- package/dist/services/kubernetes/api.d.ts +196 -0
- package/dist/services/kubernetes/api.d.ts.map +1 -0
- package/dist/services/kubernetes/api.js +140 -0
- package/dist/services/kubernetes/api.js.map +1 -0
- package/dist/services/kubernetes/index.d.ts +44 -0
- package/dist/services/kubernetes/index.d.ts.map +1 -0
- package/dist/services/kubernetes/index.js +68 -0
- package/dist/services/kubernetes/index.js.map +1 -0
- package/dist/services/kubernetes/types.d.ts +1335 -0
- package/dist/services/kubernetes/types.d.ts.map +1 -0
- package/dist/services/kubernetes/types.js +2 -0
- package/dist/services/kubernetes/types.js.map +1 -0
- package/dist/types.gen.d.ts +904 -770
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +1679 -2400
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +673 -838
- package/dist/zod.gen.js.map +1 -1
- package/package.json +12 -5
package/dist/sdk.gen.js
CHANGED
|
@@ -1,472 +1,558 @@
|
|
|
1
1
|
// This file is auto-generated by @hey-api/openapi-ts
|
|
2
|
-
import { client
|
|
2
|
+
import { client } from './client.gen';
|
|
3
3
|
export class BillingService {
|
|
4
4
|
/**
|
|
5
5
|
* Get billing usage information.
|
|
6
|
-
* Returns aggregated usage information for the organization. For more information on billing and payments, see [Billing and pricing](https://cloudfleet.ai/docs/organization/billing/) section of documentaiton. This endpoint is available to all users in the organization.
|
|
7
6
|
*
|
|
8
|
-
|
|
9
|
-
static getUsage(options) {
|
|
10
|
-
return (options?.client ?? _heyApiClient).get({
|
|
11
|
-
url: '/billing/usage',
|
|
12
|
-
...options
|
|
13
|
-
});
|
|
14
|
-
}
|
|
15
|
-
/**
|
|
16
|
-
* Get billing balance information.
|
|
17
|
-
* Returns the current balance of the organization in USD as a floating-point number. For more information on billing and payments, see [Billing and pricing](https://cloudfleet.ai/docs/organization/billing/) section of documentaiton. This endpoint is available to all users in the organization.
|
|
7
|
+
* Returns aggregated usage information for the organization with facets for filtering. For more information on billing and payments, see [Billing and pricing](https://cloudfleet.ai/docs/organization/billing/) section of documentaiton. This endpoint is available to all users in the organization.
|
|
18
8
|
*
|
|
19
9
|
*/
|
|
20
|
-
static
|
|
21
|
-
return (options?.client ??
|
|
22
|
-
url: '/billing/balance',
|
|
23
|
-
...options
|
|
24
|
-
});
|
|
10
|
+
static getUsage(options) {
|
|
11
|
+
return (options?.client ?? client).get({ url: '/billing/usage', ...options });
|
|
25
12
|
}
|
|
26
13
|
/**
|
|
27
14
|
* Get organization payment method information.
|
|
15
|
+
*
|
|
28
16
|
* Returns the information about the payment card associated with the organization with sensitive information redacted. Payment details can be updated in the Cloudfleet console only, please visit https://console.cloudfleet.ai. This endpoint is available to all users in the organization.
|
|
29
17
|
*
|
|
30
18
|
*/
|
|
31
19
|
static getPaymentMethod(options) {
|
|
32
|
-
return (options?.client ??
|
|
33
|
-
url: '/billing/payment-method',
|
|
34
|
-
...options
|
|
35
|
-
});
|
|
20
|
+
return (options?.client ?? client).get({ url: '/billing/payment-method', ...options });
|
|
36
21
|
}
|
|
37
22
|
/**
|
|
38
23
|
* Get Stripe client secret.
|
|
24
|
+
*
|
|
39
25
|
* Endpoint returns the Stripe secret key for the organization. This key is used to securely update the payment method in the Cloudfleet console only, please visit https://console.cloudfleet.ai. This endpoint is available to administrators of the organization only.
|
|
40
26
|
*
|
|
41
27
|
*/
|
|
42
28
|
static getPaymentMethodSecret(options) {
|
|
43
|
-
return (options?.client ??
|
|
44
|
-
url: '/billing/payment-method',
|
|
45
|
-
...options
|
|
46
|
-
});
|
|
29
|
+
return (options?.client ?? client).put({ url: '/billing/payment-method', ...options });
|
|
47
30
|
}
|
|
48
31
|
/**
|
|
49
32
|
* List issued invoices.
|
|
33
|
+
*
|
|
50
34
|
* Returns a list of invoices for the organization. For more information on billing and payments, see [Billing and pricing](https://cloudfleet.ai/docs/organization/billing/) section of documentaiton. This endpoint is available to all users in the organization.
|
|
51
35
|
*
|
|
52
36
|
*/
|
|
53
37
|
static listInvoices(options) {
|
|
54
|
-
return (options
|
|
55
|
-
url: '/billing/invoices',
|
|
56
|
-
...options
|
|
57
|
-
});
|
|
58
|
-
}
|
|
59
|
-
/**
|
|
60
|
-
* Get invoice information.
|
|
61
|
-
* Returns a single Invoice as HTML referenced by id. This endpoint is available to all users in the organization.
|
|
62
|
-
*
|
|
63
|
-
*/
|
|
64
|
-
static getInvoice(options) {
|
|
65
|
-
return (options.client ?? _heyApiClient).get({
|
|
66
|
-
url: '/billing/invoices/{id}',
|
|
67
|
-
...options
|
|
68
|
-
});
|
|
38
|
+
return (options?.client ?? client).get({ url: '/billing/invoices', ...options });
|
|
69
39
|
}
|
|
70
40
|
/**
|
|
71
41
|
* Get organization contact and billing address information.
|
|
42
|
+
*
|
|
72
43
|
* Returns the organization contact and billing address information. This endpoint is available to all users in the organization.
|
|
73
44
|
*
|
|
74
45
|
*/
|
|
75
46
|
static getContact(options) {
|
|
76
|
-
return (options?.client ??
|
|
77
|
-
url: '/billing/contact',
|
|
78
|
-
...options
|
|
79
|
-
});
|
|
47
|
+
return (options?.client ?? client).get({ url: '/billing/contact', ...options });
|
|
80
48
|
}
|
|
81
49
|
/**
|
|
82
50
|
* Update organization contact information and billing address.
|
|
51
|
+
*
|
|
83
52
|
* This endpoint allows you to update organization details with its contact information. This endpoint is available to administrators of the organization only.
|
|
84
53
|
*
|
|
85
54
|
*/
|
|
86
55
|
static updateContact(options) {
|
|
87
|
-
return (options.client ??
|
|
56
|
+
return (options.client ?? client).put({
|
|
88
57
|
url: '/billing/contact',
|
|
89
58
|
...options,
|
|
90
59
|
headers: {
|
|
91
60
|
'Content-Type': 'application/json',
|
|
92
|
-
...options
|
|
61
|
+
...options.headers
|
|
62
|
+
}
|
|
63
|
+
});
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* Get applied promotional credits
|
|
67
|
+
*
|
|
68
|
+
* Returns applied promotional credits for the organization. For more information on billing and payments, see [Billing and pricing](https://cloudfleet.ai/docs/organization/billing/) section of documentaiton. This endpoint is available to all users in the organization.
|
|
69
|
+
*
|
|
70
|
+
*/
|
|
71
|
+
static getCredits(options) {
|
|
72
|
+
return (options?.client ?? client).get({ url: '/billing/credits', ...options });
|
|
73
|
+
}
|
|
74
|
+
/**
|
|
75
|
+
* Redeem promotional credits code.
|
|
76
|
+
*
|
|
77
|
+
* Applies promotional credits for the organization. For more information on billing and payments, see [Billing and pricing](https://cloudfleet.ai/docs/organization/billing/) section of documentaiton. This endpoint is available to all users in the organization.
|
|
78
|
+
*
|
|
79
|
+
*/
|
|
80
|
+
static redeemCredits(options) {
|
|
81
|
+
return (options.client ?? client).post({
|
|
82
|
+
url: '/billing/credits',
|
|
83
|
+
...options,
|
|
84
|
+
headers: {
|
|
85
|
+
'Content-Type': 'application/json',
|
|
86
|
+
...options.headers
|
|
93
87
|
}
|
|
94
88
|
});
|
|
95
89
|
}
|
|
96
90
|
}
|
|
97
91
|
export class ClustersService {
|
|
92
|
+
/**
|
|
93
|
+
* List charts.
|
|
94
|
+
*
|
|
95
|
+
* Returns a list of charts in the cluster.
|
|
96
|
+
*
|
|
97
|
+
* This endpoint is available to all users in the organization.
|
|
98
|
+
*
|
|
99
|
+
*/
|
|
100
|
+
static listCharts(options) {
|
|
101
|
+
return (options.client ?? client).get({ url: '/clusters/{cluster_id}/charts', ...options });
|
|
102
|
+
}
|
|
103
|
+
/**
|
|
104
|
+
* Create a new chart.
|
|
105
|
+
*
|
|
106
|
+
* Create a new chart deployment.
|
|
107
|
+
*
|
|
108
|
+
* This endpoint is available to administrators of the organization only.
|
|
109
|
+
*
|
|
110
|
+
*/
|
|
111
|
+
static createChart(options) {
|
|
112
|
+
return (options.client ?? client).post({
|
|
113
|
+
url: '/clusters/{cluster_id}/charts',
|
|
114
|
+
...options,
|
|
115
|
+
headers: {
|
|
116
|
+
'Content-Type': 'application/json',
|
|
117
|
+
...options.headers
|
|
118
|
+
}
|
|
119
|
+
});
|
|
120
|
+
}
|
|
121
|
+
/**
|
|
122
|
+
* Permanently delete the chart deployment from the cluster.
|
|
123
|
+
*
|
|
124
|
+
* This endpoint will permanently delete chart. This operation cannot be undone.
|
|
125
|
+
*
|
|
126
|
+
* This endpoint is available to administrators of the organization only.
|
|
127
|
+
*
|
|
128
|
+
*/
|
|
129
|
+
static deleteChart(options) {
|
|
130
|
+
return (options.client ?? client).delete({ url: '/clusters/{cluster_id}/charts/{chart_name}', ...options });
|
|
131
|
+
}
|
|
132
|
+
/**
|
|
133
|
+
* Get chart information.
|
|
134
|
+
*
|
|
135
|
+
* Returns the details of the chart deployment.
|
|
136
|
+
*
|
|
137
|
+
* This endpoint is available to all users in the organization.
|
|
138
|
+
*
|
|
139
|
+
*/
|
|
140
|
+
static getChart(options) {
|
|
141
|
+
return (options.client ?? client).get({ url: '/clusters/{cluster_id}/charts/{chart_name}', ...options });
|
|
142
|
+
}
|
|
143
|
+
/**
|
|
144
|
+
* Update chart information.
|
|
145
|
+
*
|
|
146
|
+
* This endpoint allows you to update the values of a chart deployment.
|
|
147
|
+
*
|
|
148
|
+
* This endpoint is available to administrators of the organization only.
|
|
149
|
+
*
|
|
150
|
+
*/
|
|
151
|
+
static updateChart(options) {
|
|
152
|
+
return (options.client ?? client).put({
|
|
153
|
+
url: '/clusters/{cluster_id}/charts/{chart_name}',
|
|
154
|
+
...options,
|
|
155
|
+
headers: {
|
|
156
|
+
'Content-Type': 'application/json',
|
|
157
|
+
...options.headers
|
|
158
|
+
}
|
|
159
|
+
});
|
|
160
|
+
}
|
|
98
161
|
/**
|
|
99
162
|
* List fleets.
|
|
100
|
-
*
|
|
163
|
+
*
|
|
164
|
+
* Returns a list of fleets belonging to the cluster. For more information, see [Fleets](https://cloudfleet.ai/docs/cloud-infrastructure/fleets/) section of documentaiton.
|
|
101
165
|
*
|
|
102
166
|
* This endpoint is available to all users in the organization.
|
|
103
167
|
*
|
|
104
168
|
*/
|
|
105
169
|
static listFleets(options) {
|
|
106
|
-
return (options.client ??
|
|
107
|
-
url: '/clusters/{cluster_id}/fleets',
|
|
108
|
-
...options
|
|
109
|
-
});
|
|
170
|
+
return (options.client ?? client).get({ url: '/clusters/{cluster_id}/fleets', ...options });
|
|
110
171
|
}
|
|
111
172
|
/**
|
|
112
173
|
* Create a new fleet.
|
|
113
|
-
*
|
|
174
|
+
*
|
|
175
|
+
* Create a new fleet under the current organization. fleets allow you to to schedule workloads in cloud service provider accounts owned by you. For more information, see [Fleets](https://cloudfleet.ai/docs/cloud-infrastructure/fleets/) section of documentaiton.
|
|
114
176
|
*
|
|
115
177
|
* This endpoint is available to administrators of the organization only.
|
|
116
178
|
*
|
|
117
179
|
*/
|
|
118
180
|
static createFleet(options) {
|
|
119
|
-
return (options.client ??
|
|
181
|
+
return (options.client ?? client).post({
|
|
120
182
|
url: '/clusters/{cluster_id}/fleets',
|
|
121
183
|
...options,
|
|
122
184
|
headers: {
|
|
123
185
|
'Content-Type': 'application/json',
|
|
124
|
-
...options
|
|
186
|
+
...options.headers
|
|
125
187
|
}
|
|
126
188
|
});
|
|
127
189
|
}
|
|
128
190
|
/**
|
|
129
191
|
* Permanently delete fleet.
|
|
130
|
-
*
|
|
192
|
+
*
|
|
193
|
+
* This endpoint will permanently delete fleet. This operation cannot be undone. Your subscription will end by the end of the current billing period and you will not be able to receive credit for unused time. If you want to keep using the Fleet until the end of the billing period, set the status to `cancelling`. For more information, see [Fleets](https://cloudfleet.ai/docs/cloud-infrastructure/fleets/) section of documentaiton.
|
|
131
194
|
*
|
|
132
195
|
* This endpoint is available to administrators of the organization only.
|
|
133
196
|
*
|
|
134
197
|
*/
|
|
135
198
|
static deleteFleet(options) {
|
|
136
|
-
return (options.client ??
|
|
137
|
-
url: '/clusters/{cluster_id}/fleets/{fleet_name}',
|
|
138
|
-
...options
|
|
139
|
-
});
|
|
199
|
+
return (options.client ?? client).delete({ url: '/clusters/{cluster_id}/fleets/{fleet_name}', ...options });
|
|
140
200
|
}
|
|
141
201
|
/**
|
|
142
202
|
* Get fleet information.
|
|
143
|
-
*
|
|
203
|
+
*
|
|
204
|
+
* Returns fleet details. For more information, see [Fleets](https://cloudfleet.ai/docs/cloud-infrastructure/fleets/) section of documentaiton.
|
|
144
205
|
*
|
|
145
206
|
* This endpoint is available to all users in the organization.
|
|
146
207
|
*
|
|
147
208
|
*/
|
|
148
209
|
static getFleet(options) {
|
|
149
|
-
return (options.client ??
|
|
150
|
-
url: '/clusters/{cluster_id}/fleets/{fleet_name}',
|
|
151
|
-
...options
|
|
152
|
-
});
|
|
210
|
+
return (options.client ?? client).get({ url: '/clusters/{cluster_id}/fleets/{fleet_name}', ...options });
|
|
153
211
|
}
|
|
154
212
|
/**
|
|
155
213
|
* Update fleet information.
|
|
214
|
+
*
|
|
156
215
|
* This endpoint allows you to update fleet details.
|
|
157
216
|
*
|
|
158
|
-
* Setting status to `deleted` will permanently delete fleet. This operation cannot be undone. Your subscription will end by the end of the current billing period and you will not be able to receive credit for unused time. If you want to keep using the
|
|
217
|
+
* Setting status to `deleted` will permanently delete fleet. This operation cannot be undone. Your subscription will end by the end of the current billing period and you will not be able to receive credit for unused time. If you want to keep using the Fleet until the end of the billing period, set the status to `cancelling`.
|
|
159
218
|
*
|
|
160
|
-
* For more information, see [Fleets
|
|
219
|
+
* For more information, see [Fleets](https://cloudfleet.ai/docs/cloud-infrastructure/fleets/) section of documentaiton.
|
|
161
220
|
*
|
|
162
221
|
* This endpoint is available to administrators of the organization only.
|
|
163
222
|
*
|
|
164
223
|
*/
|
|
165
224
|
static updateFleet(options) {
|
|
166
|
-
return (options.client ??
|
|
225
|
+
return (options.client ?? client).put({
|
|
167
226
|
url: '/clusters/{cluster_id}/fleets/{fleet_name}',
|
|
168
227
|
...options,
|
|
169
228
|
headers: {
|
|
170
229
|
'Content-Type': 'application/json',
|
|
171
|
-
...options
|
|
230
|
+
...options.headers
|
|
172
231
|
}
|
|
173
232
|
});
|
|
174
233
|
}
|
|
175
234
|
/**
|
|
176
235
|
* Query Kubernetes cluster API
|
|
236
|
+
*
|
|
177
237
|
* An API endpoint for directly querying a Kubernetes cluster API without requiring kubectl or other tools. This endpoint is ideal for automation and scripting, as well as for internal use in fetching data for the Cloudfleet Console. It acts as a passthrough to the Kubernetes API, allowing access to any valid Kubernetes API endpoint, including those not exposed in the Cloudfleet Console. The endpoint is strictly read-only, ensuring no modifications to the cluster state. It is accessible to all users within the organization and uses the same authentication mechanisms as other Cloudfleet API endpoints.
|
|
178
238
|
*/
|
|
179
239
|
static queryCluster(options) {
|
|
180
|
-
return (options.client ??
|
|
181
|
-
url: '/clusters/{cluster_id}/query',
|
|
182
|
-
...options
|
|
183
|
-
});
|
|
240
|
+
return (options.client ?? client).get({ url: '/clusters/{cluster_id}/query', ...options });
|
|
184
241
|
}
|
|
185
242
|
/**
|
|
186
243
|
* List clusters.
|
|
244
|
+
*
|
|
187
245
|
* Returns a list of clusters under the current organization, including quota. Quota is a set of filters defined by the admin of the organization that will be applied to all resources created in the cluster. Quota information returned here does not take into account quota set on organization or platform level. For calculated quota applied to this account, use /clusters/{cluster_id}/quota endpoint. For more information about quotas, see [Quotas and limits](https://cloudfleet.ai/docs/organization/quotas/) section of documentaiton.
|
|
188
246
|
*
|
|
189
247
|
* This endpoint is available to all users in the organization.
|
|
190
248
|
*
|
|
191
249
|
*/
|
|
192
250
|
static listClusters(options) {
|
|
193
|
-
return (options?.client ??
|
|
194
|
-
url: '/clusters',
|
|
195
|
-
...options
|
|
196
|
-
});
|
|
251
|
+
return (options?.client ?? client).get({ url: '/clusters', ...options });
|
|
197
252
|
}
|
|
198
253
|
/**
|
|
199
254
|
* Create a new cluster.
|
|
255
|
+
*
|
|
200
256
|
* Create a new cluster under the current organization. Clusters allow you to group resources and you can create multiple clusters under the same organization, with billing delegated to the parent organization.
|
|
201
257
|
*
|
|
202
258
|
* This endpoint is available to administrators of the organization only.
|
|
203
259
|
*
|
|
204
260
|
*/
|
|
205
261
|
static createCluster(options) {
|
|
206
|
-
return (options.client ??
|
|
262
|
+
return (options.client ?? client).post({
|
|
207
263
|
url: '/clusters',
|
|
208
264
|
...options,
|
|
209
265
|
headers: {
|
|
210
266
|
'Content-Type': 'application/json',
|
|
211
|
-
...options
|
|
267
|
+
...options.headers
|
|
212
268
|
}
|
|
213
269
|
});
|
|
214
270
|
}
|
|
215
271
|
/**
|
|
216
272
|
* Permanently delete cluster.
|
|
273
|
+
*
|
|
217
274
|
* This endpoint will permanently delete the cluster. This operation cannot be undone.
|
|
218
275
|
*
|
|
219
276
|
* This endpoint is available to administrators of the organization only.
|
|
220
277
|
*
|
|
221
278
|
*/
|
|
222
279
|
static deleteCluster(options) {
|
|
223
|
-
return (options.client ??
|
|
224
|
-
url: '/clusters/{cluster_id}',
|
|
225
|
-
...options
|
|
226
|
-
});
|
|
280
|
+
return (options.client ?? client).delete({ url: '/clusters/{cluster_id}', ...options });
|
|
227
281
|
}
|
|
228
282
|
/**
|
|
229
283
|
* Get cluster information.
|
|
284
|
+
*
|
|
230
285
|
* Returns cluster details including quota. Quota is a set of filters defined by the admin of the organization that will be applied to all resources created in the cluster. Quota information returned here does not take into account quota set on organization or platform level. For calculated quota applied to this account, use /clusters/{cluster_id}/quota endpoint. For more information about quotas, see [Quotas and limits](https://cloudfleet.ai/docs/organization/quotas/) section of documentaiton.
|
|
231
286
|
*
|
|
232
287
|
* This endpoint is available to all users in the organization.
|
|
233
288
|
*
|
|
234
289
|
*/
|
|
235
290
|
static getCluster(options) {
|
|
236
|
-
return (options.client ??
|
|
237
|
-
url: '/clusters/{cluster_id}',
|
|
238
|
-
...options
|
|
239
|
-
});
|
|
291
|
+
return (options.client ?? client).get({ url: '/clusters/{cluster_id}', ...options });
|
|
240
292
|
}
|
|
241
293
|
/**
|
|
242
294
|
* Update cluster information.
|
|
295
|
+
*
|
|
243
296
|
* This endpoint allows you to update cluster details, including quota and cluster status. For more information about clusters, see [Clusters](https://cloudfleet.ai/docs/cluster-management/cluster-types/) section of documentaiton.
|
|
244
297
|
*
|
|
245
298
|
* This endpoint is available to administrators of the organization only.
|
|
246
299
|
*
|
|
247
300
|
*/
|
|
248
301
|
static updateCluster(options) {
|
|
249
|
-
return (options.client ??
|
|
302
|
+
return (options.client ?? client).put({
|
|
250
303
|
url: '/clusters/{cluster_id}',
|
|
251
304
|
...options,
|
|
252
305
|
headers: {
|
|
253
306
|
'Content-Type': 'application/json',
|
|
254
|
-
...options
|
|
307
|
+
...options.headers
|
|
255
308
|
}
|
|
256
309
|
});
|
|
257
310
|
}
|
|
258
311
|
/**
|
|
259
|
-
*
|
|
260
|
-
* Returns the join information for the cluster. This information is used to add a self-managed cluster to the CFKE cluster. This endpoint is available to only admins of the organization.
|
|
312
|
+
* Get the cluster's certificate authority in PEM format.
|
|
261
313
|
*
|
|
262
|
-
|
|
263
|
-
static getJoinInformation(options) {
|
|
264
|
-
return (options.client ?? _heyApiClient).post({
|
|
265
|
-
url: '/clusters/{cluster_id}/join_information',
|
|
266
|
-
...options
|
|
267
|
-
});
|
|
268
|
-
}
|
|
269
|
-
}
|
|
270
|
-
export class InfrastructureService {
|
|
271
|
-
/**
|
|
272
|
-
* Search infrastructure catalog.
|
|
273
|
-
* This endpoint is used to search the infrastructure catalog for the right virtual machine / instance type when creating a new task. The search is performed by specifying a set of filters. The filters are combined using the logical AND operator. For example, if you want to find all available instances with Nvidia A100 GPUs in the US, you would use the following query:
|
|
274
|
-
*
|
|
275
|
-
* `GET /infrastructure?accelerator_name=A100®ion=northamerica`
|
|
276
|
-
*
|
|
277
|
-
* Catalog is dynamic and updated regularly to reflect the latest changes in the cloud providers' offerings. Although we try to keep the catalog up to date, it is possible that some instances are missing or that some information is outdated. It is possible that the final price you will see in the billing section will be different from the price shown in the catalog. Additionally, catalog does not account for any limitaitons and quotas set by the cloud providers, as well as current availability of specific instance types.
|
|
278
|
-
*
|
|
279
|
-
* **Note:** This endpoint is available for both authenticated and unauthenticated users. However, unauthenticated users will only see limited results and will be rate limited. To get full access to the catalog, please create a Cloudfleet account and log in.
|
|
280
|
-
*
|
|
281
|
-
* For full documentation of the infrastructure catalog, see [Cloud providers and instance types](https://cloudfleet.ai/docs/cloud-infrastructure/) section of the documentation.
|
|
314
|
+
* Returns the root certificate authority of the Kubernetes cluster as a PEM-encoded document. This endpoint does not require authentication, similar to the cluster's JWKs endpoint, since the CA certificate is public information used by clients to establish trust with the cluster's control plane.
|
|
282
315
|
*
|
|
283
316
|
*/
|
|
284
|
-
static
|
|
285
|
-
return (options
|
|
286
|
-
url: '/infrastructure',
|
|
287
|
-
...options
|
|
288
|
-
});
|
|
317
|
+
static getClusterCa(options) {
|
|
318
|
+
return (options.client ?? client).get({ url: '/clusters/{cluster_id}/ca', ...options });
|
|
289
319
|
}
|
|
290
320
|
/**
|
|
291
|
-
*
|
|
292
|
-
* This endpoint returns calculated search facets from the infrastructure catalog.
|
|
321
|
+
* Node join information for the cluster
|
|
293
322
|
*
|
|
294
|
-
|
|
295
|
-
static getFacets(options) {
|
|
296
|
-
return (options?.client ?? _heyApiClient).get({
|
|
297
|
-
url: '/infrastructure/facets',
|
|
298
|
-
...options
|
|
299
|
-
});
|
|
300
|
-
}
|
|
301
|
-
/**
|
|
302
|
-
* Available Cloudfleet regions and Kubernetes versions.
|
|
303
|
-
* Available Cloudfleet regions and Kubernetes versions.
|
|
323
|
+
* Returns the join information for the cluster. This information is used to add a self-managed nodes to the CFKE cluster. This endpoint is available to only admins of the organization.
|
|
304
324
|
*
|
|
305
325
|
*/
|
|
306
|
-
static
|
|
307
|
-
return (options
|
|
308
|
-
url: '/infrastructure/regions',
|
|
309
|
-
...options
|
|
310
|
-
});
|
|
326
|
+
static getJoinInformation(options) {
|
|
327
|
+
return (options.client ?? client).post({ url: '/clusters/{cluster_id}/join_information', ...options });
|
|
311
328
|
}
|
|
312
329
|
}
|
|
313
330
|
export class InvitesService {
|
|
314
331
|
/**
|
|
315
332
|
* List invites.
|
|
333
|
+
*
|
|
316
334
|
* Returns a list of invites under the current organization. This endpoint is available to all users in the organization.
|
|
317
335
|
*
|
|
318
336
|
*/
|
|
319
337
|
static listInvites(options) {
|
|
320
|
-
return (options?.client ??
|
|
321
|
-
url: '/invites',
|
|
322
|
-
...options
|
|
323
|
-
});
|
|
338
|
+
return (options?.client ?? client).get({ url: '/invites', ...options });
|
|
324
339
|
}
|
|
325
340
|
/**
|
|
326
341
|
* Create a new invite.
|
|
327
|
-
*
|
|
342
|
+
*
|
|
343
|
+
* Invite a new user to your Cloudfleet organization. The user will receive an email with a link to create a new account. This endpoint is available to administrators of the organization only.
|
|
328
344
|
*
|
|
329
345
|
*/
|
|
330
346
|
static createInvite(options) {
|
|
331
|
-
return (options.client ??
|
|
347
|
+
return (options.client ?? client).post({
|
|
332
348
|
url: '/invites',
|
|
333
349
|
...options,
|
|
334
350
|
headers: {
|
|
335
351
|
'Content-Type': 'application/json',
|
|
336
|
-
...options
|
|
352
|
+
...options.headers
|
|
337
353
|
}
|
|
338
354
|
});
|
|
339
355
|
}
|
|
340
356
|
/**
|
|
341
357
|
* Get invite information.
|
|
358
|
+
*
|
|
342
359
|
* Returns invite details.
|
|
343
360
|
*
|
|
344
361
|
*/
|
|
345
362
|
static getInvite(options) {
|
|
346
|
-
return (options.client ??
|
|
347
|
-
url: '/invites/{code}',
|
|
348
|
-
...options
|
|
349
|
-
});
|
|
363
|
+
return (options.client ?? client).get({ url: '/invites/{code}', ...options });
|
|
350
364
|
}
|
|
351
365
|
/**
|
|
352
366
|
* Permanently delete invite.
|
|
367
|
+
*
|
|
353
368
|
* Permanently deletes invite from the organization. This endpoint is available to administrators of the organization only.
|
|
354
369
|
*
|
|
355
370
|
*/
|
|
356
371
|
static deleteInvite(options) {
|
|
357
|
-
return (options.client ??
|
|
358
|
-
|
|
359
|
-
|
|
372
|
+
return (options.client ?? client).delete({ url: '/invites/{email}', ...options });
|
|
373
|
+
}
|
|
374
|
+
}
|
|
375
|
+
export class ChartsMarketplaceService {
|
|
376
|
+
/**
|
|
377
|
+
* List chart listings available in the marketplace.
|
|
378
|
+
*
|
|
379
|
+
* Returns a list of available charts in the marketplace.
|
|
380
|
+
*
|
|
381
|
+
* This endpoint is available to all users in the organization.
|
|
382
|
+
*
|
|
383
|
+
*/
|
|
384
|
+
static listMarketplaceCharts(options) {
|
|
385
|
+
return (options?.client ?? client).get({ url: '/marketplace', ...options });
|
|
386
|
+
}
|
|
387
|
+
/**
|
|
388
|
+
* Get chart files for a specific version channel.
|
|
389
|
+
*
|
|
390
|
+
* Returns the Chart.yaml, values.yaml, and values.schema.json files for the latest version matching the specified version channel.
|
|
391
|
+
*
|
|
392
|
+
* Version channels use patterns like "1.31.x-cfke.x" to match the latest patch version, or "1.x.x-cfke.x" to match the latest minor version.
|
|
393
|
+
*
|
|
394
|
+
* This endpoint is available to all users in the organization.
|
|
395
|
+
*
|
|
396
|
+
*/
|
|
397
|
+
static getMarketplaceChartFiles(options) {
|
|
398
|
+
return (options.client ?? client).get({ url: '/marketplace/{chart_name}/files/{version_channel}', ...options });
|
|
399
|
+
}
|
|
400
|
+
}
|
|
401
|
+
export class McpService {
|
|
402
|
+
/**
|
|
403
|
+
* MCP endpoint
|
|
404
|
+
*
|
|
405
|
+
* MCP endpoint for handling Model Context Protocol JSON-RPC 2.0 messages.
|
|
406
|
+
*/
|
|
407
|
+
static postMcp(options) {
|
|
408
|
+
return (options.client ?? client).post({
|
|
409
|
+
url: '/mcp',
|
|
410
|
+
...options,
|
|
411
|
+
headers: {
|
|
412
|
+
'Content-Type': 'application/json',
|
|
413
|
+
...options.headers
|
|
414
|
+
}
|
|
360
415
|
});
|
|
361
416
|
}
|
|
362
417
|
}
|
|
363
418
|
export class OrganizationService {
|
|
364
419
|
/**
|
|
365
420
|
* Get organization information.
|
|
421
|
+
*
|
|
366
422
|
* Returns organization details including quota. For more information about quotas, see [Quotas and limits](https://cloudfleet.ai/docs/organization/quotas/) section of documentaiton.
|
|
367
423
|
*
|
|
368
424
|
* This endpoint is available to all users in the organization.
|
|
369
425
|
*
|
|
370
426
|
*/
|
|
371
427
|
static getOrganization(options) {
|
|
372
|
-
return (options?.client ??
|
|
373
|
-
url: '/organization',
|
|
374
|
-
...options
|
|
375
|
-
});
|
|
428
|
+
return (options?.client ?? client).get({ url: '/organization', ...options });
|
|
376
429
|
}
|
|
377
430
|
/**
|
|
378
431
|
* Create a new organization / Cloudfleet account signup.
|
|
432
|
+
*
|
|
379
433
|
* This endpoint allows you to create a new Cloudfleet organization and an administrator user.
|
|
380
434
|
*
|
|
381
435
|
*/
|
|
382
436
|
static createOrganization(options) {
|
|
383
|
-
return (options.client ??
|
|
437
|
+
return (options.client ?? client).post({
|
|
384
438
|
url: '/organization',
|
|
385
439
|
...options,
|
|
386
440
|
headers: {
|
|
387
441
|
'Content-Type': 'application/json',
|
|
388
|
-
...options
|
|
442
|
+
...options.headers
|
|
389
443
|
}
|
|
390
444
|
});
|
|
391
445
|
}
|
|
392
446
|
}
|
|
447
|
+
export class RegistryService {
|
|
448
|
+
/**
|
|
449
|
+
* List repositories
|
|
450
|
+
*
|
|
451
|
+
* Returns a list of repositories in the registry across all regions. This endpoint is available to all users in the organization.
|
|
452
|
+
*
|
|
453
|
+
*/
|
|
454
|
+
static listRepositories(options) {
|
|
455
|
+
return (options?.client ?? client).get({ url: '/registry', ...options });
|
|
456
|
+
}
|
|
457
|
+
/**
|
|
458
|
+
* List tags for a repository
|
|
459
|
+
*
|
|
460
|
+
* Returns a list of tags for a specific repository, including size and metadata for each tag. This endpoint is available to all users in the organization.
|
|
461
|
+
*
|
|
462
|
+
*/
|
|
463
|
+
static listTags(options) {
|
|
464
|
+
return (options.client ?? client).get({ url: '/registry/{region}/{repository}', ...options });
|
|
465
|
+
}
|
|
466
|
+
/**
|
|
467
|
+
* Delete tag
|
|
468
|
+
*
|
|
469
|
+
* Permanently deletes a specific tag from a repository. This endpoint is available to administrators of the organization only.
|
|
470
|
+
*
|
|
471
|
+
*/
|
|
472
|
+
static deleteTag(options) {
|
|
473
|
+
return (options.client ?? client).delete({ url: '/registry/{region}/{repository}/{tag}', ...options });
|
|
474
|
+
}
|
|
475
|
+
/**
|
|
476
|
+
* Get tag details
|
|
477
|
+
*
|
|
478
|
+
* Returns detailed information for a specific tag in a repository, including manifest details, size, and URI. This endpoint is available to all users in the organization.
|
|
479
|
+
*
|
|
480
|
+
*/
|
|
481
|
+
static getTag(options) {
|
|
482
|
+
return (options.client ?? client).get({ url: '/registry/{region}/{repository}/{tag}', ...options });
|
|
483
|
+
}
|
|
484
|
+
}
|
|
393
485
|
export class TokensService {
|
|
394
486
|
/**
|
|
395
487
|
* List access tokens in organization.
|
|
488
|
+
*
|
|
396
489
|
* This endpoint allows you to get a list of all access tokens details in organization. For more information about identity access management and security, see [Service Accounts](https://cloudfleet.ai/docs/organization/api-tokens/) section of documentaiton. This endpoint is available to all users in the organization.
|
|
397
490
|
*
|
|
398
491
|
*/
|
|
399
492
|
static listTokens(options) {
|
|
400
|
-
return (options?.client ??
|
|
401
|
-
url: '/tokens',
|
|
402
|
-
...options
|
|
403
|
-
});
|
|
493
|
+
return (options?.client ?? client).get({ url: '/tokens', ...options });
|
|
404
494
|
}
|
|
405
495
|
/**
|
|
406
496
|
* Create a new access token.
|
|
497
|
+
*
|
|
407
498
|
* This endpoint allows you to create a new access token. For more information about identity access management and security, see [Service Accounts](https://cloudfleet.ai/docs/organization/api-tokens/) section of documentaiton.
|
|
408
499
|
*
|
|
409
500
|
* This endpoint is available to administrators of the organization only.
|
|
410
501
|
*
|
|
411
502
|
*/
|
|
412
503
|
static createToken(options) {
|
|
413
|
-
return (options.client ??
|
|
504
|
+
return (options.client ?? client).post({
|
|
414
505
|
url: '/tokens',
|
|
415
506
|
...options,
|
|
416
507
|
headers: {
|
|
417
508
|
'Content-Type': 'application/json',
|
|
418
|
-
...options
|
|
509
|
+
...options.headers
|
|
419
510
|
}
|
|
420
511
|
});
|
|
421
512
|
}
|
|
422
513
|
/**
|
|
423
514
|
* Permanently delete access token.
|
|
515
|
+
*
|
|
424
516
|
* This endpoint allows you to delete an access token. For more information about identity access management and security, see [Service Accounts](https://cloudfleet.ai/docs/organization/api-tokens/) section of documentaiton. This endpoint is available to administrators of the organization only.
|
|
425
517
|
*
|
|
426
518
|
*/
|
|
427
519
|
static deleteToken(options) {
|
|
428
|
-
return (options.client ??
|
|
429
|
-
url: '/tokens/{token_id}',
|
|
430
|
-
...options
|
|
431
|
-
});
|
|
520
|
+
return (options.client ?? client).delete({ url: '/tokens/{token_id}', ...options });
|
|
432
521
|
}
|
|
433
522
|
/**
|
|
434
523
|
* Get access token information.
|
|
524
|
+
*
|
|
435
525
|
* This endpoint allows you to get access token details. For more information about identity access management and security, see [Service Accounts](https://cloudfleet.ai/docs/organization/api-tokens/) section of documentaiton. This endpoint is available to all users in the organization.
|
|
436
526
|
*
|
|
437
527
|
*/
|
|
438
528
|
static getToken(options) {
|
|
439
|
-
return (options.client ??
|
|
440
|
-
url: '/tokens/{token_id}',
|
|
441
|
-
...options
|
|
442
|
-
});
|
|
529
|
+
return (options.client ?? client).get({ url: '/tokens/{token_id}', ...options });
|
|
443
530
|
}
|
|
444
531
|
/**
|
|
445
532
|
* Update access token information.
|
|
533
|
+
*
|
|
446
534
|
* This endpoint allows you to update access token details. For more information about identity access management and security, see [Service Accounts](https://cloudfleet.ai/docs/organization/api-tokens/) section of documentaiton.
|
|
447
535
|
*
|
|
448
536
|
* This endpoint is available to administrators of the organization only.
|
|
449
537
|
*
|
|
450
538
|
*/
|
|
451
539
|
static updateToken(options) {
|
|
452
|
-
return (options.client ??
|
|
540
|
+
return (options.client ?? client).put({
|
|
453
541
|
url: '/tokens/{token_id}',
|
|
454
542
|
...options,
|
|
455
543
|
headers: {
|
|
456
544
|
'Content-Type': 'application/json',
|
|
457
|
-
...options
|
|
545
|
+
...options.headers
|
|
458
546
|
}
|
|
459
547
|
});
|
|
460
548
|
}
|
|
461
549
|
/**
|
|
462
550
|
* Regenerate access token secret key.
|
|
551
|
+
*
|
|
463
552
|
* Generates a new access token secret. Old secret will not be valid anymore.
|
|
464
553
|
*/
|
|
465
554
|
static regenerateToken(options) {
|
|
466
|
-
return (options.client ??
|
|
467
|
-
url: '/tokens/{token_id}/secret',
|
|
468
|
-
...options
|
|
469
|
-
});
|
|
555
|
+
return (options.client ?? client).put({ url: '/tokens/{token_id}/secret', ...options });
|
|
470
556
|
}
|
|
471
557
|
}
|
|
472
558
|
export class UsersService {
|
|
@@ -474,101 +560,68 @@ export class UsersService {
|
|
|
474
560
|
* Get a list of organizations the user belongs to. Used during authentication process.
|
|
475
561
|
*/
|
|
476
562
|
static listUserOrganizations(options) {
|
|
477
|
-
return (options.client ??
|
|
478
|
-
url: '/users/organizations/{email}',
|
|
479
|
-
...options
|
|
480
|
-
});
|
|
563
|
+
return (options.client ?? client).get({ url: '/users/organizations/{email}', ...options });
|
|
481
564
|
}
|
|
482
565
|
/**
|
|
483
566
|
* List users in organization.
|
|
484
|
-
*
|
|
567
|
+
*
|
|
568
|
+
* Returns a list of user details and their roles. For more information on identity access management, see [Users](https://cloudfleet.ai/docs/organization/users/) section of documentaiton.
|
|
485
569
|
*
|
|
486
570
|
* This endpoint is available to all users in the organization.
|
|
487
571
|
*
|
|
488
572
|
*/
|
|
489
573
|
static listUsers(options) {
|
|
490
|
-
return (options?.client ??
|
|
491
|
-
url: '/users',
|
|
492
|
-
...options
|
|
493
|
-
});
|
|
574
|
+
return (options?.client ?? client).get({ url: '/users', ...options });
|
|
494
575
|
}
|
|
495
576
|
/**
|
|
496
577
|
* Create a new user.
|
|
497
|
-
*
|
|
578
|
+
*
|
|
579
|
+
* Create a new user in your Cloudfleet organization. Requires a valid invite code generated by the `invites create` command. The invite code is a unique string that can be used only once to create a new user. The invite code is generated by the `POST /invites` endpoint.
|
|
498
580
|
*
|
|
499
581
|
*/
|
|
500
582
|
static createUser(options) {
|
|
501
|
-
return (options.client ??
|
|
583
|
+
return (options.client ?? client).post({
|
|
502
584
|
url: '/users',
|
|
503
585
|
...options,
|
|
504
586
|
headers: {
|
|
505
587
|
'Content-Type': 'application/json',
|
|
506
|
-
...options
|
|
588
|
+
...options.headers
|
|
507
589
|
}
|
|
508
590
|
});
|
|
509
591
|
}
|
|
510
592
|
/**
|
|
511
593
|
* Delete user by id.
|
|
594
|
+
*
|
|
512
595
|
* Sets user status to `inactive`. Inactive users cannot log in and manage organization resources. This endpoint is available to administrators of the organization only.
|
|
513
596
|
*
|
|
514
597
|
*/
|
|
515
598
|
static deleteUser(options) {
|
|
516
|
-
return (options.client ??
|
|
517
|
-
url: '/users/{user_id}',
|
|
518
|
-
...options
|
|
519
|
-
});
|
|
599
|
+
return (options.client ?? client).delete({ url: '/users/{user_id}', ...options });
|
|
520
600
|
}
|
|
521
601
|
/**
|
|
522
602
|
* Get user profile information by id.
|
|
523
|
-
*
|
|
603
|
+
*
|
|
604
|
+
* Returns user details including their roles. For more information on identity access management, see [Users](https://cloudfleet.ai/docs/organization/users/) section of documentaiton.
|
|
524
605
|
*
|
|
525
606
|
* This endpoint is available to all users in the organization.
|
|
526
607
|
*
|
|
527
608
|
*/
|
|
528
609
|
static getUser(options) {
|
|
529
|
-
return (options.client ??
|
|
530
|
-
url: '/users/{user_id}',
|
|
531
|
-
...options
|
|
532
|
-
});
|
|
610
|
+
return (options.client ?? client).get({ url: '/users/{user_id}', ...options });
|
|
533
611
|
}
|
|
534
612
|
/**
|
|
535
613
|
* Update user profile information.
|
|
614
|
+
*
|
|
536
615
|
* Update user profile information: email, first name, last name, role. This endpoint can be accessed by administrators and the user itself. Role and status can be changed by administrators only.
|
|
537
616
|
*
|
|
538
617
|
*/
|
|
539
618
|
static updateUser(options) {
|
|
540
|
-
return (options.client ??
|
|
619
|
+
return (options.client ?? client).put({
|
|
541
620
|
url: '/users/{user_id}',
|
|
542
621
|
...options,
|
|
543
622
|
headers: {
|
|
544
623
|
'Content-Type': 'application/json',
|
|
545
|
-
...options
|
|
546
|
-
}
|
|
547
|
-
});
|
|
548
|
-
}
|
|
549
|
-
/**
|
|
550
|
-
* Remove user from cluster.
|
|
551
|
-
* Removes user from the cluster. The user will no longer be able to access the cluster and all its resources. This endpoint is available to administrators of the organization only.
|
|
552
|
-
*
|
|
553
|
-
*/
|
|
554
|
-
static deleteClusterPermissions(options) {
|
|
555
|
-
return (options.client ?? _heyApiClient).delete({
|
|
556
|
-
url: '/users/{user_id}/clusters/{cluster_id}',
|
|
557
|
-
...options
|
|
558
|
-
});
|
|
559
|
-
}
|
|
560
|
-
/**
|
|
561
|
-
* Add user to cluster and set permissions.
|
|
562
|
-
* Add user to the cluster and set / update access permissions. This endpoint is available to administrators of the organization only.
|
|
563
|
-
*
|
|
564
|
-
*/
|
|
565
|
-
static setClusterPermissions(options) {
|
|
566
|
-
return (options.client ?? _heyApiClient).put({
|
|
567
|
-
url: '/users/{user_id}/clusters/{cluster_id}',
|
|
568
|
-
...options,
|
|
569
|
-
headers: {
|
|
570
|
-
'Content-Type': 'application/json',
|
|
571
|
-
...options?.headers
|
|
624
|
+
...options.headers
|
|
572
625
|
}
|
|
573
626
|
});
|
|
574
627
|
}
|