@cloudfleet/sdk 0.0.1-8e8e76c → 0.0.1-8e907c6
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/@tanstack/react-query.gen.d.ts +1151 -0
- package/dist/@tanstack/react-query.gen.d.ts.map +1 -0
- package/dist/@tanstack/react-query.gen.js +1167 -0
- package/dist/@tanstack/react-query.gen.js.map +1 -0
- 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 +220 -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 +121 -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 +38 -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 +133 -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/schemas.gen.d.ts +1606 -668
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +2872 -701
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +245 -70
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +333 -161
- package/dist/sdk.gen.js.map +1 -1
- package/dist/services/kubernetes/api.d.ts +20 -20
- package/dist/types.gen.d.ts +1457 -403
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +3743 -1982
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +1563 -792
- package/dist/zod.gen.js.map +1 -1
- package/package.json +29 -7
package/dist/schemas.gen.d.ts
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
export declare const BillingContactSchema: {
|
|
2
2
|
readonly type: "object";
|
|
3
3
|
readonly properties: {
|
|
4
|
+
readonly type: {
|
|
5
|
+
readonly type: "string";
|
|
6
|
+
readonly description: "Type of the organization. `business` for legal entities, `personal` for individuals.";
|
|
7
|
+
readonly example: "business";
|
|
8
|
+
readonly enum: readonly ["business", "personal"];
|
|
9
|
+
};
|
|
4
10
|
readonly company: {
|
|
5
11
|
readonly type: "string";
|
|
6
12
|
readonly maxLength: 120;
|
|
@@ -57,18 +63,26 @@ export declare const BillingContactSchema: {
|
|
|
57
63
|
readonly description: "Email address used for billing as a string.";
|
|
58
64
|
readonly example: "email@example.com";
|
|
59
65
|
};
|
|
60
|
-
readonly
|
|
66
|
+
readonly individual_name: {
|
|
61
67
|
readonly type: "string";
|
|
62
|
-
readonly description: "
|
|
63
|
-
readonly example: "John";
|
|
68
|
+
readonly description: "Name of the billing contact person.";
|
|
69
|
+
readonly example: "John Doe";
|
|
64
70
|
};
|
|
65
|
-
readonly
|
|
71
|
+
readonly tax_id: {
|
|
66
72
|
readonly type: "string";
|
|
67
|
-
readonly
|
|
68
|
-
readonly
|
|
73
|
+
readonly nullable: true;
|
|
74
|
+
readonly description: "Tax ID of the organization.";
|
|
75
|
+
readonly example: "DE123456789";
|
|
76
|
+
};
|
|
77
|
+
readonly tax_id_type: {
|
|
78
|
+
readonly type: "string";
|
|
79
|
+
readonly nullable: true;
|
|
80
|
+
readonly description: "Type of the tax ID.";
|
|
81
|
+
readonly example: "de_vat";
|
|
82
|
+
readonly enum: readonly ["ad_nrt", "ae_trn", "al_tin", "am_tin", "ao_tin", "ar_cuit", "at_vat", "au_abn", "au_arn", "ba_tin", "bb_tin", "be_vat", "bg_uic", "bg_vat", "bh_vat", "bo_tin", "br_cnpj", "br_cpf", "bs_tin", "by_tin", "ca_bn", "ca_gst_hst", "ca_pst_bc", "ca_pst_mb", "ca_pst_sk", "ca_qst", "cd_nif", "ch_uid", "ch_vat", "cl_tin", "cn_tin", "co_nit", "cr_tin", "cy_vat", "cz_vat", "de_stn", "de_vat", "dk_vat", "do_rcn", "ec_ruc", "ee_vat", "eg_tin", "es_cif", "es_vat", "eu_oss_vat", "fi_vat", "fr_vat", "gb_vat", "ge_vat", "gn_nif", "gr_vat", "hk_br", "hr_oib", "hr_vat", "hu_tin", "hu_vat", "id_npwp", "ie_vat", "il_vat", "in_gst", "is_vat", "it_vat", "jp_cn", "jp_rn", "jp_trn", "ke_pin", "kh_tin", "kr_brn", "kz_bin", "li_uid", "li_vat", "lt_vat", "lu_vat", "lv_vat", "ma_vat", "md_vat", "me_pib", "mk_vat", "mr_nif", "mt_vat", "mx_rfc", "my_frp", "my_itn", "my_sst", "ng_tin", "nl_vat", "no_vat", "no_voec", "np_pan", "nz_gst", "om_vat", "pe_ruc", "ph_tin", "pl_vat", "pt_vat", "ro_tin", "ro_vat", "rs_pib", "ru_inn", "ru_kpp", "sa_vat", "se_vat", "sg_gst", "sg_uen", "si_tin", "si_vat", "sk_vat", "sn_ninea", "sr_fin", "sv_nit", "th_vat", "tj_tin", "tr_tin", "tw_vat", "tz_vat", "ua_vat", "ug_tin", "us_ein", "uy_ruc", "uz_tin", "uz_vat", "ve_rif", "vn_tin", "xi_vat", "za_vat", "zm_tin", "zw_tin", ""];
|
|
69
83
|
};
|
|
70
84
|
};
|
|
71
|
-
readonly required: readonly ["
|
|
85
|
+
readonly required: readonly ["type", "email", "individual_name"];
|
|
72
86
|
readonly additionalProperties: false;
|
|
73
87
|
};
|
|
74
88
|
export declare const BillingCreditsSchema: {
|
|
@@ -79,10 +93,22 @@ export declare const BillingCreditsSchema: {
|
|
|
79
93
|
readonly description: "Generated unique identifier of the promotional code.";
|
|
80
94
|
readonly example: "7kUZnH7nnKUFfvc4NK2KQF";
|
|
81
95
|
};
|
|
82
|
-
readonly
|
|
96
|
+
readonly type: {
|
|
97
|
+
readonly type: "string";
|
|
98
|
+
readonly description: "Type of the promotional code.";
|
|
99
|
+
readonly example: "credit";
|
|
100
|
+
readonly enum: readonly ["credit", "discount"];
|
|
101
|
+
};
|
|
102
|
+
readonly date_start: {
|
|
103
|
+
readonly type: "string";
|
|
104
|
+
readonly format: "date-time";
|
|
105
|
+
readonly description: "Timestamp when the credit becomes active. ISO 8601 date string in the UTC timezone.";
|
|
106
|
+
readonly example: "2023-12-20T13:53:32.000Z";
|
|
107
|
+
};
|
|
108
|
+
readonly date_end: {
|
|
83
109
|
readonly type: "string";
|
|
84
110
|
readonly format: "date-time";
|
|
85
|
-
readonly description: "
|
|
111
|
+
readonly description: "Timestamp when the credit expires or becomes inactive. ISO 8601 date string in the UTC timezone.";
|
|
86
112
|
readonly example: "2023-12-20T13:53:32.000Z";
|
|
87
113
|
};
|
|
88
114
|
readonly code: {
|
|
@@ -95,40 +121,145 @@ export declare const BillingCreditsSchema: {
|
|
|
95
121
|
readonly description: "Description of the promotional code.";
|
|
96
122
|
readonly example: "10% off on all products";
|
|
97
123
|
};
|
|
98
|
-
readonly
|
|
99
|
-
readonly type: "array";
|
|
100
|
-
readonly items: {
|
|
101
|
-
readonly type: "string";
|
|
102
|
-
};
|
|
103
|
-
readonly description: "List of product SKUs that the promotional code can be used on.";
|
|
104
|
-
readonly example: readonly ["SKU123", "SKU456"];
|
|
105
|
-
};
|
|
106
|
-
readonly type: {
|
|
107
|
-
readonly type: "string";
|
|
108
|
-
readonly description: "Type of the promotional code.";
|
|
109
|
-
readonly example: "credit";
|
|
110
|
-
readonly enum: readonly ["credit", "discount"];
|
|
111
|
-
};
|
|
112
|
-
readonly value: {
|
|
124
|
+
readonly value_total: {
|
|
113
125
|
readonly type: "number";
|
|
114
126
|
readonly format: "float";
|
|
115
|
-
readonly description: "
|
|
127
|
+
readonly description: "Total value of the promotional code.";
|
|
116
128
|
readonly example: 10;
|
|
117
129
|
};
|
|
118
|
-
readonly billing_period: {
|
|
119
|
-
readonly type: "string";
|
|
120
|
-
readonly format: "date-time";
|
|
121
|
-
readonly description: "Date of the billing cycle. An ISO 8601 date string in the UTC timezone.";
|
|
122
|
-
readonly example: "2023-12-20T13:53:32.000Z";
|
|
123
|
-
};
|
|
124
130
|
readonly value_remaining: {
|
|
125
131
|
readonly type: "number";
|
|
126
132
|
readonly format: "float";
|
|
127
|
-
readonly description: "
|
|
128
|
-
readonly example:
|
|
133
|
+
readonly description: "Remaining value of the promotional code.";
|
|
134
|
+
readonly example: 8;
|
|
135
|
+
};
|
|
136
|
+
};
|
|
137
|
+
readonly required: readonly ["type", "date_start", "code", "value_total"];
|
|
138
|
+
readonly additionalProperties: false;
|
|
139
|
+
};
|
|
140
|
+
export declare const ChartCreateInputSchema: {
|
|
141
|
+
readonly type: "object";
|
|
142
|
+
readonly properties: {
|
|
143
|
+
readonly values: {
|
|
144
|
+
readonly type: "string";
|
|
145
|
+
readonly description: "Values to be used in the chart encoded as a JSON string.";
|
|
146
|
+
};
|
|
147
|
+
readonly version_channel: {
|
|
148
|
+
readonly type: "string";
|
|
149
|
+
readonly pattern: "^(x|X|0|[1-9]\\d*)\\.(x|X|0|[1-9]\\d*)\\.(x|X|0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$";
|
|
150
|
+
readonly description: "Desired version range or channel for the chart.";
|
|
151
|
+
readonly example: "2.x.x-cfke.x";
|
|
152
|
+
};
|
|
153
|
+
readonly name: {
|
|
154
|
+
readonly type: "string";
|
|
155
|
+
readonly maxLength: 63;
|
|
156
|
+
readonly minLength: 1;
|
|
157
|
+
readonly pattern: "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$";
|
|
158
|
+
readonly description: "Unique identifier of the chart deployment aka name of the helm release.";
|
|
159
|
+
readonly example: "postgresql-0";
|
|
160
|
+
};
|
|
161
|
+
readonly namespace: {
|
|
162
|
+
readonly type: "string";
|
|
163
|
+
readonly maxLength: 63;
|
|
164
|
+
readonly minLength: 1;
|
|
165
|
+
readonly pattern: "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$";
|
|
166
|
+
readonly description: "Namespace of the chart deployment";
|
|
167
|
+
readonly example: "default";
|
|
168
|
+
};
|
|
169
|
+
readonly chart: {
|
|
170
|
+
readonly type: "string";
|
|
171
|
+
readonly maxLength: 63;
|
|
172
|
+
readonly minLength: 1;
|
|
173
|
+
readonly pattern: "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$";
|
|
174
|
+
readonly description: "Name of the chart listing";
|
|
175
|
+
readonly example: "postgresql";
|
|
176
|
+
};
|
|
177
|
+
};
|
|
178
|
+
readonly required: readonly ["values", "version_channel", "name", "namespace", "chart"];
|
|
179
|
+
readonly additionalProperties: false;
|
|
180
|
+
};
|
|
181
|
+
export declare const ChartSchema: {
|
|
182
|
+
readonly type: "object";
|
|
183
|
+
readonly properties: {
|
|
184
|
+
readonly values: {
|
|
185
|
+
readonly type: "string";
|
|
186
|
+
readonly description: "Values to be used in the chart encoded as a JSON string.";
|
|
187
|
+
};
|
|
188
|
+
readonly version_channel: {
|
|
189
|
+
readonly type: "string";
|
|
190
|
+
readonly pattern: "^(x|X|0|[1-9]\\d*)\\.(x|X|0|[1-9]\\d*)\\.(x|X|0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$";
|
|
191
|
+
readonly description: "Desired version range or channel for the chart.";
|
|
192
|
+
readonly example: "2.x.x-cfke.x";
|
|
193
|
+
};
|
|
194
|
+
readonly name: {
|
|
195
|
+
readonly type: "string";
|
|
196
|
+
readonly maxLength: 63;
|
|
197
|
+
readonly minLength: 1;
|
|
198
|
+
readonly pattern: "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$";
|
|
199
|
+
readonly description: "Unique identifier of the chart deployment aka name of the helm release.";
|
|
200
|
+
readonly example: "postgresql-0";
|
|
201
|
+
};
|
|
202
|
+
readonly namespace: {
|
|
203
|
+
readonly type: "string";
|
|
204
|
+
readonly maxLength: 63;
|
|
205
|
+
readonly minLength: 1;
|
|
206
|
+
readonly pattern: "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$";
|
|
207
|
+
readonly description: "Namespace of the chart deployment";
|
|
208
|
+
readonly example: "default";
|
|
209
|
+
};
|
|
210
|
+
readonly chart: {
|
|
211
|
+
readonly type: "string";
|
|
212
|
+
readonly maxLength: 63;
|
|
213
|
+
readonly minLength: 1;
|
|
214
|
+
readonly pattern: "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$";
|
|
215
|
+
readonly description: "Name of the chart listing";
|
|
216
|
+
readonly example: "postgresql";
|
|
217
|
+
};
|
|
218
|
+
readonly status: {
|
|
219
|
+
readonly type: "string";
|
|
220
|
+
readonly description: "Status of the chart deployment.";
|
|
221
|
+
readonly example: "active";
|
|
222
|
+
readonly enum: readonly ["InstallSucceeded", "InstallFailed", "UpgradeSucceeded", "UpgradeFailed", "TestSucceeded", "TestFailed", "RollbackSucceeded", "RollbackFailed", "UninstallSucceeded", "UninstallFailed", "ArtifactFailed", "DependencyNotReady", "Progressing", "SourceNotReady"];
|
|
223
|
+
};
|
|
224
|
+
readonly version_current: {
|
|
225
|
+
readonly type: "string";
|
|
226
|
+
readonly description: "Current version of the chart deployment.";
|
|
227
|
+
readonly example: "2.1.33-cfke.11";
|
|
228
|
+
};
|
|
229
|
+
readonly created_at: {
|
|
230
|
+
readonly type: "string";
|
|
231
|
+
readonly description: "Creation date and time of the chart deployment.";
|
|
232
|
+
readonly example: "2024-09-12T09:11:27Z";
|
|
233
|
+
};
|
|
234
|
+
readonly updated_at: {
|
|
235
|
+
readonly type: "string";
|
|
236
|
+
readonly description: "Last update date and time of the chart deployment.";
|
|
237
|
+
readonly example: "2024-09-12T09:11:27Z";
|
|
238
|
+
};
|
|
239
|
+
readonly ready: {
|
|
240
|
+
readonly type: "boolean";
|
|
241
|
+
readonly description: "Indicates if the chart deployment is ready to be used.";
|
|
242
|
+
readonly example: true;
|
|
243
|
+
};
|
|
244
|
+
};
|
|
245
|
+
readonly required: readonly ["values", "version_channel", "name", "namespace", "chart", "status", "version_current", "created_at", "updated_at", "ready"];
|
|
246
|
+
readonly additionalProperties: false;
|
|
247
|
+
};
|
|
248
|
+
export declare const ChartUpdateInputSchema: {
|
|
249
|
+
readonly type: "object";
|
|
250
|
+
readonly properties: {
|
|
251
|
+
readonly values: {
|
|
252
|
+
readonly type: "string";
|
|
253
|
+
readonly description: "Values to be used in the chart encoded as a JSON string.";
|
|
254
|
+
};
|
|
255
|
+
readonly version_channel: {
|
|
256
|
+
readonly type: "string";
|
|
257
|
+
readonly pattern: "^(x|X|0|[1-9]\\d*)\\.(x|X|0|[1-9]\\d*)\\.(x|X|0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$";
|
|
258
|
+
readonly description: "Desired version range or channel for the chart.";
|
|
259
|
+
readonly example: "2.x.x-cfke.x";
|
|
129
260
|
};
|
|
130
261
|
};
|
|
131
|
-
readonly required: readonly ["
|
|
262
|
+
readonly required: readonly ["values", "version_channel"];
|
|
132
263
|
readonly additionalProperties: false;
|
|
133
264
|
};
|
|
134
265
|
export declare const ClusterCreateInputSchema: {
|
|
@@ -142,25 +273,26 @@ export declare const ClusterCreateInputSchema: {
|
|
|
142
273
|
readonly description: "Name of the cluster.";
|
|
143
274
|
readonly example: "production-cluster";
|
|
144
275
|
};
|
|
145
|
-
readonly region: {
|
|
146
|
-
readonly type: "string";
|
|
147
|
-
readonly description: "Cloudfleet control plane region. One of \"staging\", \"northamerica-central-1\". This field can not be updated after creation.";
|
|
148
|
-
readonly default: "staging";
|
|
149
|
-
readonly example: "northamerica-central-1";
|
|
150
|
-
readonly enum: readonly ["staging", "northamerica-central-1"];
|
|
151
|
-
};
|
|
152
276
|
readonly tier: {
|
|
153
277
|
readonly type: "string";
|
|
154
278
|
readonly description: "Tier of the cluster.";
|
|
155
279
|
readonly example: "pro";
|
|
156
280
|
readonly enum: readonly ["basic", "pro"];
|
|
157
281
|
};
|
|
282
|
+
readonly region: {
|
|
283
|
+
readonly type: "string";
|
|
284
|
+
readonly description: "Cloudfleet control plane region. One of \"staging-1a\", \"northamerica-central-1\", \"europe-central-1a\", \"northamerica-central-1a\". This field can not be updated after creation.";
|
|
285
|
+
readonly default: "staging-1a";
|
|
286
|
+
readonly example: "northamerica-central-1a";
|
|
287
|
+
readonly enum: readonly ["staging-1a", "northamerica-central-1", "europe-central-1a", "northamerica-central-1a"];
|
|
288
|
+
};
|
|
158
289
|
readonly version_channel: {
|
|
159
290
|
readonly type: "string";
|
|
160
291
|
readonly pattern: "^(x|X|0|[1-9]\\d*)\\.(x|X|0|[1-9]\\d*)\\.(x|X|0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$";
|
|
161
292
|
readonly description: "Version of the kubernetes cluster.";
|
|
162
293
|
readonly default: "1.x.x-cfke.x";
|
|
163
|
-
readonly example: "1.
|
|
294
|
+
readonly example: "1.x.x-cfke.x";
|
|
295
|
+
readonly enum: readonly ["1.x.x-cfke.x", "1.31.x-cfke.x", "1.32.x-cfke.x", "1.33.x-cfke.x"];
|
|
164
296
|
};
|
|
165
297
|
};
|
|
166
298
|
readonly required: readonly ["name", "tier"];
|
|
@@ -180,6 +312,11 @@ export declare const ClusterJoinInformationSchema: {
|
|
|
180
312
|
readonly description: "Internal URL of the Kubernetes cluster control plane. This is the endpoint that kubelet uses to connect to the cluster.";
|
|
181
313
|
readonly example: "https://10.31.64.7:6443";
|
|
182
314
|
};
|
|
315
|
+
readonly cluster_dns: {
|
|
316
|
+
readonly type: "string";
|
|
317
|
+
readonly description: "Cluster DNS IP address. This is the IP address of the kube-dns service in the cluster.";
|
|
318
|
+
readonly example: "10.96.0.10";
|
|
319
|
+
};
|
|
183
320
|
readonly auth_key: {
|
|
184
321
|
readonly type: "string";
|
|
185
322
|
readonly description: "Authentication key for the cluster.";
|
|
@@ -196,7 +333,7 @@ export declare const ClusterJoinInformationSchema: {
|
|
|
196
333
|
readonly kubernetes: {
|
|
197
334
|
readonly type: "string";
|
|
198
335
|
readonly description: "Kubernetes version of the cluster.";
|
|
199
|
-
readonly example: "1.
|
|
336
|
+
readonly example: "1.33.7";
|
|
200
337
|
};
|
|
201
338
|
readonly tailscale: {
|
|
202
339
|
readonly type: "string";
|
|
@@ -208,8 +345,13 @@ export declare const ClusterJoinInformationSchema: {
|
|
|
208
345
|
readonly description: "Containerd version of the cluster.";
|
|
209
346
|
readonly example: "1.7.19";
|
|
210
347
|
};
|
|
348
|
+
readonly nvidia_driver: {
|
|
349
|
+
readonly type: "string";
|
|
350
|
+
readonly description: "NVIDIA driver version of the cluster.";
|
|
351
|
+
readonly example: "565.0.0";
|
|
352
|
+
};
|
|
211
353
|
};
|
|
212
|
-
readonly required: readonly ["kubernetes", "tailscale", "containerd"];
|
|
354
|
+
readonly required: readonly ["kubernetes", "tailscale", "containerd", "nvidia_driver"];
|
|
213
355
|
readonly additionalProperties: false;
|
|
214
356
|
readonly description: "Versions of the different components of the cluster.";
|
|
215
357
|
};
|
|
@@ -237,7 +379,7 @@ export declare const ClusterJoinInformationSchema: {
|
|
|
237
379
|
readonly description: "OIDC Information for hosts to access to third party API's.";
|
|
238
380
|
};
|
|
239
381
|
};
|
|
240
|
-
readonly required: readonly ["certificate_authority", "endpoint", "auth_key", "bootstrap_token", "versions", "third_party_api_access_config"];
|
|
382
|
+
readonly required: readonly ["certificate_authority", "endpoint", "cluster_dns", "auth_key", "bootstrap_token", "versions", "third_party_api_access_config"];
|
|
241
383
|
readonly additionalProperties: false;
|
|
242
384
|
};
|
|
243
385
|
export declare const ClusterSchema: {
|
|
@@ -251,25 +393,18 @@ export declare const ClusterSchema: {
|
|
|
251
393
|
readonly description: "Name of the cluster.";
|
|
252
394
|
readonly example: "production-cluster";
|
|
253
395
|
};
|
|
254
|
-
readonly region: {
|
|
255
|
-
readonly type: "string";
|
|
256
|
-
readonly description: "Cloudfleet control plane region. One of \"staging\", \"northamerica-central-1\". This field can not be updated after creation.";
|
|
257
|
-
readonly default: "staging";
|
|
258
|
-
readonly example: "northamerica-central-1";
|
|
259
|
-
readonly enum: readonly ["staging", "northamerica-central-1"];
|
|
260
|
-
};
|
|
261
396
|
readonly tier: {
|
|
262
397
|
readonly type: "string";
|
|
263
398
|
readonly description: "Tier of the cluster.";
|
|
264
399
|
readonly example: "pro";
|
|
265
400
|
readonly enum: readonly ["basic", "pro"];
|
|
266
401
|
};
|
|
267
|
-
readonly
|
|
402
|
+
readonly region: {
|
|
268
403
|
readonly type: "string";
|
|
269
|
-
readonly
|
|
270
|
-
readonly
|
|
271
|
-
readonly
|
|
272
|
-
readonly
|
|
404
|
+
readonly description: "Cloudfleet control plane region. One of \"staging-1a\", \"northamerica-central-1\", \"europe-central-1a\", \"northamerica-central-1a\". This field can not be updated after creation.";
|
|
405
|
+
readonly default: "staging-1a";
|
|
406
|
+
readonly example: "northamerica-central-1a";
|
|
407
|
+
readonly enum: readonly ["staging-1a", "northamerica-central-1", "europe-central-1a", "northamerica-central-1a"];
|
|
273
408
|
};
|
|
274
409
|
readonly id: {
|
|
275
410
|
readonly type: "string";
|
|
@@ -281,19 +416,30 @@ export declare const ClusterSchema: {
|
|
|
281
416
|
readonly type: "string";
|
|
282
417
|
readonly description: "Status of the cluster. When creating a new cluster, set to `active`. When deleting a clusters, set to `deleted`.";
|
|
283
418
|
readonly example: "active";
|
|
284
|
-
readonly enum: readonly ["active", "deleted", "creating", "deployed", "failed", "updating"];
|
|
419
|
+
readonly enum: readonly ["active", "disabled", "deleted", "creating", "deployed", "failed", "updating"];
|
|
285
420
|
};
|
|
286
421
|
readonly endpoint: {
|
|
287
422
|
readonly anyOf: readonly [{
|
|
288
423
|
readonly type: "string";
|
|
289
424
|
readonly format: "uri";
|
|
290
|
-
readonly description: "URL of the Kubernetes cluster control plane. This is the endpoint that kubectl uses to connect to the cluster.";
|
|
425
|
+
readonly description: "URL signed by the private CA of the Kubernetes cluster control plane. This is the endpoint that kubectl uses to connect to the cluster. (Deprecated, use endpoint_public instead)";
|
|
291
426
|
readonly example: "https://2ae6557c-c61f-49c6-b4c1-a65473470a03.staging.cfke.cloudfleet.dev:6443";
|
|
292
427
|
}, {
|
|
293
428
|
readonly type: "string";
|
|
294
429
|
readonly enum: readonly [""];
|
|
295
430
|
}];
|
|
296
431
|
};
|
|
432
|
+
readonly endpoint_public: {
|
|
433
|
+
readonly anyOf: readonly [{
|
|
434
|
+
readonly type: "string";
|
|
435
|
+
readonly format: "uri";
|
|
436
|
+
readonly description: "URL signed by a public CA of the Kubernetes cluster control plane. This is the endpoint that kubectl uses to connect to the cluster.";
|
|
437
|
+
readonly example: "https://2ae6557c-c61f-49c6-b4c1-a65473470a03.staging.cfke.io";
|
|
438
|
+
}, {
|
|
439
|
+
readonly type: "string";
|
|
440
|
+
readonly enum: readonly [""];
|
|
441
|
+
}];
|
|
442
|
+
};
|
|
297
443
|
readonly certificate_ca: {
|
|
298
444
|
readonly type: "string";
|
|
299
445
|
readonly description: "Certificate authority data for the kubernetes cluster. This is the root certificate authority for the cluster.";
|
|
@@ -302,7 +448,7 @@ export declare const ClusterSchema: {
|
|
|
302
448
|
readonly version_current: {
|
|
303
449
|
readonly type: "string";
|
|
304
450
|
readonly description: "Current version of the cluster.";
|
|
305
|
-
readonly example: "1.
|
|
451
|
+
readonly example: "1.33.7-cfke.264";
|
|
306
452
|
};
|
|
307
453
|
readonly created_at: {
|
|
308
454
|
readonly type: "string";
|
|
@@ -319,6 +465,12 @@ export declare const ClusterSchema: {
|
|
|
319
465
|
readonly description: "Indicates if the cluster is ready to be used.";
|
|
320
466
|
readonly example: true;
|
|
321
467
|
};
|
|
468
|
+
readonly version_channel: {
|
|
469
|
+
readonly type: "string";
|
|
470
|
+
readonly pattern: "^(x|X|0|[1-9]\\d*)\\.(x|X|0|[1-9]\\d*)\\.(x|X|0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$";
|
|
471
|
+
readonly description: "Version of the kubernetes cluster.";
|
|
472
|
+
readonly example: "1.x.x-cfke.x";
|
|
473
|
+
};
|
|
322
474
|
};
|
|
323
475
|
readonly required: readonly ["name", "tier", "id", "status"];
|
|
324
476
|
readonly additionalProperties: false;
|
|
@@ -334,13 +486,20 @@ export declare const ClusterUpdateInputSchema: {
|
|
|
334
486
|
readonly description: "Name of the cluster.";
|
|
335
487
|
readonly example: "production-cluster";
|
|
336
488
|
};
|
|
489
|
+
readonly tier: {
|
|
490
|
+
readonly type: "string";
|
|
491
|
+
readonly description: "Tier of the cluster.";
|
|
492
|
+
readonly example: "pro";
|
|
493
|
+
readonly enum: readonly ["basic", "pro"];
|
|
494
|
+
};
|
|
337
495
|
readonly version_channel: {
|
|
338
496
|
readonly type: "string";
|
|
339
497
|
readonly pattern: "^(x|X|0|[1-9]\\d*)\\.(x|X|0|[1-9]\\d*)\\.(x|X|0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$";
|
|
340
498
|
readonly description: "Version of the kubernetes cluster.";
|
|
341
|
-
readonly example: "1.
|
|
499
|
+
readonly example: "1.x.x-cfke.x";
|
|
342
500
|
};
|
|
343
501
|
};
|
|
502
|
+
readonly required: readonly ["tier"];
|
|
344
503
|
readonly additionalProperties: false;
|
|
345
504
|
};
|
|
346
505
|
export declare const FleetCreateInputSchema: {
|
|
@@ -350,13 +509,12 @@ export declare const FleetCreateInputSchema: {
|
|
|
350
509
|
readonly type: "object";
|
|
351
510
|
readonly properties: {
|
|
352
511
|
readonly cpu: {
|
|
353
|
-
readonly type: "
|
|
354
|
-
readonly format: "float";
|
|
512
|
+
readonly type: "integer";
|
|
355
513
|
readonly minimum: 0;
|
|
356
|
-
readonly
|
|
514
|
+
readonly maximum: 100000;
|
|
515
|
+
readonly description: "CPU limit in cores. Maximum 100,000.";
|
|
357
516
|
};
|
|
358
517
|
};
|
|
359
|
-
readonly required: readonly ["cpu"];
|
|
360
518
|
readonly additionalProperties: false;
|
|
361
519
|
readonly description: "Limits define a set of bounds for provisioning capacity.";
|
|
362
520
|
};
|
|
@@ -365,57 +523,99 @@ export declare const FleetCreateInputSchema: {
|
|
|
365
523
|
readonly properties: {
|
|
366
524
|
readonly enabled: {
|
|
367
525
|
readonly type: "boolean";
|
|
368
|
-
readonly default: true;
|
|
369
526
|
};
|
|
370
527
|
readonly project: {
|
|
371
528
|
readonly type: "string";
|
|
372
|
-
readonly
|
|
529
|
+
readonly pattern: "^[a-z][a-z0-9-]{4,28}[a-z0-9]$";
|
|
530
|
+
readonly description: "GCP project ID to deploy instances into. 6-30 chars, lowercase letters/digits/hyphens, must start with a letter and not end with a hyphen. Omit when GCP is disabled.";
|
|
531
|
+
readonly example: "my-cloudfleet-project";
|
|
373
532
|
};
|
|
374
533
|
};
|
|
375
|
-
readonly required: readonly ["
|
|
534
|
+
readonly required: readonly ["enabled"];
|
|
376
535
|
readonly additionalProperties: false;
|
|
377
536
|
};
|
|
378
537
|
readonly hetzner: {
|
|
379
|
-
readonly
|
|
380
|
-
|
|
381
|
-
readonly
|
|
382
|
-
readonly
|
|
383
|
-
readonly type: "boolean";
|
|
384
|
-
readonly default: true;
|
|
385
|
-
};
|
|
386
|
-
readonly apiKey: {
|
|
387
|
-
readonly type: "string";
|
|
388
|
-
};
|
|
538
|
+
readonly type: "object";
|
|
539
|
+
readonly properties: {
|
|
540
|
+
readonly enabled: {
|
|
541
|
+
readonly type: "boolean";
|
|
389
542
|
};
|
|
390
|
-
readonly
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
readonly
|
|
395
|
-
|
|
396
|
-
};
|
|
397
|
-
readonly enabled: {
|
|
398
|
-
readonly type: "boolean";
|
|
399
|
-
readonly default: true;
|
|
400
|
-
};
|
|
543
|
+
readonly apiKey: {
|
|
544
|
+
readonly type: "string";
|
|
545
|
+
readonly maxLength: 64;
|
|
546
|
+
readonly minLength: 64;
|
|
547
|
+
readonly pattern: "^[A-Za-z0-9]+$";
|
|
548
|
+
readonly description: "Hetzner Cloud API token with read / write access (64 alphanumeric characters). Omit this field to keep the existing value.";
|
|
401
549
|
};
|
|
402
|
-
|
|
403
|
-
|
|
550
|
+
};
|
|
551
|
+
readonly required: readonly ["enabled"];
|
|
552
|
+
readonly additionalProperties: false;
|
|
404
553
|
};
|
|
405
554
|
readonly aws: {
|
|
406
555
|
readonly type: "object";
|
|
407
556
|
readonly properties: {
|
|
408
557
|
readonly enabled: {
|
|
409
558
|
readonly type: "boolean";
|
|
410
|
-
readonly default: true;
|
|
411
559
|
};
|
|
412
560
|
readonly controllerRoleArn: {
|
|
413
561
|
readonly type: "string";
|
|
414
|
-
readonly
|
|
562
|
+
readonly pattern: "^arn:aws(-[a-z]+)*:iam::\\d{12}:role\\/[\\w+=,.@/-]+$";
|
|
563
|
+
readonly description: "AWS IAM role ARN that Karpenter uses to manage resources. Omit when AWS is disabled.";
|
|
564
|
+
readonly example: "arn:aws:iam::123456789012:role/Cloudfleet";
|
|
565
|
+
};
|
|
566
|
+
};
|
|
567
|
+
readonly required: readonly ["enabled"];
|
|
568
|
+
readonly additionalProperties: false;
|
|
569
|
+
};
|
|
570
|
+
readonly constraints: {
|
|
571
|
+
readonly type: "object";
|
|
572
|
+
readonly properties: {
|
|
573
|
+
readonly 'karpenter.sh/capacity-type': {
|
|
574
|
+
readonly type: "array";
|
|
575
|
+
readonly items: {
|
|
576
|
+
readonly type: "string";
|
|
577
|
+
readonly enum: readonly ["on-demand", "spot"];
|
|
578
|
+
};
|
|
579
|
+
readonly minItems: 1;
|
|
580
|
+
readonly description: "Allowed values for `karpenter.sh/capacity-type`.";
|
|
581
|
+
readonly default: readonly ["on-demand", "spot"];
|
|
582
|
+
};
|
|
583
|
+
readonly 'kubernetes.io/arch': {
|
|
584
|
+
readonly type: "array";
|
|
585
|
+
readonly items: {
|
|
586
|
+
readonly type: "string";
|
|
587
|
+
readonly enum: readonly ["amd64", "arm64"];
|
|
588
|
+
};
|
|
589
|
+
readonly minItems: 1;
|
|
590
|
+
readonly description: "Allowed values for `kubernetes.io/arch`.";
|
|
591
|
+
readonly default: readonly ["amd64"];
|
|
592
|
+
};
|
|
593
|
+
readonly 'cfke.io/instance-family': {
|
|
594
|
+
readonly type: "array";
|
|
595
|
+
readonly items: {
|
|
596
|
+
readonly type: "string";
|
|
597
|
+
readonly enum: readonly ["a1", "a2", "a3", "a4", "c1", "c2", "c2d", "c3", "c3d", "c4", "c4a", "c4d", "c5", "c5a", "c5ad", "c5d", "c5n", "c6a", "c6g", "c6gd", "c6gn", "c6i", "c6id", "c6in", "c7a", "c7g", "c7gd", "c7gn", "c7i", "c7i-flex", "c8g", "c8gd", "cax", "ccx", "cpx", "cx", "d2", "d3", "d3en", "dl1", "dl2q", "e2", "f1", "f2", "g1", "g2", "g4ad", "g4dn", "g5", "g5g", "g6", "g6e", "gr6", "h1", "h3", "hpc6a", "hpc6id", "hpc7a", "hpc7g", "i2", "i3", "i3en", "i4g", "i4i", "i7i", "i7ie", "i8g", "im4gn", "inf1", "inf2", "is4gen", "m1", "m2", "m3", "m4", "m5", "m5a", "m5ad", "m5d", "m5dn", "m5n", "m5zn", "m6a", "m6g", "m6gd", "m6i", "m6id", "m6idn", "m6in", "m7a", "m7g", "m7gd", "m7i", "m7i-flex", "m8g", "m8gd", "n1", "n2", "n2d", "n4", "p3", "p3dn", "p4d", "p4de", "p5", "p5e", "p5en", "p6-b200", "r3", "r4", "r5", "r5a", "r5ad", "r5b", "r5d", "r5dn", "r5n", "r6a", "r6g", "r6gd", "r6i", "r6id", "r6idn", "r6in", "r7a", "r7g", "r7gd", "r7i", "r7iz", "r8g", "r8gd", "t2", "t2a", "t2d", "t3", "t3a", "t4g", "trn1", "trn1n", "u-3tb1", "u-6tb1", "u7i-12tb", "u7i-6tb", "u7i-8tb", "u7in-16tb", "u7in-24tb", "u7in-32tb", "vt1", "x1", "x1e", "x2gd", "x2idn", "x2iedn", "x2iezn", "x4", "x8g", "z1d", "z3"];
|
|
598
|
+
};
|
|
599
|
+
readonly description: "Allowed values for `cfke.io/instance-family`.";
|
|
600
|
+
};
|
|
601
|
+
readonly 'topology.kubernetes.io/region': {
|
|
602
|
+
readonly type: "array";
|
|
603
|
+
readonly items: {
|
|
604
|
+
readonly type: "string";
|
|
605
|
+
readonly enum: readonly ["africa-south1", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "ash", "asia-east1", "asia-east2", "asia-northeast1", "asia-northeast2", "asia-northeast3", "asia-south1", "asia-south2", "asia-southeast1", "asia-southeast2", "australia-southeast1", "australia-southeast2", "ca-central-1", "eu-central-1", "eu-central-2", "eu-north-1", "eu-west-1", "eu-west-2", "eu-west-3", "europe-central2", "europe-north1", "europe-southwest1", "europe-west1", "europe-west10", "europe-west12", "europe-west2", "europe-west3", "europe-west4", "europe-west6", "europe-west8", "europe-west9", "fsn1", "hel1", "hil", "me-central1", "me-central2", "me-west1", "nbg1", "northamerica-northeast1", "northamerica-northeast2", "sa-east-1", "sin", "southamerica-east1", "southamerica-west1", "us-central1", "us-east-1", "us-east-2", "us-east1", "us-east4", "us-east5", "us-south1", "us-west-1", "us-west-2", "us-west1", "us-west2", "us-west3", "us-west4"];
|
|
606
|
+
};
|
|
607
|
+
readonly description: "Allowed values for `topology.kubernetes.io/region`.";
|
|
415
608
|
};
|
|
416
609
|
};
|
|
417
|
-
readonly required: readonly ["controllerRoleArn"];
|
|
418
610
|
readonly additionalProperties: false;
|
|
611
|
+
readonly description: "Constraints define scheduling and provisioning requirements for the fleet. Each field restricts the values allowed for a given Kubernetes label key. Multiple constraints are ANDed together. Omit a field to place no restriction on that key.";
|
|
612
|
+
};
|
|
613
|
+
readonly scalingProfile: {
|
|
614
|
+
readonly type: "string";
|
|
615
|
+
readonly description: "Controls scale-up / scale-down responsiveness. `aggressive` prioritizes cost-optimization. `conservative` prioritizes stability of the fleet.";
|
|
616
|
+
readonly default: "conservative";
|
|
617
|
+
readonly example: "conservative";
|
|
618
|
+
readonly enum: readonly ["aggressive", "conservative"];
|
|
419
619
|
};
|
|
420
620
|
readonly id: {
|
|
421
621
|
readonly type: "string";
|
|
@@ -425,13 +625,8 @@ export declare const FleetCreateInputSchema: {
|
|
|
425
625
|
readonly description: "Unique identifier of the kubernetes fleet.";
|
|
426
626
|
readonly example: "new-clouds-fleet";
|
|
427
627
|
};
|
|
428
|
-
readonly type: {
|
|
429
|
-
readonly type: "string";
|
|
430
|
-
readonly description: "Specifies the fleet type: infrastructure managed by Cloudfleet or Connected Fleets.";
|
|
431
|
-
readonly enum: readonly ["managed", "connected"];
|
|
432
|
-
};
|
|
433
628
|
};
|
|
434
|
-
readonly required: readonly ["id"
|
|
629
|
+
readonly required: readonly ["id"];
|
|
435
630
|
readonly additionalProperties: false;
|
|
436
631
|
};
|
|
437
632
|
export declare const FleetSchema: {
|
|
@@ -441,13 +636,12 @@ export declare const FleetSchema: {
|
|
|
441
636
|
readonly type: "object";
|
|
442
637
|
readonly properties: {
|
|
443
638
|
readonly cpu: {
|
|
444
|
-
readonly type: "
|
|
445
|
-
readonly format: "float";
|
|
639
|
+
readonly type: "integer";
|
|
446
640
|
readonly minimum: 0;
|
|
447
|
-
readonly
|
|
641
|
+
readonly maximum: 100000;
|
|
642
|
+
readonly description: "CPU limit in cores. Maximum 100,000.";
|
|
448
643
|
};
|
|
449
644
|
};
|
|
450
|
-
readonly required: readonly ["cpu"];
|
|
451
645
|
readonly additionalProperties: false;
|
|
452
646
|
readonly description: "Limits define a set of bounds for provisioning capacity.";
|
|
453
647
|
};
|
|
@@ -456,75 +650,110 @@ export declare const FleetSchema: {
|
|
|
456
650
|
readonly properties: {
|
|
457
651
|
readonly enabled: {
|
|
458
652
|
readonly type: "boolean";
|
|
459
|
-
readonly default: true;
|
|
460
653
|
};
|
|
461
654
|
readonly project: {
|
|
462
655
|
readonly type: "string";
|
|
463
|
-
readonly
|
|
656
|
+
readonly pattern: "^[a-z][a-z0-9-]{4,28}[a-z0-9]$";
|
|
657
|
+
readonly description: "GCP project ID to deploy instances into. 6-30 chars, lowercase letters/digits/hyphens, must start with a letter and not end with a hyphen. Omit when GCP is disabled.";
|
|
658
|
+
readonly example: "my-cloudfleet-project";
|
|
464
659
|
};
|
|
465
660
|
};
|
|
466
|
-
readonly required: readonly ["
|
|
661
|
+
readonly required: readonly ["enabled"];
|
|
467
662
|
readonly additionalProperties: false;
|
|
468
663
|
};
|
|
469
664
|
readonly hetzner: {
|
|
470
|
-
readonly
|
|
471
|
-
|
|
472
|
-
readonly
|
|
473
|
-
readonly
|
|
474
|
-
readonly type: "boolean";
|
|
475
|
-
readonly default: true;
|
|
476
|
-
};
|
|
477
|
-
readonly apiKey: {
|
|
478
|
-
readonly type: "string";
|
|
479
|
-
};
|
|
665
|
+
readonly type: "object";
|
|
666
|
+
readonly properties: {
|
|
667
|
+
readonly enabled: {
|
|
668
|
+
readonly type: "boolean";
|
|
480
669
|
};
|
|
481
|
-
readonly
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
readonly apiKey: {
|
|
486
|
-
readonly type: "string";
|
|
487
|
-
};
|
|
488
|
-
readonly enabled: {
|
|
489
|
-
readonly type: "boolean";
|
|
490
|
-
readonly default: true;
|
|
491
|
-
};
|
|
670
|
+
readonly apiKey: {
|
|
671
|
+
readonly type: "string";
|
|
672
|
+
readonly pattern: "^\\*{64}$";
|
|
673
|
+
readonly description: "Redacted Hetzner API token. Returned as 64 asterisks when a token is configured; omitted otherwise. The real value is never echoed by the API.";
|
|
492
674
|
};
|
|
493
|
-
|
|
494
|
-
|
|
675
|
+
};
|
|
676
|
+
readonly required: readonly ["enabled"];
|
|
677
|
+
readonly additionalProperties: false;
|
|
495
678
|
};
|
|
496
679
|
readonly aws: {
|
|
497
680
|
readonly type: "object";
|
|
498
681
|
readonly properties: {
|
|
499
682
|
readonly enabled: {
|
|
500
683
|
readonly type: "boolean";
|
|
501
|
-
readonly default: true;
|
|
502
684
|
};
|
|
503
685
|
readonly controllerRoleArn: {
|
|
504
686
|
readonly type: "string";
|
|
505
|
-
readonly
|
|
687
|
+
readonly pattern: "^arn:aws(-[a-z]+)*:iam::\\d{12}:role\\/[\\w+=,.@/-]+$";
|
|
688
|
+
readonly description: "AWS IAM role ARN that Karpenter uses to manage resources. Omit when AWS is disabled.";
|
|
689
|
+
readonly example: "arn:aws:iam::123456789012:role/Cloudfleet";
|
|
506
690
|
};
|
|
507
691
|
};
|
|
508
|
-
readonly required: readonly ["
|
|
692
|
+
readonly required: readonly ["enabled"];
|
|
509
693
|
readonly additionalProperties: false;
|
|
510
694
|
};
|
|
511
|
-
readonly
|
|
512
|
-
readonly type: "
|
|
513
|
-
readonly
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
695
|
+
readonly constraints: {
|
|
696
|
+
readonly type: "object";
|
|
697
|
+
readonly properties: {
|
|
698
|
+
readonly 'karpenter.sh/capacity-type': {
|
|
699
|
+
readonly type: "array";
|
|
700
|
+
readonly items: {
|
|
701
|
+
readonly type: "string";
|
|
702
|
+
readonly enum: readonly ["on-demand", "spot"];
|
|
703
|
+
};
|
|
704
|
+
readonly minItems: 1;
|
|
705
|
+
readonly description: "Allowed values for `karpenter.sh/capacity-type`.";
|
|
706
|
+
readonly default: readonly ["on-demand", "spot"];
|
|
707
|
+
};
|
|
708
|
+
readonly 'kubernetes.io/arch': {
|
|
709
|
+
readonly type: "array";
|
|
710
|
+
readonly items: {
|
|
711
|
+
readonly type: "string";
|
|
712
|
+
readonly enum: readonly ["amd64", "arm64"];
|
|
713
|
+
};
|
|
714
|
+
readonly minItems: 1;
|
|
715
|
+
readonly description: "Allowed values for `kubernetes.io/arch`.";
|
|
716
|
+
readonly default: readonly ["amd64"];
|
|
717
|
+
};
|
|
718
|
+
readonly 'cfke.io/instance-family': {
|
|
719
|
+
readonly type: "array";
|
|
720
|
+
readonly items: {
|
|
721
|
+
readonly type: "string";
|
|
722
|
+
readonly enum: readonly ["a1", "a2", "a3", "a4", "c1", "c2", "c2d", "c3", "c3d", "c4", "c4a", "c4d", "c5", "c5a", "c5ad", "c5d", "c5n", "c6a", "c6g", "c6gd", "c6gn", "c6i", "c6id", "c6in", "c7a", "c7g", "c7gd", "c7gn", "c7i", "c7i-flex", "c8g", "c8gd", "cax", "ccx", "cpx", "cx", "d2", "d3", "d3en", "dl1", "dl2q", "e2", "f1", "f2", "g1", "g2", "g4ad", "g4dn", "g5", "g5g", "g6", "g6e", "gr6", "h1", "h3", "hpc6a", "hpc6id", "hpc7a", "hpc7g", "i2", "i3", "i3en", "i4g", "i4i", "i7i", "i7ie", "i8g", "im4gn", "inf1", "inf2", "is4gen", "m1", "m2", "m3", "m4", "m5", "m5a", "m5ad", "m5d", "m5dn", "m5n", "m5zn", "m6a", "m6g", "m6gd", "m6i", "m6id", "m6idn", "m6in", "m7a", "m7g", "m7gd", "m7i", "m7i-flex", "m8g", "m8gd", "n1", "n2", "n2d", "n4", "p3", "p3dn", "p4d", "p4de", "p5", "p5e", "p5en", "p6-b200", "r3", "r4", "r5", "r5a", "r5ad", "r5b", "r5d", "r5dn", "r5n", "r6a", "r6g", "r6gd", "r6i", "r6id", "r6idn", "r6in", "r7a", "r7g", "r7gd", "r7i", "r7iz", "r8g", "r8gd", "t2", "t2a", "t2d", "t3", "t3a", "t4g", "trn1", "trn1n", "u-3tb1", "u-6tb1", "u7i-12tb", "u7i-6tb", "u7i-8tb", "u7in-16tb", "u7in-24tb", "u7in-32tb", "vt1", "x1", "x1e", "x2gd", "x2idn", "x2iedn", "x2iezn", "x4", "x8g", "z1d", "z3"];
|
|
723
|
+
};
|
|
724
|
+
readonly description: "Allowed values for `cfke.io/instance-family`.";
|
|
725
|
+
};
|
|
726
|
+
readonly 'topology.kubernetes.io/region': {
|
|
727
|
+
readonly type: "array";
|
|
728
|
+
readonly items: {
|
|
729
|
+
readonly type: "string";
|
|
730
|
+
readonly enum: readonly ["africa-south1", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "ash", "asia-east1", "asia-east2", "asia-northeast1", "asia-northeast2", "asia-northeast3", "asia-south1", "asia-south2", "asia-southeast1", "asia-southeast2", "australia-southeast1", "australia-southeast2", "ca-central-1", "eu-central-1", "eu-central-2", "eu-north-1", "eu-west-1", "eu-west-2", "eu-west-3", "europe-central2", "europe-north1", "europe-southwest1", "europe-west1", "europe-west10", "europe-west12", "europe-west2", "europe-west3", "europe-west4", "europe-west6", "europe-west8", "europe-west9", "fsn1", "hel1", "hil", "me-central1", "me-central2", "me-west1", "nbg1", "northamerica-northeast1", "northamerica-northeast2", "sa-east-1", "sin", "southamerica-east1", "southamerica-west1", "us-central1", "us-east-1", "us-east-2", "us-east1", "us-east4", "us-east5", "us-south1", "us-west-1", "us-west-2", "us-west1", "us-west2", "us-west3", "us-west4"];
|
|
731
|
+
};
|
|
732
|
+
readonly description: "Allowed values for `topology.kubernetes.io/region`.";
|
|
733
|
+
};
|
|
734
|
+
};
|
|
735
|
+
readonly additionalProperties: false;
|
|
736
|
+
readonly description: "Constraints define scheduling and provisioning requirements for the fleet. Each field restricts the values allowed for a given Kubernetes label key. Multiple constraints are ANDed together. Omit a field to place no restriction on that key.";
|
|
737
|
+
};
|
|
738
|
+
readonly scalingProfile: {
|
|
739
|
+
readonly type: "string";
|
|
740
|
+
readonly description: "Controls scale-up / scale-down responsiveness. `aggressive` prioritizes cost-optimization. `conservative` prioritizes stability of the fleet.";
|
|
741
|
+
readonly default: "conservative";
|
|
742
|
+
readonly example: "conservative";
|
|
743
|
+
readonly enum: readonly ["aggressive", "conservative"];
|
|
744
|
+
};
|
|
745
|
+
readonly id: {
|
|
746
|
+
readonly type: "string";
|
|
747
|
+
readonly maxLength: 63;
|
|
748
|
+
readonly minLength: 1;
|
|
749
|
+
readonly pattern: "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$";
|
|
750
|
+
readonly description: "Unique identifier of the kubernetes fleet.";
|
|
751
|
+
readonly example: "new-clouds-fleet";
|
|
752
|
+
};
|
|
753
|
+
};
|
|
754
|
+
readonly required: readonly ["scalingProfile", "id"];
|
|
755
|
+
readonly additionalProperties: false;
|
|
756
|
+
};
|
|
528
757
|
export declare const FleetUpdateInputSchema: {
|
|
529
758
|
readonly type: "object";
|
|
530
759
|
readonly properties: {
|
|
@@ -532,13 +761,12 @@ export declare const FleetUpdateInputSchema: {
|
|
|
532
761
|
readonly type: "object";
|
|
533
762
|
readonly properties: {
|
|
534
763
|
readonly cpu: {
|
|
535
|
-
readonly type: "
|
|
536
|
-
readonly format: "float";
|
|
764
|
+
readonly type: "integer";
|
|
537
765
|
readonly minimum: 0;
|
|
538
|
-
readonly
|
|
766
|
+
readonly maximum: 100000;
|
|
767
|
+
readonly description: "CPU limit in cores. Maximum 100,000.";
|
|
539
768
|
};
|
|
540
769
|
};
|
|
541
|
-
readonly required: readonly ["cpu"];
|
|
542
770
|
readonly additionalProperties: false;
|
|
543
771
|
readonly description: "Limits define a set of bounds for provisioning capacity.";
|
|
544
772
|
};
|
|
@@ -547,59 +775,119 @@ export declare const FleetUpdateInputSchema: {
|
|
|
547
775
|
readonly properties: {
|
|
548
776
|
readonly enabled: {
|
|
549
777
|
readonly type: "boolean";
|
|
550
|
-
readonly default: true;
|
|
551
778
|
};
|
|
552
779
|
readonly project: {
|
|
553
780
|
readonly type: "string";
|
|
554
|
-
readonly
|
|
781
|
+
readonly pattern: "^[a-z][a-z0-9-]{4,28}[a-z0-9]$";
|
|
782
|
+
readonly description: "GCP project ID to deploy instances into. 6-30 chars, lowercase letters/digits/hyphens, must start with a letter and not end with a hyphen. Omit when GCP is disabled.";
|
|
783
|
+
readonly example: "my-cloudfleet-project";
|
|
555
784
|
};
|
|
556
785
|
};
|
|
557
|
-
readonly required: readonly ["
|
|
786
|
+
readonly required: readonly ["enabled"];
|
|
558
787
|
readonly additionalProperties: false;
|
|
559
788
|
};
|
|
560
789
|
readonly hetzner: {
|
|
561
|
-
readonly
|
|
562
|
-
|
|
563
|
-
readonly
|
|
564
|
-
readonly
|
|
565
|
-
readonly type: "boolean";
|
|
566
|
-
readonly default: true;
|
|
567
|
-
};
|
|
568
|
-
readonly apiKey: {
|
|
569
|
-
readonly type: "string";
|
|
570
|
-
};
|
|
790
|
+
readonly type: "object";
|
|
791
|
+
readonly properties: {
|
|
792
|
+
readonly enabled: {
|
|
793
|
+
readonly type: "boolean";
|
|
571
794
|
};
|
|
572
|
-
readonly
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
readonly
|
|
577
|
-
|
|
578
|
-
};
|
|
579
|
-
readonly enabled: {
|
|
580
|
-
readonly type: "boolean";
|
|
581
|
-
readonly default: true;
|
|
582
|
-
};
|
|
795
|
+
readonly apiKey: {
|
|
796
|
+
readonly type: "string";
|
|
797
|
+
readonly maxLength: 64;
|
|
798
|
+
readonly minLength: 64;
|
|
799
|
+
readonly pattern: "^[A-Za-z0-9]+$";
|
|
800
|
+
readonly description: "Hetzner Cloud API token with read / write access (64 alphanumeric characters). Omit this field to keep the existing value.";
|
|
583
801
|
};
|
|
584
|
-
|
|
585
|
-
|
|
802
|
+
};
|
|
803
|
+
readonly required: readonly ["enabled"];
|
|
804
|
+
readonly additionalProperties: false;
|
|
586
805
|
};
|
|
587
806
|
readonly aws: {
|
|
588
807
|
readonly type: "object";
|
|
589
808
|
readonly properties: {
|
|
590
809
|
readonly enabled: {
|
|
591
810
|
readonly type: "boolean";
|
|
592
|
-
readonly default: true;
|
|
593
811
|
};
|
|
594
812
|
readonly controllerRoleArn: {
|
|
595
813
|
readonly type: "string";
|
|
596
|
-
readonly
|
|
814
|
+
readonly pattern: "^arn:aws(-[a-z]+)*:iam::\\d{12}:role\\/[\\w+=,.@/-]+$";
|
|
815
|
+
readonly description: "AWS IAM role ARN that Karpenter uses to manage resources. Omit when AWS is disabled.";
|
|
816
|
+
readonly example: "arn:aws:iam::123456789012:role/Cloudfleet";
|
|
597
817
|
};
|
|
598
818
|
};
|
|
599
|
-
readonly required: readonly ["
|
|
819
|
+
readonly required: readonly ["enabled"];
|
|
600
820
|
readonly additionalProperties: false;
|
|
601
821
|
};
|
|
822
|
+
readonly constraints: {
|
|
823
|
+
readonly type: "object";
|
|
824
|
+
readonly properties: {
|
|
825
|
+
readonly 'karpenter.sh/capacity-type': {
|
|
826
|
+
readonly type: "array";
|
|
827
|
+
readonly items: {
|
|
828
|
+
readonly type: "string";
|
|
829
|
+
readonly enum: readonly ["on-demand", "spot"];
|
|
830
|
+
};
|
|
831
|
+
readonly minItems: 1;
|
|
832
|
+
readonly description: "Allowed values for `karpenter.sh/capacity-type`.";
|
|
833
|
+
};
|
|
834
|
+
readonly 'kubernetes.io/arch': {
|
|
835
|
+
readonly type: "array";
|
|
836
|
+
readonly items: {
|
|
837
|
+
readonly type: "string";
|
|
838
|
+
readonly enum: readonly ["amd64", "arm64"];
|
|
839
|
+
};
|
|
840
|
+
readonly minItems: 1;
|
|
841
|
+
readonly description: "Allowed values for `kubernetes.io/arch`.";
|
|
842
|
+
};
|
|
843
|
+
readonly 'cfke.io/instance-family': {
|
|
844
|
+
readonly type: "array";
|
|
845
|
+
readonly items: {
|
|
846
|
+
readonly type: "string";
|
|
847
|
+
readonly enum: readonly ["a1", "a2", "a3", "a4", "c1", "c2", "c2d", "c3", "c3d", "c4", "c4a", "c4d", "c5", "c5a", "c5ad", "c5d", "c5n", "c6a", "c6g", "c6gd", "c6gn", "c6i", "c6id", "c6in", "c7a", "c7g", "c7gd", "c7gn", "c7i", "c7i-flex", "c8g", "c8gd", "cax", "ccx", "cpx", "cx", "d2", "d3", "d3en", "dl1", "dl2q", "e2", "f1", "f2", "g1", "g2", "g4ad", "g4dn", "g5", "g5g", "g6", "g6e", "gr6", "h1", "h3", "hpc6a", "hpc6id", "hpc7a", "hpc7g", "i2", "i3", "i3en", "i4g", "i4i", "i7i", "i7ie", "i8g", "im4gn", "inf1", "inf2", "is4gen", "m1", "m2", "m3", "m4", "m5", "m5a", "m5ad", "m5d", "m5dn", "m5n", "m5zn", "m6a", "m6g", "m6gd", "m6i", "m6id", "m6idn", "m6in", "m7a", "m7g", "m7gd", "m7i", "m7i-flex", "m8g", "m8gd", "n1", "n2", "n2d", "n4", "p3", "p3dn", "p4d", "p4de", "p5", "p5e", "p5en", "p6-b200", "r3", "r4", "r5", "r5a", "r5ad", "r5b", "r5d", "r5dn", "r5n", "r6a", "r6g", "r6gd", "r6i", "r6id", "r6idn", "r6in", "r7a", "r7g", "r7gd", "r7i", "r7iz", "r8g", "r8gd", "t2", "t2a", "t2d", "t3", "t3a", "t4g", "trn1", "trn1n", "u-3tb1", "u-6tb1", "u7i-12tb", "u7i-6tb", "u7i-8tb", "u7in-16tb", "u7in-24tb", "u7in-32tb", "vt1", "x1", "x1e", "x2gd", "x2idn", "x2iedn", "x2iezn", "x4", "x8g", "z1d", "z3"];
|
|
848
|
+
};
|
|
849
|
+
readonly description: "Allowed values for `cfke.io/instance-family`.";
|
|
850
|
+
};
|
|
851
|
+
readonly 'topology.kubernetes.io/region': {
|
|
852
|
+
readonly type: "array";
|
|
853
|
+
readonly items: {
|
|
854
|
+
readonly type: "string";
|
|
855
|
+
readonly enum: readonly ["africa-south1", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "ash", "asia-east1", "asia-east2", "asia-northeast1", "asia-northeast2", "asia-northeast3", "asia-south1", "asia-south2", "asia-southeast1", "asia-southeast2", "australia-southeast1", "australia-southeast2", "ca-central-1", "eu-central-1", "eu-central-2", "eu-north-1", "eu-west-1", "eu-west-2", "eu-west-3", "europe-central2", "europe-north1", "europe-southwest1", "europe-west1", "europe-west10", "europe-west12", "europe-west2", "europe-west3", "europe-west4", "europe-west6", "europe-west8", "europe-west9", "fsn1", "hel1", "hil", "me-central1", "me-central2", "me-west1", "nbg1", "northamerica-northeast1", "northamerica-northeast2", "sa-east-1", "sin", "southamerica-east1", "southamerica-west1", "us-central1", "us-east-1", "us-east-2", "us-east1", "us-east4", "us-east5", "us-south1", "us-west-1", "us-west-2", "us-west1", "us-west2", "us-west3", "us-west4"];
|
|
856
|
+
};
|
|
857
|
+
readonly description: "Allowed values for `topology.kubernetes.io/region`.";
|
|
858
|
+
};
|
|
859
|
+
};
|
|
860
|
+
readonly additionalProperties: false;
|
|
861
|
+
readonly description: "Constraints define scheduling and provisioning requirements for the fleet. Each field restricts the values allowed for a given Kubernetes label key. Multiple constraints are ANDed together. Omit a field to place no restriction on that key.";
|
|
862
|
+
};
|
|
863
|
+
readonly scalingProfile: {
|
|
864
|
+
readonly type: "string";
|
|
865
|
+
readonly description: "Controls scale-up / scale-down responsiveness. `aggressive` prioritizes cost-optimization. `conservative` prioritizes stability of the fleet.";
|
|
866
|
+
readonly example: "conservative";
|
|
867
|
+
readonly enum: readonly ["aggressive", "conservative"];
|
|
868
|
+
};
|
|
869
|
+
};
|
|
870
|
+
readonly required: readonly ["scalingProfile"];
|
|
871
|
+
readonly additionalProperties: false;
|
|
872
|
+
};
|
|
873
|
+
export declare const InviteCreateInputSchema: {
|
|
874
|
+
readonly type: "object";
|
|
875
|
+
readonly properties: {
|
|
876
|
+
readonly email: {
|
|
877
|
+
readonly type: "string";
|
|
878
|
+
readonly format: "email";
|
|
879
|
+
readonly description: "Email address of the user to invite.";
|
|
880
|
+
readonly example: "email@example.com";
|
|
881
|
+
};
|
|
882
|
+
readonly role: {
|
|
883
|
+
readonly type: "string";
|
|
884
|
+
readonly description: "Role the invited user will be assigned on redemption. Can be 'Administrator' or 'User'.";
|
|
885
|
+
readonly default: "User";
|
|
886
|
+
readonly example: "User";
|
|
887
|
+
readonly enum: readonly ["Administrator", "User"];
|
|
888
|
+
};
|
|
602
889
|
};
|
|
890
|
+
readonly required: readonly ["email"];
|
|
603
891
|
readonly additionalProperties: false;
|
|
604
892
|
};
|
|
605
893
|
export declare const InviteSchema: {
|
|
@@ -633,6 +921,13 @@ export declare const InviteSchema: {
|
|
|
633
921
|
readonly description: "Generated unique invite code.";
|
|
634
922
|
readonly example: "7kUZnH7nnKUFfvc4NK2KQF";
|
|
635
923
|
};
|
|
924
|
+
readonly role: {
|
|
925
|
+
readonly type: "string";
|
|
926
|
+
readonly description: "Role the invited user will be assigned on redemption. Can be 'Administrator' or 'User'.";
|
|
927
|
+
readonly default: "User";
|
|
928
|
+
readonly example: "User";
|
|
929
|
+
readonly enum: readonly ["Administrator", "User"];
|
|
930
|
+
};
|
|
636
931
|
};
|
|
637
932
|
readonly required: readonly ["date_created"];
|
|
638
933
|
readonly additionalProperties: false;
|
|
@@ -642,23 +937,18 @@ export declare const InvoiceSchema: {
|
|
|
642
937
|
readonly properties: {
|
|
643
938
|
readonly id: {
|
|
644
939
|
readonly type: "string";
|
|
645
|
-
readonly
|
|
646
|
-
readonly
|
|
647
|
-
readonly example: "415026b6-f00f-44f8-968d-fc6ef4d0fc6d";
|
|
940
|
+
readonly description: "Unique identifier of the invoice.";
|
|
941
|
+
readonly example: "in_1234567890xCrwxghOTj1234";
|
|
648
942
|
};
|
|
649
|
-
readonly
|
|
943
|
+
readonly number: {
|
|
650
944
|
readonly type: "string";
|
|
651
|
-
readonly format: "uuid";
|
|
652
|
-
readonly description: "Unique identifier of the organization. UUID v4 string in canonical form";
|
|
653
|
-
readonly example: "415026b6-f00f-44f8-968d-fc6ef4d0fc6d";
|
|
654
945
|
};
|
|
655
946
|
readonly status: {
|
|
656
947
|
readonly type: "string";
|
|
657
948
|
readonly description: "Status of the invoice";
|
|
658
|
-
readonly example: "
|
|
659
|
-
readonly enum: readonly ["DRAFT", "COMMITTED", "VOID"];
|
|
949
|
+
readonly example: "paid";
|
|
660
950
|
};
|
|
661
|
-
readonly
|
|
951
|
+
readonly total: {
|
|
662
952
|
readonly type: "number";
|
|
663
953
|
readonly format: "float";
|
|
664
954
|
readonly description: "Total amount of the invoice";
|
|
@@ -667,520 +957,1130 @@ export declare const InvoiceSchema: {
|
|
|
667
957
|
readonly currency: {
|
|
668
958
|
readonly type: "string";
|
|
669
959
|
readonly description: "Currency of the invoice";
|
|
670
|
-
readonly example: "
|
|
671
|
-
readonly enum: readonly ["AED", "AFN", "ALL", "AMD", "ANG", "AOA", "ARS", "AUD", "AWG", "AZN", "BAM", "BBD", "BDT", "BGN", "BHD", "BIF", "BMD", "BND", "BOB", "BRL", "BSD", "BTN", "BWP", "BYR", "BZD", "CAD", "CDF", "CHF", "CLP", "CNY", "COP", "CRC", "CUC", "CUP", "CVE", "CZK", "DJF", "DKK", "DOP", "DZD", "EGP", "ERN", "ETB", "EUR", "FJD", "FKP", "GBP", "GEL", "GGP", "GHS", "GIP", "GMD", "GNF", "GTQ", "GYD", "HKD", "HNL", "HRK", "HTG", "HUF", "IDR", "ILS", "IMP", "INR", "IQD", "IRR", "ISK", "JEP", "JMD", "JOD", "JPY", "KES", "KGS", "KHR", "KMF", "KPW", "KRW", "KWD", "KYD", "KZT", "LAK", "LBP", "LKR", "LRD", "LSL", "LTL", "LVL", "LYD", "MAD", "MDL", "MGA", "MKD", "MMK", "MNT", "MOP", "MRO", "MUR", "MVR", "MWK", "MXN", "MYR", "MZN", "NAD", "NGN", "NIO", "NOK", "NPR", "NZD", "OMR", "PAB", "PEN", "PGK", "PHP", "PKR", "PLN", "PYG", "QAR", "RON", "RSD", "RUB", "RWF", "SAR", "SBD", "SCR", "SDG", "SEK", "SGD", "SHP", "SLL", "SOS", "SPL", "SRD", "STD", "SVC", "SYP", "SZL", "THB", "TJS", "TMT", "TND", "TOP", "TRY", "TTD", "TVD", "TWD", "TZS", "UAH", "UGX", "USD", "UYU", "UZS", "VEF", "VND", "VUV", "WST", "XAF", "XCD", "XDR", "XOF", "XPF", "YER", "ZAR", "ZMW", "ZWD", "BTC"];
|
|
960
|
+
readonly example: "usd";
|
|
672
961
|
};
|
|
673
|
-
readonly
|
|
674
|
-
readonly type: "
|
|
675
|
-
readonly format: "
|
|
676
|
-
readonly description: "
|
|
677
|
-
readonly example:
|
|
962
|
+
readonly created: {
|
|
963
|
+
readonly type: "string";
|
|
964
|
+
readonly format: "date-time";
|
|
965
|
+
readonly description: "Timestamp when the invoice was issued. ISO 8601 date string in the UTC timezone.";
|
|
966
|
+
readonly example: "2023-12-20T13:53:32.000Z";
|
|
678
967
|
};
|
|
679
|
-
readonly
|
|
680
|
-
readonly type: "
|
|
681
|
-
readonly format: "
|
|
682
|
-
readonly description: "
|
|
683
|
-
readonly example:
|
|
968
|
+
readonly period_start: {
|
|
969
|
+
readonly type: "string";
|
|
970
|
+
readonly format: "date-time";
|
|
971
|
+
readonly description: "Billing period start timestamp. ISO 8601 date string in the UTC timezone.";
|
|
972
|
+
readonly example: "2023-12-20T13:53:32.000Z";
|
|
684
973
|
};
|
|
685
|
-
readonly
|
|
974
|
+
readonly period_end: {
|
|
686
975
|
readonly type: "string";
|
|
687
|
-
readonly
|
|
688
|
-
readonly
|
|
976
|
+
readonly format: "date-time";
|
|
977
|
+
readonly description: "Billing period end timestamp. ISO 8601 date string in the UTC timezone.";
|
|
978
|
+
readonly example: "2023-12-20T13:53:32.000Z";
|
|
689
979
|
};
|
|
690
|
-
readonly
|
|
980
|
+
readonly invoice_pdf: {
|
|
691
981
|
readonly type: "string";
|
|
692
|
-
readonly description: "Target date of the invoice";
|
|
693
|
-
readonly example: "2019-01-01T00:00:00.000Z";
|
|
694
982
|
};
|
|
695
|
-
|
|
983
|
+
};
|
|
984
|
+
readonly required: readonly ["created", "period_start", "period_end"];
|
|
985
|
+
readonly additionalProperties: false;
|
|
986
|
+
};
|
|
987
|
+
export declare const MarketplaceListingFilesSchema: {
|
|
988
|
+
readonly type: "object";
|
|
989
|
+
readonly properties: {
|
|
990
|
+
readonly chartYaml: {
|
|
991
|
+
readonly type: "string";
|
|
992
|
+
readonly description: "Raw Chart.yaml content from the Helm chart";
|
|
993
|
+
readonly example: "apiVersion: v2\nname: nginx-ingress\nversion: 1.18.2-cfke.45\nappVersion: 1.9.4";
|
|
994
|
+
};
|
|
995
|
+
readonly valuesYaml: {
|
|
696
996
|
readonly type: "string";
|
|
697
|
-
readonly description: "
|
|
698
|
-
readonly example: "
|
|
997
|
+
readonly description: "Raw values.yaml content from the Helm chart";
|
|
998
|
+
readonly example: "replicaCount: 1\nimage:\n repository: nginx\n tag: latest";
|
|
699
999
|
};
|
|
700
|
-
readonly
|
|
701
|
-
readonly type: "
|
|
702
|
-
readonly
|
|
703
|
-
readonly
|
|
704
|
-
readonly example: 100;
|
|
1000
|
+
readonly valuesSchemaJson: {
|
|
1001
|
+
readonly type: "string";
|
|
1002
|
+
readonly description: "JSON schema for values.yaml as a string";
|
|
1003
|
+
readonly example: "{\"type\":\"object\",\"properties\":{\"replicaCount\":{\"type\":\"number\"}}}";
|
|
705
1004
|
};
|
|
706
|
-
|
|
1005
|
+
};
|
|
1006
|
+
readonly additionalProperties: false;
|
|
1007
|
+
};
|
|
1008
|
+
export declare const MarketplaceListingSchema: {
|
|
1009
|
+
readonly type: "object";
|
|
1010
|
+
readonly properties: {
|
|
1011
|
+
readonly name: {
|
|
707
1012
|
readonly type: "string";
|
|
708
|
-
readonly description: "
|
|
709
|
-
readonly example: "
|
|
1013
|
+
readonly description: "Name of the chart";
|
|
1014
|
+
readonly example: "nginx-ingress";
|
|
710
1015
|
};
|
|
711
|
-
readonly
|
|
1016
|
+
readonly versions: {
|
|
712
1017
|
readonly type: "array";
|
|
713
1018
|
readonly items: {
|
|
714
|
-
readonly type: "
|
|
715
|
-
readonly
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
};
|
|
768
|
-
readonly itemType: {
|
|
769
|
-
readonly type: "string";
|
|
770
|
-
readonly description: "Type of the invoice item";
|
|
771
|
-
readonly example: "EXTERNAL_CHARGE";
|
|
772
|
-
readonly enum: readonly ["EXTERNAL_CHARGE", "FIXED", "RECURRING", "REPAIR_ADJ", "CBA_ADJ", "CREDIT_ADJ", "ITEM_ADJ", "USAGE", "TAX", "PARENT_SUMMARY"];
|
|
773
|
-
};
|
|
774
|
-
readonly description: {
|
|
775
|
-
readonly type: "string";
|
|
776
|
-
readonly description: "Description of the invoice item";
|
|
777
|
-
readonly example: "Description of the invoice item";
|
|
778
|
-
};
|
|
779
|
-
readonly startDate: {
|
|
780
|
-
readonly type: "string";
|
|
781
|
-
readonly description: "Start date of the invoice item";
|
|
782
|
-
readonly example: "2019-01-01T00:00:00.000Z";
|
|
783
|
-
};
|
|
784
|
-
readonly endDate: {
|
|
785
|
-
readonly type: "string";
|
|
786
|
-
readonly description: "End date of the invoice item";
|
|
787
|
-
readonly example: "2019-01-01T00:00:00.000Z";
|
|
788
|
-
};
|
|
789
|
-
readonly amount: {
|
|
790
|
-
readonly type: "number";
|
|
791
|
-
readonly format: "float";
|
|
792
|
-
readonly description: "Amount of the invoice item";
|
|
793
|
-
readonly example: 100;
|
|
794
|
-
};
|
|
795
|
-
readonly rate: {
|
|
796
|
-
readonly type: "number";
|
|
797
|
-
readonly format: "float";
|
|
798
|
-
readonly description: "Rate of the invoice item";
|
|
799
|
-
readonly example: 100;
|
|
800
|
-
};
|
|
801
|
-
readonly currency: {
|
|
802
|
-
readonly type: "string";
|
|
803
|
-
readonly description: "Currency of the invoice item";
|
|
804
|
-
readonly example: "USD";
|
|
805
|
-
readonly enum: readonly ["AED", "AFN", "ALL", "AMD", "ANG", "AOA", "ARS", "AUD", "AWG", "AZN", "BAM", "BBD", "BDT", "BGN", "BHD", "BIF", "BMD", "BND", "BOB", "BRL", "BSD", "BTN", "BWP", "BYR", "BZD", "CAD", "CDF", "CHF", "CLP", "CNY", "COP", "CRC", "CUC", "CUP", "CVE", "CZK", "DJF", "DKK", "DOP", "DZD", "EGP", "ERN", "ETB", "EUR", "FJD", "FKP", "GBP", "GEL", "GGP", "GHS", "GIP", "GMD", "GNF", "GTQ", "GYD", "HKD", "HNL", "HRK", "HTG", "HUF", "IDR", "ILS", "IMP", "INR", "IQD", "IRR", "ISK", "JEP", "JMD", "JOD", "JPY", "KES", "KGS", "KHR", "KMF", "KPW", "KRW", "KWD", "KYD", "KZT", "LAK", "LBP", "LKR", "LRD", "LSL", "LTL", "LVL", "LYD", "MAD", "MDL", "MGA", "MKD", "MMK", "MNT", "MOP", "MRO", "MUR", "MVR", "MWK", "MXN", "MYR", "MZN", "NAD", "NGN", "NIO", "NOK", "NPR", "NZD", "OMR", "PAB", "PEN", "PGK", "PHP", "PKR", "PLN", "PYG", "QAR", "RON", "RSD", "RUB", "RWF", "SAR", "SBD", "SCR", "SDG", "SEK", "SGD", "SHP", "SLL", "SOS", "SPL", "SRD", "STD", "SVC", "SYP", "SZL", "THB", "TJS", "TMT", "TND", "TOP", "TRY", "TTD", "TVD", "TWD", "TZS", "UAH", "UGX", "USD", "UYU", "UZS", "VEF", "VND", "VUV", "WST", "XAF", "XCD", "XDR", "XOF", "XPF", "YER", "ZAR", "ZMW", "ZWD", "BTC"];
|
|
806
|
-
};
|
|
807
|
-
readonly quantity: {
|
|
808
|
-
readonly type: "number";
|
|
809
|
-
readonly format: "float";
|
|
810
|
-
readonly description: "Quantity of the invoice item";
|
|
811
|
-
readonly example: 1;
|
|
812
|
-
};
|
|
813
|
-
readonly itemDetails: {
|
|
1019
|
+
readonly type: "string";
|
|
1020
|
+
readonly pattern: "^(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$";
|
|
1021
|
+
readonly description: "Specific version of the chart";
|
|
1022
|
+
readonly example: "1.18.2-cfke.45";
|
|
1023
|
+
};
|
|
1024
|
+
readonly description: "Available versions of the chart";
|
|
1025
|
+
};
|
|
1026
|
+
readonly version_channels: {
|
|
1027
|
+
readonly type: "array";
|
|
1028
|
+
readonly items: {
|
|
1029
|
+
readonly type: "string";
|
|
1030
|
+
readonly pattern: "^(x|X|0|[1-9]\\d*)\\.(x|X|0|[1-9]\\d*)\\.(x|X|0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$";
|
|
1031
|
+
readonly description: "Version channel pattern";
|
|
1032
|
+
readonly example: "1.18.x-cfke.x";
|
|
1033
|
+
};
|
|
1034
|
+
readonly description: "Version channels for the chart";
|
|
1035
|
+
};
|
|
1036
|
+
readonly latestVersion: {
|
|
1037
|
+
readonly type: "string";
|
|
1038
|
+
readonly description: "Latest version of the chart";
|
|
1039
|
+
readonly example: "1.18.2-cfke.45";
|
|
1040
|
+
};
|
|
1041
|
+
readonly metadata: {
|
|
1042
|
+
readonly type: "object";
|
|
1043
|
+
readonly properties: {
|
|
1044
|
+
readonly name: {
|
|
1045
|
+
readonly type: "string";
|
|
1046
|
+
readonly description: "Chart name from metadata";
|
|
1047
|
+
readonly example: "nginx-ingress";
|
|
1048
|
+
};
|
|
1049
|
+
readonly version: {
|
|
1050
|
+
readonly type: "string";
|
|
1051
|
+
readonly description: "Chart version from metadata";
|
|
1052
|
+
readonly example: "1.18.2-cfke.45";
|
|
1053
|
+
};
|
|
1054
|
+
readonly description: {
|
|
1055
|
+
readonly type: "string";
|
|
1056
|
+
readonly description: "Chart description";
|
|
1057
|
+
readonly example: "NGINX Ingress Controller for Kubernetes";
|
|
1058
|
+
};
|
|
1059
|
+
readonly appVersion: {
|
|
1060
|
+
readonly type: "string";
|
|
1061
|
+
readonly description: "Application version";
|
|
1062
|
+
readonly example: "1.9.4";
|
|
1063
|
+
};
|
|
1064
|
+
readonly apiVersion: {
|
|
1065
|
+
readonly type: "string";
|
|
1066
|
+
readonly description: "Helm API version";
|
|
1067
|
+
readonly example: "v2";
|
|
1068
|
+
};
|
|
1069
|
+
readonly keywords: {
|
|
1070
|
+
readonly type: "array";
|
|
1071
|
+
readonly items: {
|
|
814
1072
|
readonly type: "string";
|
|
815
|
-
readonly description: "Details of the invoice item";
|
|
816
|
-
readonly example: "Details of the invoice item";
|
|
817
1073
|
};
|
|
818
|
-
readonly
|
|
1074
|
+
readonly description: "Chart keywords";
|
|
1075
|
+
readonly example: readonly ["ingress", "nginx", "load-balancer"];
|
|
1076
|
+
};
|
|
1077
|
+
readonly home: {
|
|
1078
|
+
readonly type: "string";
|
|
1079
|
+
readonly description: "Chart home URL";
|
|
1080
|
+
readonly example: "https://kubernetes.github.io/ingress-nginx/";
|
|
1081
|
+
};
|
|
1082
|
+
readonly icon: {
|
|
1083
|
+
readonly type: "string";
|
|
1084
|
+
readonly description: "A URL to an SVG or PNG image to be used as an icon";
|
|
1085
|
+
readonly example: "https://cloudfleet.ai/images/marketplace/icons/ingress-nginx.png";
|
|
1086
|
+
};
|
|
1087
|
+
readonly sources: {
|
|
1088
|
+
readonly type: "array";
|
|
1089
|
+
readonly items: {
|
|
819
1090
|
readonly type: "string";
|
|
820
|
-
readonly description: "Effective date of the catalog";
|
|
821
|
-
readonly example: "2019-01-01T00:00:00.000Z";
|
|
822
1091
|
};
|
|
823
|
-
readonly
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
}, {
|
|
833
|
-
readonly type: "object";
|
|
834
|
-
readonly additionalProperties: true;
|
|
835
|
-
}, {
|
|
1092
|
+
readonly description: "Chart source URLs";
|
|
1093
|
+
readonly example: readonly ["https://github.com/kubernetes/ingress-nginx"];
|
|
1094
|
+
};
|
|
1095
|
+
readonly maintainers: {
|
|
1096
|
+
readonly type: "array";
|
|
1097
|
+
readonly items: {
|
|
1098
|
+
readonly type: "object";
|
|
1099
|
+
readonly properties: {
|
|
1100
|
+
readonly name: {
|
|
836
1101
|
readonly type: "string";
|
|
837
|
-
|
|
1102
|
+
readonly description: "Maintainer name";
|
|
1103
|
+
readonly example: "NGINX Team";
|
|
1104
|
+
};
|
|
1105
|
+
readonly email: {
|
|
1106
|
+
readonly type: "string";
|
|
1107
|
+
readonly description: "Maintainer email";
|
|
1108
|
+
readonly example: "support@nginx.org";
|
|
1109
|
+
};
|
|
838
1110
|
};
|
|
839
|
-
readonly
|
|
1111
|
+
readonly required: readonly ["name"];
|
|
1112
|
+
readonly additionalProperties: false;
|
|
840
1113
|
};
|
|
1114
|
+
readonly description: "Chart maintainers";
|
|
841
1115
|
};
|
|
842
|
-
readonly additionalProperties: false;
|
|
843
1116
|
};
|
|
844
|
-
readonly
|
|
1117
|
+
readonly required: readonly ["name", "version"];
|
|
1118
|
+
readonly additionalProperties: false;
|
|
1119
|
+
readonly description: "Chart metadata";
|
|
845
1120
|
};
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
1121
|
+
};
|
|
1122
|
+
readonly required: readonly ["name", "versions", "version_channels", "latestVersion"];
|
|
1123
|
+
readonly additionalProperties: false;
|
|
1124
|
+
};
|
|
1125
|
+
export declare const OrganizationCreateInputSchema: {
|
|
1126
|
+
readonly type: "object";
|
|
1127
|
+
readonly properties: {
|
|
1128
|
+
readonly type: {
|
|
1129
|
+
readonly type: "string";
|
|
1130
|
+
readonly description: "Type of the organization. `business` for legal entities, `personal` for individuals.";
|
|
1131
|
+
readonly example: "business";
|
|
1132
|
+
readonly enum: readonly ["business", "personal"];
|
|
1133
|
+
};
|
|
1134
|
+
readonly email: {
|
|
1135
|
+
readonly type: "string";
|
|
1136
|
+
readonly format: "email";
|
|
1137
|
+
readonly description: "Email address used for billing as a string.";
|
|
1138
|
+
readonly example: "email@example.com";
|
|
1139
|
+
};
|
|
1140
|
+
readonly first_name: {
|
|
1141
|
+
readonly type: "string";
|
|
1142
|
+
readonly minLength: 1;
|
|
1143
|
+
readonly description: "First name of the billing contact person.";
|
|
1144
|
+
readonly example: "John";
|
|
1145
|
+
};
|
|
1146
|
+
readonly last_name: {
|
|
1147
|
+
readonly type: "string";
|
|
1148
|
+
readonly minLength: 1;
|
|
1149
|
+
readonly description: "Last name of the billing contact person.";
|
|
1150
|
+
readonly example: "Doe";
|
|
1151
|
+
};
|
|
1152
|
+
readonly company_name: {
|
|
1153
|
+
readonly type: "string";
|
|
1154
|
+
readonly maxLength: 120;
|
|
1155
|
+
readonly minLength: 2;
|
|
1156
|
+
readonly pattern: "^(?!\\s)(?!.*\\s$)(?=.*[a-zA-ZÆÐƎƏƐƔIJŊŒẞÞǷȜæðǝəɛɣijŋœĸſßþƿȝĄƁÇĐƊĘĦĮƘŁØƠŞȘŢȚŦŲƯY̨Ƴąɓçđɗęħįƙłøơşșţțŧųưy̨ƴÁÀÂÄǍĂĀÃÅǺĄÆǼǢƁĆĊĈČÇĎḌĐƊÐÉÈĖÊËĚĔĒĘẸƎƏƐĠĜǦĞĢƔáàâäǎăāãåǻąæǽǣɓćċĉčçďḍđɗðéèėêëěĕēęẹǝəɛġĝǧğģɣĤḤĦIÍÌİÎÏǏĬĪĨĮỊIJĴĶƘĹĻŁĽĿʼNŃN̈ŇÑŅŊÓÒÔÖǑŎŌÕŐỌØǾƠŒĥḥħıíìiîïǐĭīĩįịijĵķƙĸĺļłľŀʼnńn̈ňñņŋóòôöǒŏōõőọøǿơœŔŘŖŚŜŠŞȘṢẞŤŢṬŦÞÚÙÛÜǓŬŪŨŰŮŲỤƯẂẀŴẄǷÝỲŶŸȲỸƳŹŻŽẒŕřŗſśŝšşșṣßťţṭŧþúùûüǔŭūũűůųụưẃẁŵẅƿýỳŷÿȳỹƴźżžẓ0-9])[a-zA-ZÆÐƎƏƐƔIJŊŒẞÞǷȜæðǝəɛɣijŋœĸſßþƿȝĄƁÇĐƊĘĦĮƘŁØƠŞȘŢȚŦŲƯY̨Ƴąɓçđɗęħįƙłøơşșţțŧųưy̨ƴÁÀÂÄǍĂĀÃÅǺĄÆǼǢƁĆĊĈČÇĎḌĐƊÐÉÈĖÊËĚĔĒĘẸƎƏƐĠĜǦĞĢƔáàâäǎăāãåǻąæǽǣɓćċĉčçďḍđɗðéèėêëěĕēęẹǝəɛġĝǧğģɣĤḤĦIÍÌİÎÏǏĬĪĨĮỊIJĴĶƘĹĻŁĽĿʼNŃN̈ŇÑŅŊÓÒÔÖǑŎŌÕŐỌØǾƠŒĥḥħıíìiîïǐĭīĩįịijĵķƙĸĺļłľŀʼnńn̈ňñņŋóòôöǒŏōõőọøǿơœŔŘŖŚŜŠŞȘṢẞŤŢṬŦÞÚÙÛÜǓŬŪŨŰŮŲỤƯẂẀŴẄǷÝỲŶŸȲỸƳŹŻŽẒŕřŗſśŝšşșṣßťţṭŧþúùûüǔŭūũűůųụưẃẁŵẅƿýỳŷÿȳỹƴźżžẓ0-9 -.]{2,}$";
|
|
1157
|
+
readonly description: "Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.";
|
|
1158
|
+
readonly example: "ACME Corp.";
|
|
1159
|
+
};
|
|
1160
|
+
readonly password: {
|
|
1161
|
+
readonly type: "string";
|
|
1162
|
+
readonly minLength: 8;
|
|
1163
|
+
readonly description: "Password for the root account. Must be at least 8 characters long and contain at least one uppercase letter, one lowercase letter, one number and one special character.";
|
|
1164
|
+
};
|
|
1165
|
+
};
|
|
1166
|
+
readonly required: readonly ["type", "email", "first_name", "last_name", "company_name", "password"];
|
|
1167
|
+
readonly additionalProperties: false;
|
|
1168
|
+
};
|
|
1169
|
+
export declare const OrganizationCreateOutputSchema: {
|
|
1170
|
+
readonly type: "object";
|
|
1171
|
+
readonly properties: {
|
|
1172
|
+
readonly id: {
|
|
1173
|
+
readonly type: "string";
|
|
1174
|
+
readonly description: "Unique identifier of the newly created organization. Generated by the API and safe to use for client-side tracking immediately.";
|
|
1175
|
+
readonly example: "organization-id";
|
|
1176
|
+
};
|
|
1177
|
+
};
|
|
1178
|
+
readonly required: readonly ["id"];
|
|
1179
|
+
readonly additionalProperties: false;
|
|
1180
|
+
};
|
|
1181
|
+
export declare const OrganizationSchema: {
|
|
1182
|
+
readonly type: "object";
|
|
1183
|
+
readonly properties: {
|
|
1184
|
+
readonly id: {
|
|
1185
|
+
readonly type: "string";
|
|
1186
|
+
readonly format: "uuid";
|
|
1187
|
+
readonly description: "Unique identifier of the organization. UUID v4 string in canonical form";
|
|
1188
|
+
readonly example: "e94d30ec-a2dd-4dcb-832c-ac2be144ba91";
|
|
1189
|
+
};
|
|
1190
|
+
readonly name: {
|
|
1191
|
+
readonly type: "string";
|
|
1192
|
+
readonly maxLength: 120;
|
|
1193
|
+
readonly minLength: 2;
|
|
1194
|
+
readonly description: "Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.";
|
|
1195
|
+
readonly example: "ACME Corp.";
|
|
1196
|
+
};
|
|
1197
|
+
readonly type: {
|
|
1198
|
+
readonly type: "string";
|
|
1199
|
+
readonly description: "Type of the organization. `business` for legal entities, `personal` for individuals.";
|
|
1200
|
+
readonly example: "business";
|
|
1201
|
+
readonly enum: readonly ["business", "personal"];
|
|
1202
|
+
};
|
|
1203
|
+
readonly date_created: {
|
|
1204
|
+
readonly type: "string";
|
|
1205
|
+
readonly format: "date-time";
|
|
1206
|
+
readonly description: "Creation date of the organization. ISO 8601 date string in UTC timezone";
|
|
1207
|
+
readonly example: "2023-11-02T16:08:14.338Z";
|
|
1208
|
+
};
|
|
1209
|
+
readonly quota: {
|
|
1210
|
+
readonly type: "object";
|
|
1211
|
+
readonly properties: {
|
|
1212
|
+
readonly basic_clusters_max: {
|
|
1213
|
+
readonly type: "integer";
|
|
1214
|
+
readonly minimum: 0;
|
|
1215
|
+
readonly description: "Maximum number of Basic clusters that can be created.";
|
|
1216
|
+
readonly example: 999;
|
|
1217
|
+
};
|
|
1218
|
+
readonly basic_clusters_available: {
|
|
1219
|
+
readonly type: "integer";
|
|
1220
|
+
readonly description: "Available number of Basic clusters that can be created.";
|
|
1221
|
+
readonly example: 999;
|
|
1222
|
+
};
|
|
1223
|
+
readonly pro_clusters_max: {
|
|
1224
|
+
readonly type: "integer";
|
|
1225
|
+
readonly minimum: 0;
|
|
1226
|
+
readonly description: "Maximum number of Pro clusters that can be created.";
|
|
1227
|
+
readonly example: 999;
|
|
1228
|
+
};
|
|
1229
|
+
readonly pro_clusters_available: {
|
|
1230
|
+
readonly type: "integer";
|
|
1231
|
+
readonly description: "Available number of Pro clusters that can be created.";
|
|
1232
|
+
readonly example: 999;
|
|
1233
|
+
};
|
|
1234
|
+
readonly fleets_max: {
|
|
1235
|
+
readonly type: "integer";
|
|
1236
|
+
readonly minimum: 0;
|
|
1237
|
+
readonly description: "Maximum number of fleets that can be created per cluster.";
|
|
1238
|
+
readonly example: 999;
|
|
1239
|
+
};
|
|
1240
|
+
readonly cluster_tiers: {
|
|
1241
|
+
readonly type: "array";
|
|
1242
|
+
readonly items: {
|
|
894
1243
|
readonly type: "string";
|
|
895
|
-
readonly
|
|
896
|
-
readonly example: "Phase A";
|
|
1244
|
+
readonly example: "basic";
|
|
897
1245
|
};
|
|
898
|
-
readonly
|
|
1246
|
+
readonly minItems: 0;
|
|
1247
|
+
readonly description: "List of Cloudfleet cluster tiers available for the organization.";
|
|
1248
|
+
};
|
|
1249
|
+
readonly regions: {
|
|
1250
|
+
readonly type: "array";
|
|
1251
|
+
readonly items: {
|
|
899
1252
|
readonly type: "string";
|
|
900
|
-
readonly
|
|
901
|
-
readonly example: "Usage A";
|
|
1253
|
+
readonly example: "northamerica-central-1";
|
|
902
1254
|
};
|
|
903
|
-
readonly
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
1255
|
+
readonly minItems: 1;
|
|
1256
|
+
readonly description: "List of Cloudfleet control plane regions available for the organization.";
|
|
1257
|
+
};
|
|
1258
|
+
readonly versions: {
|
|
1259
|
+
readonly type: "array";
|
|
1260
|
+
readonly items: {
|
|
1261
|
+
readonly type: "object";
|
|
1262
|
+
readonly properties: {
|
|
1263
|
+
readonly id: {
|
|
1264
|
+
readonly type: "string";
|
|
1265
|
+
readonly description: "Id of the control plane version. Used in API calls.";
|
|
1266
|
+
readonly example: "1.33.x-cfke.x";
|
|
1267
|
+
};
|
|
1268
|
+
readonly label: {
|
|
1269
|
+
readonly type: "string";
|
|
1270
|
+
readonly description: "Label of the control plane version. Used in frontent UI.";
|
|
1271
|
+
readonly example: "1.33.x (Always latest 1.33 patch version)";
|
|
1272
|
+
};
|
|
1273
|
+
};
|
|
1274
|
+
readonly required: readonly ["id", "label"];
|
|
1275
|
+
readonly additionalProperties: false;
|
|
908
1276
|
};
|
|
909
|
-
readonly
|
|
1277
|
+
readonly minItems: 1;
|
|
1278
|
+
readonly description: "List of CFKE control plane versions available for the organization.";
|
|
1279
|
+
};
|
|
1280
|
+
readonly cfcr_storage_gb: {
|
|
1281
|
+
readonly type: "integer";
|
|
1282
|
+
readonly minimum: -1;
|
|
1283
|
+
readonly description: "Organization-level maximum CFCR storage volume in GB. -1 means no limit.";
|
|
1284
|
+
readonly example: 500;
|
|
1285
|
+
};
|
|
1286
|
+
};
|
|
1287
|
+
readonly required: readonly ["basic_clusters_max", "basic_clusters_available", "pro_clusters_max", "pro_clusters_available", "fleets_max", "cluster_tiers", "regions", "versions", "cfcr_storage_gb"];
|
|
1288
|
+
readonly additionalProperties: false;
|
|
1289
|
+
readonly description: "For security reasons, platform quota is controlled by Cloudfleet and can be updated only by Cloudfleet administrators. Please open a support ticket if you need to change the platform quota.";
|
|
1290
|
+
};
|
|
1291
|
+
readonly status: {
|
|
1292
|
+
readonly type: "string";
|
|
1293
|
+
readonly description: "Status of the organization. Can be `active` or `closed`, or `suspended`.";
|
|
1294
|
+
readonly enum: readonly ["active", "closed", "suspended"];
|
|
1295
|
+
};
|
|
1296
|
+
readonly verification: {
|
|
1297
|
+
readonly type: "string";
|
|
1298
|
+
readonly description: "Verification status of the organization, which determines the assigned quota. `none` when billing information is incomplete, `submitted` when billing information is complete but the organization is not yet verified, `verified` when the organization is verified.";
|
|
1299
|
+
readonly example: "verified";
|
|
1300
|
+
readonly enum: readonly ["none", "submitted", "verified"];
|
|
1301
|
+
};
|
|
1302
|
+
};
|
|
1303
|
+
readonly required: readonly ["id", "type", "date_created", "quota", "status", "verification"];
|
|
1304
|
+
readonly additionalProperties: false;
|
|
1305
|
+
};
|
|
1306
|
+
export declare const PaymentMethodSchema: {
|
|
1307
|
+
readonly type: "object";
|
|
1308
|
+
readonly properties: {
|
|
1309
|
+
readonly id: {
|
|
1310
|
+
readonly type: "string";
|
|
1311
|
+
readonly description: "Payment method identifier. Stripe payment method id for cards/SEPA; the constant `bank_transfer` for the invoice/bank-transfer method. Used to set as default or delete the payment method.";
|
|
1312
|
+
readonly example: "pm_1MtwBwLkdIwHu7ix28a3tqPa";
|
|
1313
|
+
};
|
|
1314
|
+
readonly type: {
|
|
1315
|
+
readonly type: "string";
|
|
1316
|
+
readonly description: "Payment method type. `card`, `sepa_debit` for SEPA Direct Debit (business accounts only), or `bank_transfer` for paying invoices by bank transfer.";
|
|
1317
|
+
readonly example: "card";
|
|
1318
|
+
readonly enum: readonly ["card", "sepa_debit", "bank_transfer"];
|
|
1319
|
+
};
|
|
1320
|
+
readonly last4: {
|
|
1321
|
+
readonly type: "string";
|
|
1322
|
+
readonly nullable: true;
|
|
1323
|
+
readonly description: "Last 4 digits of the payment card number, of the bank account (IBAN) for SEPA Direct Debit, or of the destination IBAN for bank transfer.";
|
|
1324
|
+
readonly example: "4242";
|
|
1325
|
+
};
|
|
1326
|
+
readonly exp_month: {
|
|
1327
|
+
readonly type: "integer";
|
|
1328
|
+
readonly minimum: 1;
|
|
1329
|
+
readonly maximum: 12;
|
|
1330
|
+
readonly nullable: true;
|
|
1331
|
+
readonly description: "Two-digit number representing the card's expiration month. Null for SEPA Direct Debit and bank transfer.";
|
|
1332
|
+
readonly example: 12;
|
|
1333
|
+
};
|
|
1334
|
+
readonly exp_year: {
|
|
1335
|
+
readonly type: "integer";
|
|
1336
|
+
readonly nullable: true;
|
|
1337
|
+
readonly description: "Four-digit number representing the card's expiration year. May be in the past for an expired card still on file. Null for SEPA Direct Debit and bank transfer.";
|
|
1338
|
+
readonly example: 2028;
|
|
1339
|
+
};
|
|
1340
|
+
readonly brand: {
|
|
1341
|
+
readonly type: "string";
|
|
1342
|
+
readonly nullable: true;
|
|
1343
|
+
readonly description: "Payment card brand as reported by Stripe, e.g. `visa`, `mastercard`, `amex`, `cartes_bancaires`, or `unknown`. Null for SEPA Direct Debit and bank transfer.";
|
|
1344
|
+
readonly example: "visa";
|
|
1345
|
+
};
|
|
1346
|
+
readonly iban: {
|
|
1347
|
+
readonly type: "string";
|
|
1348
|
+
readonly nullable: true;
|
|
1349
|
+
readonly description: "Full destination IBAN to send bank transfers to. Set only for `bank_transfer`; null otherwise. This is Cloudfleet's virtual receiving account, shown in full so the customer can pay into it.";
|
|
1350
|
+
readonly example: "DE11243015658023127510";
|
|
1351
|
+
};
|
|
1352
|
+
readonly bic: {
|
|
1353
|
+
readonly type: "string";
|
|
1354
|
+
readonly nullable: true;
|
|
1355
|
+
readonly description: "BIC/SWIFT of the destination bank for bank transfers. Set only for `bank_transfer`; null otherwise.";
|
|
1356
|
+
readonly example: "SOGEDEFFXXX";
|
|
1357
|
+
};
|
|
1358
|
+
readonly account_holder_name: {
|
|
1359
|
+
readonly type: "string";
|
|
1360
|
+
readonly nullable: true;
|
|
1361
|
+
readonly description: "Account holder name of the destination bank account for bank transfers. Set only for `bank_transfer`; null otherwise.";
|
|
1362
|
+
readonly example: "Cloudfleet GmbH";
|
|
1363
|
+
};
|
|
1364
|
+
readonly is_default: {
|
|
1365
|
+
readonly type: "boolean";
|
|
1366
|
+
readonly description: "Whether this payment method is the default used for invoices and active subscriptions. Always false for `bank_transfer` (it cannot be a Stripe default payment method).";
|
|
1367
|
+
readonly example: true;
|
|
1368
|
+
};
|
|
1369
|
+
};
|
|
1370
|
+
readonly required: readonly ["id", "type", "last4", "exp_month", "exp_year", "brand", "iban", "bic", "account_holder_name", "is_default"];
|
|
1371
|
+
readonly additionalProperties: false;
|
|
1372
|
+
};
|
|
1373
|
+
export declare const PlatformQuotaSchema: {
|
|
1374
|
+
readonly type: "object";
|
|
1375
|
+
readonly properties: {
|
|
1376
|
+
readonly basic_clusters_max: {
|
|
1377
|
+
readonly type: "integer";
|
|
1378
|
+
readonly minimum: 0;
|
|
1379
|
+
readonly description: "Maximum number of Basic clusters that can be created.";
|
|
1380
|
+
readonly example: 999;
|
|
1381
|
+
};
|
|
1382
|
+
readonly basic_clusters_available: {
|
|
1383
|
+
readonly type: "integer";
|
|
1384
|
+
readonly description: "Available number of Basic clusters that can be created.";
|
|
1385
|
+
readonly example: 999;
|
|
1386
|
+
};
|
|
1387
|
+
readonly pro_clusters_max: {
|
|
1388
|
+
readonly type: "integer";
|
|
1389
|
+
readonly minimum: 0;
|
|
1390
|
+
readonly description: "Maximum number of Pro clusters that can be created.";
|
|
1391
|
+
readonly example: 999;
|
|
1392
|
+
};
|
|
1393
|
+
readonly pro_clusters_available: {
|
|
1394
|
+
readonly type: "integer";
|
|
1395
|
+
readonly description: "Available number of Pro clusters that can be created.";
|
|
1396
|
+
readonly example: 999;
|
|
1397
|
+
};
|
|
1398
|
+
readonly fleets_max: {
|
|
1399
|
+
readonly type: "integer";
|
|
1400
|
+
readonly minimum: 0;
|
|
1401
|
+
readonly description: "Maximum number of fleets that can be created per cluster.";
|
|
1402
|
+
readonly example: 999;
|
|
1403
|
+
};
|
|
1404
|
+
readonly cluster_tiers: {
|
|
1405
|
+
readonly type: "array";
|
|
1406
|
+
readonly items: {
|
|
1407
|
+
readonly type: "string";
|
|
1408
|
+
readonly example: "basic";
|
|
1409
|
+
};
|
|
1410
|
+
readonly minItems: 0;
|
|
1411
|
+
readonly description: "List of Cloudfleet cluster tiers available for the organization.";
|
|
1412
|
+
};
|
|
1413
|
+
readonly regions: {
|
|
1414
|
+
readonly type: "array";
|
|
1415
|
+
readonly items: {
|
|
1416
|
+
readonly type: "string";
|
|
1417
|
+
readonly example: "northamerica-central-1";
|
|
1418
|
+
};
|
|
1419
|
+
readonly minItems: 1;
|
|
1420
|
+
readonly description: "List of Cloudfleet control plane regions available for the organization.";
|
|
1421
|
+
};
|
|
1422
|
+
readonly versions: {
|
|
1423
|
+
readonly type: "array";
|
|
1424
|
+
readonly items: {
|
|
1425
|
+
readonly type: "object";
|
|
1426
|
+
readonly properties: {
|
|
1427
|
+
readonly id: {
|
|
910
1428
|
readonly type: "string";
|
|
911
|
-
readonly description: "
|
|
912
|
-
readonly example: "
|
|
1429
|
+
readonly description: "Id of the control plane version. Used in API calls.";
|
|
1430
|
+
readonly example: "1.33.x-cfke.x";
|
|
913
1431
|
};
|
|
914
|
-
readonly
|
|
1432
|
+
readonly label: {
|
|
915
1433
|
readonly type: "string";
|
|
916
|
-
readonly description: "
|
|
917
|
-
readonly example: "
|
|
1434
|
+
readonly description: "Label of the control plane version. Used in frontent UI.";
|
|
1435
|
+
readonly example: "1.33.x (Always latest 1.33 patch version)";
|
|
918
1436
|
};
|
|
919
|
-
|
|
1437
|
+
};
|
|
1438
|
+
readonly required: readonly ["id", "label"];
|
|
1439
|
+
readonly additionalProperties: false;
|
|
1440
|
+
};
|
|
1441
|
+
readonly minItems: 1;
|
|
1442
|
+
readonly description: "List of CFKE control plane versions available for the organization.";
|
|
1443
|
+
};
|
|
1444
|
+
readonly cfcr_storage_gb: {
|
|
1445
|
+
readonly type: "integer";
|
|
1446
|
+
readonly minimum: -1;
|
|
1447
|
+
readonly description: "Organization-level maximum CFCR storage volume in GB. -1 means no limit.";
|
|
1448
|
+
readonly example: 500;
|
|
1449
|
+
};
|
|
1450
|
+
};
|
|
1451
|
+
readonly required: readonly ["basic_clusters_max", "basic_clusters_available", "pro_clusters_max", "pro_clusters_available", "fleets_max", "cluster_tiers", "regions", "versions", "cfcr_storage_gb"];
|
|
1452
|
+
readonly additionalProperties: false;
|
|
1453
|
+
};
|
|
1454
|
+
export declare const RegistryRepositorySchema: {
|
|
1455
|
+
readonly type: "object";
|
|
1456
|
+
readonly properties: {
|
|
1457
|
+
readonly name: {
|
|
1458
|
+
readonly type: "string";
|
|
1459
|
+
readonly description: "Repository name.";
|
|
1460
|
+
readonly example: "my-app";
|
|
1461
|
+
};
|
|
1462
|
+
readonly region: {
|
|
1463
|
+
readonly type: "string";
|
|
1464
|
+
readonly description: "Registry region.";
|
|
1465
|
+
readonly example: "northamerica";
|
|
1466
|
+
};
|
|
1467
|
+
readonly uri: {
|
|
1468
|
+
readonly type: "string";
|
|
1469
|
+
readonly description: "Full URI of the repository.";
|
|
1470
|
+
readonly example: "ssds123e-6651-4e5d-9c04-079f6532989b.northamerica.registry.cloudfleet.dev/my-app";
|
|
1471
|
+
};
|
|
1472
|
+
};
|
|
1473
|
+
readonly required: readonly ["name", "region", "uri"];
|
|
1474
|
+
readonly additionalProperties: false;
|
|
1475
|
+
};
|
|
1476
|
+
export declare const RegistryRepositoryWithTagsSchema: {
|
|
1477
|
+
readonly type: "object";
|
|
1478
|
+
readonly properties: {
|
|
1479
|
+
readonly name: {
|
|
1480
|
+
readonly type: "string";
|
|
1481
|
+
readonly description: "Repository name.";
|
|
1482
|
+
readonly example: "my-app";
|
|
1483
|
+
};
|
|
1484
|
+
readonly region: {
|
|
1485
|
+
readonly type: "string";
|
|
1486
|
+
readonly description: "Registry region.";
|
|
1487
|
+
readonly example: "northamerica";
|
|
1488
|
+
};
|
|
1489
|
+
readonly uri: {
|
|
1490
|
+
readonly type: "string";
|
|
1491
|
+
readonly description: "Full URI of the repository.";
|
|
1492
|
+
readonly example: "ssds123e-6651-4e5d-9c04-079f6532989b.northamerica.registry.cloudfleet.dev/my-app";
|
|
1493
|
+
};
|
|
1494
|
+
readonly tags: {
|
|
1495
|
+
readonly type: "array";
|
|
1496
|
+
readonly items: {
|
|
1497
|
+
readonly type: "object";
|
|
1498
|
+
readonly properties: {
|
|
1499
|
+
readonly name: {
|
|
920
1500
|
readonly type: "string";
|
|
921
|
-
readonly description: "
|
|
922
|
-
readonly example: "
|
|
1501
|
+
readonly description: "Tag name.";
|
|
1502
|
+
readonly example: "latest";
|
|
923
1503
|
};
|
|
924
|
-
readonly
|
|
1504
|
+
readonly size: {
|
|
925
1505
|
readonly type: "number";
|
|
926
1506
|
readonly format: "float";
|
|
927
|
-
readonly description: "
|
|
928
|
-
readonly example:
|
|
1507
|
+
readonly description: "Size of the tag in bytes.";
|
|
1508
|
+
readonly example: 123456789;
|
|
929
1509
|
};
|
|
930
|
-
readonly
|
|
931
|
-
readonly type: "
|
|
932
|
-
readonly
|
|
933
|
-
readonly
|
|
934
|
-
|
|
1510
|
+
readonly mediaType: {
|
|
1511
|
+
readonly type: "string";
|
|
1512
|
+
readonly description: "Media type of the manifest.";
|
|
1513
|
+
readonly example: "application/vnd.docker.distribution.manifest.v2+json";
|
|
1514
|
+
};
|
|
1515
|
+
readonly platforms: {
|
|
1516
|
+
readonly type: "array";
|
|
1517
|
+
readonly items: {
|
|
1518
|
+
readonly type: "string";
|
|
1519
|
+
};
|
|
1520
|
+
readonly description: "Array of platform strings for multi-arch images (e.g., linux/amd64, linux/arm64).";
|
|
1521
|
+
readonly example: readonly ["linux/amd64", "linux/arm64"];
|
|
935
1522
|
};
|
|
936
|
-
|
|
1523
|
+
};
|
|
1524
|
+
readonly required: readonly ["name", "size"];
|
|
1525
|
+
readonly additionalProperties: false;
|
|
1526
|
+
};
|
|
1527
|
+
readonly description: "Array of tags in the repository.";
|
|
1528
|
+
};
|
|
1529
|
+
readonly totalSize: {
|
|
1530
|
+
readonly type: "number";
|
|
1531
|
+
readonly format: "float";
|
|
1532
|
+
readonly description: "Total size of all tags in the repository in bytes.";
|
|
1533
|
+
readonly example: 987654321;
|
|
1534
|
+
};
|
|
1535
|
+
};
|
|
1536
|
+
readonly required: readonly ["name", "region", "uri", "tags", "totalSize"];
|
|
1537
|
+
readonly additionalProperties: false;
|
|
1538
|
+
};
|
|
1539
|
+
export declare const RegistryTagSchema: {
|
|
1540
|
+
readonly type: "object";
|
|
1541
|
+
readonly properties: {
|
|
1542
|
+
readonly name: {
|
|
1543
|
+
readonly type: "string";
|
|
1544
|
+
readonly description: "Tag name.";
|
|
1545
|
+
readonly example: "latest";
|
|
1546
|
+
};
|
|
1547
|
+
readonly digest: {
|
|
1548
|
+
readonly type: "string";
|
|
1549
|
+
readonly description: "Manifest digest for pulling by digest.";
|
|
1550
|
+
readonly example: "sha256:abcd1234ef567890abcd1234ef567890abcd1234ef567890abcd1234ef567890";
|
|
1551
|
+
};
|
|
1552
|
+
readonly mediaType: {
|
|
1553
|
+
readonly type: "string";
|
|
1554
|
+
readonly description: "Media type of the manifest.";
|
|
1555
|
+
readonly example: "application/vnd.docker.distribution.manifest.v2+json";
|
|
1556
|
+
};
|
|
1557
|
+
readonly config: {
|
|
1558
|
+
readonly type: "object";
|
|
1559
|
+
readonly properties: {
|
|
1560
|
+
readonly size: {
|
|
1561
|
+
readonly type: "number";
|
|
1562
|
+
readonly format: "float";
|
|
1563
|
+
readonly description: "Size of the config in bytes.";
|
|
1564
|
+
readonly example: 1234;
|
|
1565
|
+
};
|
|
1566
|
+
};
|
|
1567
|
+
readonly required: readonly ["size"];
|
|
1568
|
+
readonly additionalProperties: false;
|
|
1569
|
+
readonly description: "Manifest config metadata.";
|
|
1570
|
+
};
|
|
1571
|
+
readonly layers: {
|
|
1572
|
+
readonly type: "array";
|
|
1573
|
+
readonly items: {
|
|
1574
|
+
readonly type: "object";
|
|
1575
|
+
readonly properties: {
|
|
1576
|
+
readonly digest: {
|
|
937
1577
|
readonly type: "string";
|
|
938
|
-
readonly description: "
|
|
939
|
-
readonly example: "
|
|
940
|
-
readonly enum: readonly ["AED", "AFN", "ALL", "AMD", "ANG", "AOA", "ARS", "AUD", "AWG", "AZN", "BAM", "BBD", "BDT", "BGN", "BHD", "BIF", "BMD", "BND", "BOB", "BRL", "BSD", "BTN", "BWP", "BYR", "BZD", "CAD", "CDF", "CHF", "CLP", "CNY", "COP", "CRC", "CUC", "CUP", "CVE", "CZK", "DJF", "DKK", "DOP", "DZD", "EGP", "ERN", "ETB", "EUR", "FJD", "FKP", "GBP", "GEL", "GGP", "GHS", "GIP", "GMD", "GNF", "GTQ", "GYD", "HKD", "HNL", "HRK", "HTG", "HUF", "IDR", "ILS", "IMP", "INR", "IQD", "IRR", "ISK", "JEP", "JMD", "JOD", "JPY", "KES", "KGS", "KHR", "KMF", "KPW", "KRW", "KWD", "KYD", "KZT", "LAK", "LBP", "LKR", "LRD", "LSL", "LTL", "LVL", "LYD", "MAD", "MDL", "MGA", "MKD", "MMK", "MNT", "MOP", "MRO", "MUR", "MVR", "MWK", "MXN", "MYR", "MZN", "NAD", "NGN", "NIO", "NOK", "NPR", "NZD", "OMR", "PAB", "PEN", "PGK", "PHP", "PKR", "PLN", "PYG", "QAR", "RON", "RSD", "RUB", "RWF", "SAR", "SBD", "SCR", "SDG", "SEK", "SGD", "SHP", "SLL", "SOS", "SPL", "SRD", "STD", "SVC", "SYP", "SZL", "THB", "TJS", "TMT", "TND", "TOP", "TRY", "TTD", "TVD", "TWD", "TZS", "UAH", "UGX", "USD", "UYU", "UZS", "VEF", "VND", "VUV", "WST", "XAF", "XCD", "XDR", "XOF", "XPF", "YER", "ZAR", "ZMW", "ZWD", "BTC"];
|
|
1578
|
+
readonly description: "Digest of the layer.";
|
|
1579
|
+
readonly example: "sha256:abcd1234ef567890abcd1234ef567890abcd1234ef567890abcd1234ef567890";
|
|
941
1580
|
};
|
|
942
|
-
readonly
|
|
1581
|
+
readonly size: {
|
|
943
1582
|
readonly type: "number";
|
|
944
1583
|
readonly format: "float";
|
|
945
|
-
readonly description: "
|
|
946
|
-
readonly example:
|
|
1584
|
+
readonly description: "Size of the layer in bytes.";
|
|
1585
|
+
readonly example: 5678;
|
|
947
1586
|
};
|
|
948
|
-
|
|
1587
|
+
};
|
|
1588
|
+
readonly required: readonly ["size"];
|
|
1589
|
+
readonly additionalProperties: false;
|
|
1590
|
+
};
|
|
1591
|
+
readonly description: "Array of layer metadata.";
|
|
1592
|
+
};
|
|
1593
|
+
readonly manifests: {
|
|
1594
|
+
readonly type: "array";
|
|
1595
|
+
readonly items: {
|
|
1596
|
+
readonly type: "object";
|
|
1597
|
+
readonly properties: {
|
|
1598
|
+
readonly digest: {
|
|
949
1599
|
readonly type: "string";
|
|
950
|
-
readonly description: "
|
|
951
|
-
readonly example: "
|
|
1600
|
+
readonly description: "Digest of the manifest.";
|
|
1601
|
+
readonly example: "sha256:abcd1234ef567890abcd1234ef567890abcd1234ef567890abcd1234ef567890";
|
|
952
1602
|
};
|
|
953
|
-
readonly
|
|
954
|
-
readonly type: "
|
|
955
|
-
readonly
|
|
956
|
-
|
|
1603
|
+
readonly platform: {
|
|
1604
|
+
readonly type: "object";
|
|
1605
|
+
readonly properties: {
|
|
1606
|
+
readonly architecture: {
|
|
1607
|
+
readonly type: "string";
|
|
1608
|
+
readonly description: "Architecture of the platform.";
|
|
1609
|
+
readonly example: "amd64";
|
|
1610
|
+
};
|
|
1611
|
+
readonly os: {
|
|
1612
|
+
readonly type: "string";
|
|
1613
|
+
readonly description: "Operating system of the platform.";
|
|
1614
|
+
readonly example: "linux";
|
|
1615
|
+
};
|
|
1616
|
+
readonly variant: {
|
|
1617
|
+
readonly type: "string";
|
|
1618
|
+
readonly description: "Variant of the platform (e.g., v7, v8 for ARM).";
|
|
1619
|
+
readonly example: "v8";
|
|
1620
|
+
};
|
|
1621
|
+
};
|
|
1622
|
+
readonly required: readonly ["architecture", "os"];
|
|
1623
|
+
readonly additionalProperties: false;
|
|
1624
|
+
readonly description: "Platform information for the manifest.";
|
|
957
1625
|
};
|
|
958
|
-
readonly
|
|
1626
|
+
readonly layers: {
|
|
959
1627
|
readonly type: "array";
|
|
960
1628
|
readonly items: {
|
|
961
|
-
readonly
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
readonly
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
1629
|
+
readonly type: "object";
|
|
1630
|
+
readonly properties: {
|
|
1631
|
+
readonly digest: {
|
|
1632
|
+
readonly type: "string";
|
|
1633
|
+
readonly description: "Digest of the layer.";
|
|
1634
|
+
readonly example: "sha256:abcd1234ef567890abcd1234ef567890abcd1234ef567890abcd1234ef567890";
|
|
1635
|
+
};
|
|
1636
|
+
readonly size: {
|
|
1637
|
+
readonly type: "number";
|
|
1638
|
+
readonly format: "float";
|
|
1639
|
+
readonly description: "Size of the layer in bytes.";
|
|
1640
|
+
readonly example: 5678;
|
|
1641
|
+
};
|
|
1642
|
+
};
|
|
1643
|
+
readonly required: readonly ["size"];
|
|
1644
|
+
readonly additionalProperties: false;
|
|
973
1645
|
};
|
|
974
|
-
readonly description: "
|
|
1646
|
+
readonly description: "Layers for this platform.";
|
|
1647
|
+
};
|
|
1648
|
+
readonly size: {
|
|
1649
|
+
readonly type: "number";
|
|
1650
|
+
readonly format: "float";
|
|
1651
|
+
readonly description: "Total size of this platform manifest in bytes.";
|
|
1652
|
+
readonly example: 12345678;
|
|
975
1653
|
};
|
|
976
1654
|
};
|
|
1655
|
+
readonly required: readonly ["digest"];
|
|
977
1656
|
readonly additionalProperties: false;
|
|
978
1657
|
};
|
|
979
|
-
readonly description: "
|
|
1658
|
+
readonly description: "Array of manifests for multi-arch images.";
|
|
1659
|
+
};
|
|
1660
|
+
readonly size: {
|
|
1661
|
+
readonly type: "number";
|
|
1662
|
+
readonly format: "float";
|
|
1663
|
+
readonly description: "Total size of the tag in bytes.";
|
|
1664
|
+
readonly example: 123456789;
|
|
1665
|
+
};
|
|
1666
|
+
readonly region: {
|
|
1667
|
+
readonly type: "string";
|
|
1668
|
+
readonly description: "Registry region.";
|
|
1669
|
+
readonly example: "northamerica";
|
|
1670
|
+
};
|
|
1671
|
+
readonly repository: {
|
|
1672
|
+
readonly type: "string";
|
|
1673
|
+
readonly description: "Repository name.";
|
|
1674
|
+
readonly example: "my-app";
|
|
1675
|
+
};
|
|
1676
|
+
readonly uri: {
|
|
1677
|
+
readonly type: "string";
|
|
1678
|
+
readonly description: "Full URI of the tag.";
|
|
1679
|
+
readonly example: "ssds123e-6651-4e5d-9c04-079f6532989b.northamerica.registry.cloudfleet.dev/my-app:latest";
|
|
980
1680
|
};
|
|
981
1681
|
};
|
|
1682
|
+
readonly required: readonly ["name", "digest", "size", "region", "repository", "uri"];
|
|
982
1683
|
readonly additionalProperties: false;
|
|
983
1684
|
};
|
|
984
|
-
export declare const
|
|
1685
|
+
export declare const TicketAttachmentSchema: {
|
|
985
1686
|
readonly type: "object";
|
|
986
1687
|
readonly properties: {
|
|
987
|
-
readonly
|
|
1688
|
+
readonly id: {
|
|
988
1689
|
readonly type: "string";
|
|
989
|
-
readonly
|
|
990
|
-
readonly
|
|
991
|
-
readonly example: "email@example.com";
|
|
1690
|
+
readonly description: "Unique identifier of the attachment (Mongo ObjectId).";
|
|
1691
|
+
readonly example: "60c72b2f9f1b2c001f8e4d3c";
|
|
992
1692
|
};
|
|
993
|
-
readonly
|
|
1693
|
+
readonly filename: {
|
|
994
1694
|
readonly type: "string";
|
|
995
|
-
readonly description: "
|
|
996
|
-
readonly example: "
|
|
1695
|
+
readonly description: "Original filename as uploaded.";
|
|
1696
|
+
readonly example: "debug.log";
|
|
997
1697
|
};
|
|
998
|
-
readonly
|
|
1698
|
+
readonly content_type: {
|
|
999
1699
|
readonly type: "string";
|
|
1000
|
-
readonly description: "
|
|
1001
|
-
readonly example: "
|
|
1700
|
+
readonly description: "MIME content type of the attachment.";
|
|
1701
|
+
readonly example: "text/plain";
|
|
1002
1702
|
};
|
|
1003
|
-
readonly
|
|
1703
|
+
readonly size: {
|
|
1704
|
+
readonly type: "integer";
|
|
1705
|
+
readonly description: "Size of the attachment in bytes.";
|
|
1706
|
+
readonly example: 12345;
|
|
1707
|
+
};
|
|
1708
|
+
};
|
|
1709
|
+
readonly required: readonly ["id", "filename", "content_type", "size"];
|
|
1710
|
+
readonly additionalProperties: false;
|
|
1711
|
+
};
|
|
1712
|
+
export declare const TicketCreateInputSchema: {
|
|
1713
|
+
readonly type: "object";
|
|
1714
|
+
readonly properties: {
|
|
1715
|
+
readonly category: {
|
|
1004
1716
|
readonly type: "string";
|
|
1005
|
-
readonly
|
|
1006
|
-
readonly
|
|
1007
|
-
readonly
|
|
1008
|
-
readonly description: "Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.";
|
|
1009
|
-
readonly example: "ACME Corp.";
|
|
1717
|
+
readonly description: "Ticket category. Drives auto-assignment and may carry a subcategory in `properties`.";
|
|
1718
|
+
readonly example: "technical";
|
|
1719
|
+
readonly enum: readonly ["billing", "technical", "general"];
|
|
1010
1720
|
};
|
|
1011
|
-
readonly
|
|
1721
|
+
readonly body: {
|
|
1012
1722
|
readonly type: "string";
|
|
1013
|
-
readonly
|
|
1014
|
-
readonly
|
|
1723
|
+
readonly maxLength: 50000;
|
|
1724
|
+
readonly minLength: 1;
|
|
1725
|
+
readonly pattern: "\\S";
|
|
1726
|
+
readonly description: "Initial message body in markdown. There is no separate subject — the first message body is the description.";
|
|
1727
|
+
readonly example: "My cluster cannot reach the registry. Logs attached.";
|
|
1728
|
+
};
|
|
1729
|
+
readonly properties: {
|
|
1730
|
+
readonly type: "object";
|
|
1731
|
+
readonly additionalProperties: true;
|
|
1732
|
+
readonly description: "Free-form key/value bag set by the UI (e.g. `subcategory`, `cluster_id`, `cluster_name`, `region`).";
|
|
1733
|
+
readonly example: {
|
|
1734
|
+
readonly subcategory: "cluster-question";
|
|
1735
|
+
readonly cluster_id: "60c72b2f9f1b2c001f8e4d3a";
|
|
1736
|
+
};
|
|
1015
1737
|
};
|
|
1016
1738
|
};
|
|
1017
|
-
readonly required: readonly ["
|
|
1739
|
+
readonly required: readonly ["category", "body"];
|
|
1018
1740
|
readonly additionalProperties: false;
|
|
1019
1741
|
};
|
|
1020
|
-
export declare const
|
|
1742
|
+
export declare const TicketListResponseSchema: {
|
|
1743
|
+
readonly type: "object";
|
|
1744
|
+
readonly properties: {
|
|
1745
|
+
readonly items: {
|
|
1746
|
+
readonly type: "array";
|
|
1747
|
+
readonly items: {
|
|
1748
|
+
readonly type: "object";
|
|
1749
|
+
readonly properties: {
|
|
1750
|
+
readonly id: {
|
|
1751
|
+
readonly type: "string";
|
|
1752
|
+
readonly description: "Unique identifier of the ticket (Mongo ObjectId).";
|
|
1753
|
+
readonly example: "60c72b2f9f1b2c001f8e4d3a";
|
|
1754
|
+
};
|
|
1755
|
+
readonly status: {
|
|
1756
|
+
readonly type: "string";
|
|
1757
|
+
readonly description: "Current state of the ticket.";
|
|
1758
|
+
readonly example: "waiting_on_us";
|
|
1759
|
+
readonly enum: readonly ["waiting_on_us", "waiting_on_user", "closed"];
|
|
1760
|
+
};
|
|
1761
|
+
readonly category: {
|
|
1762
|
+
readonly type: "string";
|
|
1763
|
+
readonly description: "Ticket category.";
|
|
1764
|
+
readonly example: "technical";
|
|
1765
|
+
readonly enum: readonly ["billing", "technical", "general"];
|
|
1766
|
+
};
|
|
1767
|
+
readonly summary: {
|
|
1768
|
+
readonly type: "string";
|
|
1769
|
+
readonly description: "First 128 characters of the initial message body, with markdown formatting and newlines stripped. Used for ticket list previews.";
|
|
1770
|
+
readonly example: "My cluster cannot reach the registry. Logs attached.";
|
|
1771
|
+
};
|
|
1772
|
+
readonly closed_at: {
|
|
1773
|
+
readonly type: "string";
|
|
1774
|
+
readonly format: "date-time";
|
|
1775
|
+
readonly nullable: true;
|
|
1776
|
+
readonly description: "Closure timestamp. Null while the ticket is open.";
|
|
1777
|
+
readonly example: "2026-05-18T16:08:14.338Z";
|
|
1778
|
+
};
|
|
1779
|
+
readonly date_created: {
|
|
1780
|
+
readonly type: "string";
|
|
1781
|
+
readonly format: "date-time";
|
|
1782
|
+
readonly description: "Creation date of the ticket. ISO 8601 UTC.";
|
|
1783
|
+
readonly example: "2026-05-11T16:08:14.338Z";
|
|
1784
|
+
};
|
|
1785
|
+
readonly date_updated: {
|
|
1786
|
+
readonly type: "string";
|
|
1787
|
+
readonly format: "date-time";
|
|
1788
|
+
readonly description: "Last update date of the ticket. ISO 8601 UTC.";
|
|
1789
|
+
readonly example: "2026-05-11T16:08:14.338Z";
|
|
1790
|
+
};
|
|
1791
|
+
readonly messages: {
|
|
1792
|
+
readonly type: "array";
|
|
1793
|
+
readonly items: {
|
|
1794
|
+
readonly type: "object";
|
|
1795
|
+
readonly properties: {
|
|
1796
|
+
readonly id: {
|
|
1797
|
+
readonly type: "string";
|
|
1798
|
+
readonly description: "Unique identifier of the message (Mongo ObjectId).";
|
|
1799
|
+
readonly example: "60c72b2f9f1b2c001f8e4d3b";
|
|
1800
|
+
};
|
|
1801
|
+
readonly type: {
|
|
1802
|
+
readonly type: "string";
|
|
1803
|
+
readonly description: "Message type. Internal notes are filtered out of customer-facing responses.";
|
|
1804
|
+
readonly example: "customer_reply";
|
|
1805
|
+
readonly enum: readonly ["customer_reply", "agent_reply"];
|
|
1806
|
+
};
|
|
1807
|
+
readonly body: {
|
|
1808
|
+
readonly type: "string";
|
|
1809
|
+
readonly description: "Message body in markdown.";
|
|
1810
|
+
readonly example: "Thanks — that resolved it on my side.";
|
|
1811
|
+
};
|
|
1812
|
+
readonly author_first_name: {
|
|
1813
|
+
readonly type: "string";
|
|
1814
|
+
readonly nullable: true;
|
|
1815
|
+
readonly description: "First name of the author. Null when not provided.";
|
|
1816
|
+
readonly example: "Jane";
|
|
1817
|
+
};
|
|
1818
|
+
readonly author_last_name: {
|
|
1819
|
+
readonly type: "string";
|
|
1820
|
+
readonly nullable: true;
|
|
1821
|
+
readonly description: "Last name of the author. Null when not provided.";
|
|
1822
|
+
readonly example: "Doe";
|
|
1823
|
+
};
|
|
1824
|
+
readonly attachments: {
|
|
1825
|
+
readonly type: "array";
|
|
1826
|
+
readonly items: {
|
|
1827
|
+
readonly type: "object";
|
|
1828
|
+
readonly properties: {
|
|
1829
|
+
readonly id: {
|
|
1830
|
+
readonly type: "string";
|
|
1831
|
+
readonly description: "Unique identifier of the attachment (Mongo ObjectId).";
|
|
1832
|
+
readonly example: "60c72b2f9f1b2c001f8e4d3c";
|
|
1833
|
+
};
|
|
1834
|
+
readonly filename: {
|
|
1835
|
+
readonly type: "string";
|
|
1836
|
+
readonly description: "Original filename as uploaded.";
|
|
1837
|
+
readonly example: "debug.log";
|
|
1838
|
+
};
|
|
1839
|
+
readonly content_type: {
|
|
1840
|
+
readonly type: "string";
|
|
1841
|
+
readonly description: "MIME content type of the attachment.";
|
|
1842
|
+
readonly example: "text/plain";
|
|
1843
|
+
};
|
|
1844
|
+
readonly size: {
|
|
1845
|
+
readonly type: "integer";
|
|
1846
|
+
readonly description: "Size of the attachment in bytes.";
|
|
1847
|
+
readonly example: 12345;
|
|
1848
|
+
};
|
|
1849
|
+
};
|
|
1850
|
+
readonly required: readonly ["id", "filename", "content_type", "size"];
|
|
1851
|
+
readonly additionalProperties: false;
|
|
1852
|
+
};
|
|
1853
|
+
readonly description: "Attachments associated with this message.";
|
|
1854
|
+
readonly example: readonly [];
|
|
1855
|
+
};
|
|
1856
|
+
readonly date_created: {
|
|
1857
|
+
readonly type: "string";
|
|
1858
|
+
readonly format: "date-time";
|
|
1859
|
+
readonly description: "Creation date of the message. ISO 8601 UTC.";
|
|
1860
|
+
readonly example: "2026-05-11T16:08:14.338Z";
|
|
1861
|
+
};
|
|
1862
|
+
};
|
|
1863
|
+
readonly required: readonly ["id", "type", "body", "date_created"];
|
|
1864
|
+
readonly additionalProperties: false;
|
|
1865
|
+
};
|
|
1866
|
+
readonly description: "Messages on the ticket in chronological order. Internal notes are excluded. Returned by the detail endpoint only.";
|
|
1867
|
+
};
|
|
1868
|
+
};
|
|
1869
|
+
readonly required: readonly ["id", "status", "category", "summary", "date_created", "date_updated"];
|
|
1870
|
+
readonly additionalProperties: false;
|
|
1871
|
+
};
|
|
1872
|
+
readonly description: "Tickets for the organization, ordered newest first. Messages are omitted from list responses.";
|
|
1873
|
+
};
|
|
1874
|
+
};
|
|
1875
|
+
readonly required: readonly ["items"];
|
|
1876
|
+
readonly additionalProperties: false;
|
|
1877
|
+
};
|
|
1878
|
+
export declare const TicketMessageInputSchema: {
|
|
1879
|
+
readonly type: "object";
|
|
1880
|
+
readonly properties: {
|
|
1881
|
+
readonly body: {
|
|
1882
|
+
readonly type: "string";
|
|
1883
|
+
readonly maxLength: 50000;
|
|
1884
|
+
readonly minLength: 1;
|
|
1885
|
+
readonly pattern: "\\S";
|
|
1886
|
+
readonly description: "Reply body in markdown.";
|
|
1887
|
+
readonly example: "Thanks — that resolved it on my side.";
|
|
1888
|
+
};
|
|
1889
|
+
};
|
|
1890
|
+
readonly required: readonly ["body"];
|
|
1891
|
+
readonly additionalProperties: false;
|
|
1892
|
+
};
|
|
1893
|
+
export declare const TicketMessageSchema: {
|
|
1021
1894
|
readonly type: "object";
|
|
1022
1895
|
readonly properties: {
|
|
1023
1896
|
readonly id: {
|
|
1024
1897
|
readonly type: "string";
|
|
1025
|
-
readonly
|
|
1026
|
-
readonly
|
|
1027
|
-
readonly example: "e94d30ec-a2dd-4dcb-832c-ac2be144ba91";
|
|
1898
|
+
readonly description: "Unique identifier of the message (Mongo ObjectId).";
|
|
1899
|
+
readonly example: "60c72b2f9f1b2c001f8e4d3b";
|
|
1028
1900
|
};
|
|
1029
|
-
readonly
|
|
1901
|
+
readonly type: {
|
|
1030
1902
|
readonly type: "string";
|
|
1031
|
-
readonly
|
|
1032
|
-
readonly
|
|
1033
|
-
readonly
|
|
1034
|
-
|
|
1903
|
+
readonly description: "Message type. Internal notes are filtered out of customer-facing responses.";
|
|
1904
|
+
readonly example: "customer_reply";
|
|
1905
|
+
readonly enum: readonly ["customer_reply", "agent_reply"];
|
|
1906
|
+
};
|
|
1907
|
+
readonly body: {
|
|
1908
|
+
readonly type: "string";
|
|
1909
|
+
readonly description: "Message body in markdown.";
|
|
1910
|
+
readonly example: "Thanks — that resolved it on my side.";
|
|
1035
1911
|
};
|
|
1036
|
-
readonly
|
|
1912
|
+
readonly author_first_name: {
|
|
1037
1913
|
readonly type: "string";
|
|
1038
|
-
readonly
|
|
1039
|
-
readonly
|
|
1040
|
-
readonly example: "2023-11-02T16:08:14.338Z";
|
|
1914
|
+
readonly description: "First name of the author. Null when not provided.";
|
|
1915
|
+
readonly example: "Jane";
|
|
1041
1916
|
};
|
|
1042
|
-
readonly
|
|
1043
|
-
readonly type: "
|
|
1044
|
-
readonly
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
readonly
|
|
1052
|
-
readonly
|
|
1053
|
-
readonly description: "Available number of Basic clusters that can be created.";
|
|
1054
|
-
readonly example: 999;
|
|
1055
|
-
};
|
|
1056
|
-
readonly pro_clusters_max: {
|
|
1057
|
-
readonly type: "integer";
|
|
1058
|
-
readonly minimum: 0;
|
|
1059
|
-
readonly description: "Maximum number of Pro clusters that can be created.";
|
|
1060
|
-
readonly example: 999;
|
|
1061
|
-
};
|
|
1062
|
-
readonly pro_clusters_available: {
|
|
1063
|
-
readonly type: "integer";
|
|
1064
|
-
readonly description: "Available number of Pro clusters that can be created.";
|
|
1065
|
-
readonly example: 999;
|
|
1066
|
-
};
|
|
1067
|
-
readonly fleets_max: {
|
|
1068
|
-
readonly type: "integer";
|
|
1069
|
-
readonly minimum: 0;
|
|
1070
|
-
readonly description: "Maximum number of fleets that can be created per cluster.";
|
|
1071
|
-
readonly example: 999;
|
|
1072
|
-
};
|
|
1073
|
-
readonly managed_fleets_cpu_max: {
|
|
1074
|
-
readonly type: "integer";
|
|
1075
|
-
readonly minimum: 0;
|
|
1076
|
-
readonly description: "Maximum number of CPU cores per managed fleet.";
|
|
1077
|
-
readonly example: 999;
|
|
1078
|
-
};
|
|
1079
|
-
readonly cluster_tiers: {
|
|
1080
|
-
readonly type: "array";
|
|
1081
|
-
readonly items: {
|
|
1917
|
+
readonly author_last_name: {
|
|
1918
|
+
readonly type: "string";
|
|
1919
|
+
readonly description: "Last name of the author. Null when not provided.";
|
|
1920
|
+
readonly example: "Doe";
|
|
1921
|
+
};
|
|
1922
|
+
readonly attachments: {
|
|
1923
|
+
readonly type: "array";
|
|
1924
|
+
readonly items: {
|
|
1925
|
+
readonly type: "object";
|
|
1926
|
+
readonly properties: {
|
|
1927
|
+
readonly id: {
|
|
1082
1928
|
readonly type: "string";
|
|
1083
|
-
readonly
|
|
1929
|
+
readonly description: "Unique identifier of the attachment (Mongo ObjectId).";
|
|
1930
|
+
readonly example: "60c72b2f9f1b2c001f8e4d3c";
|
|
1084
1931
|
};
|
|
1085
|
-
readonly
|
|
1086
|
-
readonly description: "List of Cloudfleet cluster tiers available for the organization.";
|
|
1087
|
-
};
|
|
1088
|
-
readonly regions: {
|
|
1089
|
-
readonly type: "array";
|
|
1090
|
-
readonly items: {
|
|
1932
|
+
readonly filename: {
|
|
1091
1933
|
readonly type: "string";
|
|
1092
|
-
readonly
|
|
1934
|
+
readonly description: "Original filename as uploaded.";
|
|
1935
|
+
readonly example: "debug.log";
|
|
1093
1936
|
};
|
|
1094
|
-
readonly
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
readonly
|
|
1100
|
-
readonly type: "
|
|
1101
|
-
readonly
|
|
1102
|
-
|
|
1103
|
-
readonly type: "string";
|
|
1104
|
-
readonly description: "Id of the control plane version. Used in API calls.";
|
|
1105
|
-
readonly example: "1.29.x-cfke.x";
|
|
1106
|
-
};
|
|
1107
|
-
readonly label: {
|
|
1108
|
-
readonly type: "string";
|
|
1109
|
-
readonly description: "Label of the control plane version. Used in frontent UI.";
|
|
1110
|
-
readonly example: "1.29.x (Always latest 1.29 patch version)";
|
|
1111
|
-
};
|
|
1112
|
-
};
|
|
1113
|
-
readonly required: readonly ["id", "label"];
|
|
1114
|
-
readonly additionalProperties: false;
|
|
1937
|
+
readonly content_type: {
|
|
1938
|
+
readonly type: "string";
|
|
1939
|
+
readonly description: "MIME content type of the attachment.";
|
|
1940
|
+
readonly example: "text/plain";
|
|
1941
|
+
};
|
|
1942
|
+
readonly size: {
|
|
1943
|
+
readonly type: "integer";
|
|
1944
|
+
readonly description: "Size of the attachment in bytes.";
|
|
1945
|
+
readonly example: 12345;
|
|
1115
1946
|
};
|
|
1116
|
-
readonly minItems: 1;
|
|
1117
|
-
readonly description: "List of CFKE control plane versions available for the organization.";
|
|
1118
1947
|
};
|
|
1948
|
+
readonly required: readonly ["id", "filename", "content_type", "size"];
|
|
1949
|
+
readonly additionalProperties: false;
|
|
1119
1950
|
};
|
|
1120
|
-
readonly
|
|
1121
|
-
readonly
|
|
1122
|
-
readonly description: "For security reasons, platform quota is controlled by Cloudfleet and can be updated only by Cloudfleet administrators. Please open a support ticket if you need to change the platform quota.";
|
|
1951
|
+
readonly description: "Attachments associated with this message.";
|
|
1952
|
+
readonly example: readonly [];
|
|
1123
1953
|
};
|
|
1124
|
-
readonly
|
|
1954
|
+
readonly date_created: {
|
|
1125
1955
|
readonly type: "string";
|
|
1126
|
-
readonly
|
|
1127
|
-
readonly
|
|
1956
|
+
readonly format: "date-time";
|
|
1957
|
+
readonly description: "Creation date of the message. ISO 8601 UTC.";
|
|
1958
|
+
readonly example: "2026-05-11T16:08:14.338Z";
|
|
1128
1959
|
};
|
|
1129
1960
|
};
|
|
1130
|
-
readonly required: readonly ["id", "
|
|
1961
|
+
readonly required: readonly ["id", "type", "body", "date_created"];
|
|
1131
1962
|
readonly additionalProperties: false;
|
|
1132
1963
|
};
|
|
1133
|
-
export declare const
|
|
1964
|
+
export declare const TicketSchema: {
|
|
1134
1965
|
readonly type: "object";
|
|
1135
1966
|
readonly properties: {
|
|
1136
1967
|
readonly id: {
|
|
1137
1968
|
readonly type: "string";
|
|
1138
|
-
readonly
|
|
1139
|
-
readonly
|
|
1140
|
-
readonly example: "e94d30ec-a2dd-4dcb-832c-ac2be144ba91";
|
|
1969
|
+
readonly description: "Unique identifier of the ticket (Mongo ObjectId).";
|
|
1970
|
+
readonly example: "60c72b2f9f1b2c001f8e4d3a";
|
|
1141
1971
|
};
|
|
1142
|
-
readonly
|
|
1143
|
-
readonly type: "
|
|
1144
|
-
readonly description: "
|
|
1145
|
-
readonly example:
|
|
1972
|
+
readonly status: {
|
|
1973
|
+
readonly type: "string";
|
|
1974
|
+
readonly description: "Current state of the ticket.";
|
|
1975
|
+
readonly example: "waiting_on_us";
|
|
1976
|
+
readonly enum: readonly ["waiting_on_us", "waiting_on_user", "closed"];
|
|
1146
1977
|
};
|
|
1147
|
-
readonly
|
|
1978
|
+
readonly category: {
|
|
1148
1979
|
readonly type: "string";
|
|
1149
|
-
readonly
|
|
1150
|
-
readonly
|
|
1151
|
-
readonly
|
|
1152
|
-
readonly enum: readonly ["card"];
|
|
1980
|
+
readonly description: "Ticket category.";
|
|
1981
|
+
readonly example: "technical";
|
|
1982
|
+
readonly enum: readonly ["billing", "technical", "general"];
|
|
1153
1983
|
};
|
|
1154
|
-
readonly
|
|
1984
|
+
readonly summary: {
|
|
1155
1985
|
readonly type: "string";
|
|
1156
|
-
readonly
|
|
1157
|
-
readonly
|
|
1158
|
-
readonly example: "4242";
|
|
1986
|
+
readonly description: "First 128 characters of the initial message body, with markdown formatting and newlines stripped. Used for ticket list previews.";
|
|
1987
|
+
readonly example: "My cluster cannot reach the registry. Logs attached.";
|
|
1159
1988
|
};
|
|
1160
|
-
readonly
|
|
1161
|
-
readonly type: "
|
|
1162
|
-
readonly
|
|
1163
|
-
readonly
|
|
1164
|
-
readonly
|
|
1165
|
-
readonly description: "Two-digit number representing the card's expiration month.";
|
|
1166
|
-
readonly example: "12";
|
|
1989
|
+
readonly closed_at: {
|
|
1990
|
+
readonly type: "string";
|
|
1991
|
+
readonly format: "date-time";
|
|
1992
|
+
readonly description: "Closure timestamp. Null while the ticket is open.";
|
|
1993
|
+
readonly example: "2026-05-18T16:08:14.338Z";
|
|
1167
1994
|
};
|
|
1168
|
-
readonly
|
|
1169
|
-
readonly type: "
|
|
1170
|
-
readonly
|
|
1171
|
-
readonly
|
|
1172
|
-
readonly
|
|
1173
|
-
readonly example: "2028";
|
|
1995
|
+
readonly date_created: {
|
|
1996
|
+
readonly type: "string";
|
|
1997
|
+
readonly format: "date-time";
|
|
1998
|
+
readonly description: "Creation date of the ticket. ISO 8601 UTC.";
|
|
1999
|
+
readonly example: "2026-05-11T16:08:14.338Z";
|
|
1174
2000
|
};
|
|
1175
|
-
readonly
|
|
2001
|
+
readonly date_updated: {
|
|
1176
2002
|
readonly type: "string";
|
|
1177
|
-
readonly
|
|
1178
|
-
readonly description: "
|
|
1179
|
-
readonly example: "
|
|
1180
|
-
|
|
2003
|
+
readonly format: "date-time";
|
|
2004
|
+
readonly description: "Last update date of the ticket. ISO 8601 UTC.";
|
|
2005
|
+
readonly example: "2026-05-11T16:08:14.338Z";
|
|
2006
|
+
};
|
|
2007
|
+
readonly messages: {
|
|
2008
|
+
readonly type: "array";
|
|
2009
|
+
readonly items: {
|
|
2010
|
+
readonly type: "object";
|
|
2011
|
+
readonly properties: {
|
|
2012
|
+
readonly id: {
|
|
2013
|
+
readonly type: "string";
|
|
2014
|
+
readonly description: "Unique identifier of the message (Mongo ObjectId).";
|
|
2015
|
+
readonly example: "60c72b2f9f1b2c001f8e4d3b";
|
|
2016
|
+
};
|
|
2017
|
+
readonly type: {
|
|
2018
|
+
readonly type: "string";
|
|
2019
|
+
readonly description: "Message type. Internal notes are filtered out of customer-facing responses.";
|
|
2020
|
+
readonly example: "customer_reply";
|
|
2021
|
+
readonly enum: readonly ["customer_reply", "agent_reply"];
|
|
2022
|
+
};
|
|
2023
|
+
readonly body: {
|
|
2024
|
+
readonly type: "string";
|
|
2025
|
+
readonly description: "Message body in markdown.";
|
|
2026
|
+
readonly example: "Thanks — that resolved it on my side.";
|
|
2027
|
+
};
|
|
2028
|
+
readonly author_first_name: {
|
|
2029
|
+
readonly type: "string";
|
|
2030
|
+
readonly description: "First name of the author. Null when not provided.";
|
|
2031
|
+
readonly example: "Jane";
|
|
2032
|
+
};
|
|
2033
|
+
readonly author_last_name: {
|
|
2034
|
+
readonly type: "string";
|
|
2035
|
+
readonly description: "Last name of the author. Null when not provided.";
|
|
2036
|
+
readonly example: "Doe";
|
|
2037
|
+
};
|
|
2038
|
+
readonly attachments: {
|
|
2039
|
+
readonly type: "array";
|
|
2040
|
+
readonly items: {
|
|
2041
|
+
readonly type: "object";
|
|
2042
|
+
readonly properties: {
|
|
2043
|
+
readonly id: {
|
|
2044
|
+
readonly type: "string";
|
|
2045
|
+
readonly description: "Unique identifier of the attachment (Mongo ObjectId).";
|
|
2046
|
+
readonly example: "60c72b2f9f1b2c001f8e4d3c";
|
|
2047
|
+
};
|
|
2048
|
+
readonly filename: {
|
|
2049
|
+
readonly type: "string";
|
|
2050
|
+
readonly description: "Original filename as uploaded.";
|
|
2051
|
+
readonly example: "debug.log";
|
|
2052
|
+
};
|
|
2053
|
+
readonly content_type: {
|
|
2054
|
+
readonly type: "string";
|
|
2055
|
+
readonly description: "MIME content type of the attachment.";
|
|
2056
|
+
readonly example: "text/plain";
|
|
2057
|
+
};
|
|
2058
|
+
readonly size: {
|
|
2059
|
+
readonly type: "integer";
|
|
2060
|
+
readonly description: "Size of the attachment in bytes.";
|
|
2061
|
+
readonly example: 12345;
|
|
2062
|
+
};
|
|
2063
|
+
};
|
|
2064
|
+
readonly required: readonly ["id", "filename", "content_type", "size"];
|
|
2065
|
+
readonly additionalProperties: false;
|
|
2066
|
+
};
|
|
2067
|
+
readonly description: "Attachments associated with this message.";
|
|
2068
|
+
readonly example: readonly [];
|
|
2069
|
+
};
|
|
2070
|
+
readonly date_created: {
|
|
2071
|
+
readonly type: "string";
|
|
2072
|
+
readonly format: "date-time";
|
|
2073
|
+
readonly description: "Creation date of the message. ISO 8601 UTC.";
|
|
2074
|
+
readonly example: "2026-05-11T16:08:14.338Z";
|
|
2075
|
+
};
|
|
2076
|
+
};
|
|
2077
|
+
readonly required: readonly ["id", "type", "body", "date_created"];
|
|
2078
|
+
readonly additionalProperties: false;
|
|
2079
|
+
};
|
|
2080
|
+
readonly description: "Messages on the ticket in chronological order. Internal notes are excluded. Returned by the detail endpoint only.";
|
|
1181
2081
|
};
|
|
1182
2082
|
};
|
|
1183
|
-
readonly required: readonly ["id", "
|
|
2083
|
+
readonly required: readonly ["id", "status", "category", "summary", "date_created", "date_updated"];
|
|
1184
2084
|
readonly additionalProperties: false;
|
|
1185
2085
|
};
|
|
1186
2086
|
export declare const TokenCreateInputSchema: {
|
|
@@ -1261,6 +2161,101 @@ export declare const TokenUpdateInputSchema: {
|
|
|
1261
2161
|
};
|
|
1262
2162
|
readonly additionalProperties: false;
|
|
1263
2163
|
};
|
|
2164
|
+
export declare const UsageFacetsSchema: {
|
|
2165
|
+
readonly type: "object";
|
|
2166
|
+
readonly properties: {
|
|
2167
|
+
readonly cluster_id: {
|
|
2168
|
+
readonly type: "array";
|
|
2169
|
+
readonly items: {
|
|
2170
|
+
readonly type: "string";
|
|
2171
|
+
};
|
|
2172
|
+
readonly description: "List of unique cluster IDs";
|
|
2173
|
+
readonly example: readonly ["6b5439b1-923a-4f2b-a371-d554e5ea23fa"];
|
|
2174
|
+
};
|
|
2175
|
+
readonly product: {
|
|
2176
|
+
readonly type: "array";
|
|
2177
|
+
readonly items: {
|
|
2178
|
+
readonly type: "string";
|
|
2179
|
+
};
|
|
2180
|
+
readonly description: "List of unique products";
|
|
2181
|
+
readonly example: readonly ["cfke_controlplane", "cfke_connected_nodes"];
|
|
2182
|
+
};
|
|
2183
|
+
};
|
|
2184
|
+
readonly additionalProperties: false;
|
|
2185
|
+
};
|
|
2186
|
+
export declare const UsageResponseSchema: {
|
|
2187
|
+
readonly type: "object";
|
|
2188
|
+
readonly properties: {
|
|
2189
|
+
readonly data: {
|
|
2190
|
+
readonly type: "array";
|
|
2191
|
+
readonly items: {
|
|
2192
|
+
readonly type: "object";
|
|
2193
|
+
readonly properties: {
|
|
2194
|
+
readonly hour: {
|
|
2195
|
+
readonly type: "string";
|
|
2196
|
+
readonly description: "Hour of the usage";
|
|
2197
|
+
readonly example: "2019-01-01T00:00:00.000Z";
|
|
2198
|
+
};
|
|
2199
|
+
readonly cluster_id: {
|
|
2200
|
+
readonly type: "string";
|
|
2201
|
+
readonly description: "Unique identifier of the kubernetes cluster. UUID v4 string in canonical form";
|
|
2202
|
+
readonly example: "6b5439b1-923a-4f2b-a371-d554e5ea23fa";
|
|
2203
|
+
};
|
|
2204
|
+
readonly product: {
|
|
2205
|
+
readonly type: "string";
|
|
2206
|
+
readonly description: "The product the usage is associated with";
|
|
2207
|
+
readonly example: "cfke_controlplane";
|
|
2208
|
+
};
|
|
2209
|
+
readonly value: {
|
|
2210
|
+
readonly type: "number";
|
|
2211
|
+
readonly format: "float";
|
|
2212
|
+
readonly description: "Consumption";
|
|
2213
|
+
readonly example: 4;
|
|
2214
|
+
};
|
|
2215
|
+
readonly price: {
|
|
2216
|
+
readonly type: "number";
|
|
2217
|
+
readonly format: "float";
|
|
2218
|
+
readonly description: "Price per unit";
|
|
2219
|
+
readonly example: 0.01;
|
|
2220
|
+
};
|
|
2221
|
+
readonly total: {
|
|
2222
|
+
readonly type: "number";
|
|
2223
|
+
readonly format: "float";
|
|
2224
|
+
readonly description: "Total cost";
|
|
2225
|
+
};
|
|
2226
|
+
};
|
|
2227
|
+
readonly required: readonly ["hour", "cluster_id", "product", "value", "price", "total"];
|
|
2228
|
+
readonly additionalProperties: false;
|
|
2229
|
+
};
|
|
2230
|
+
readonly description: "Usage data";
|
|
2231
|
+
};
|
|
2232
|
+
readonly facets: {
|
|
2233
|
+
readonly type: "object";
|
|
2234
|
+
readonly properties: {
|
|
2235
|
+
readonly cluster_id: {
|
|
2236
|
+
readonly type: "array";
|
|
2237
|
+
readonly items: {
|
|
2238
|
+
readonly type: "string";
|
|
2239
|
+
};
|
|
2240
|
+
readonly description: "List of unique cluster IDs";
|
|
2241
|
+
readonly example: readonly ["6b5439b1-923a-4f2b-a371-d554e5ea23fa"];
|
|
2242
|
+
};
|
|
2243
|
+
readonly product: {
|
|
2244
|
+
readonly type: "array";
|
|
2245
|
+
readonly items: {
|
|
2246
|
+
readonly type: "string";
|
|
2247
|
+
};
|
|
2248
|
+
readonly description: "List of unique products";
|
|
2249
|
+
readonly example: readonly ["cfke_controlplane", "cfke_connected_nodes"];
|
|
2250
|
+
};
|
|
2251
|
+
};
|
|
2252
|
+
readonly additionalProperties: false;
|
|
2253
|
+
readonly description: "Facets for filtering";
|
|
2254
|
+
};
|
|
2255
|
+
};
|
|
2256
|
+
readonly required: readonly ["data", "facets"];
|
|
2257
|
+
readonly additionalProperties: false;
|
|
2258
|
+
};
|
|
1264
2259
|
export declare const UsageSchema: {
|
|
1265
2260
|
readonly type: "object";
|
|
1266
2261
|
readonly properties: {
|
|
@@ -1271,78 +2266,33 @@ export declare const UsageSchema: {
|
|
|
1271
2266
|
};
|
|
1272
2267
|
readonly cluster_id: {
|
|
1273
2268
|
readonly type: "string";
|
|
1274
|
-
readonly format: "uuid";
|
|
1275
2269
|
readonly description: "Unique identifier of the kubernetes cluster. UUID v4 string in canonical form";
|
|
1276
2270
|
readonly example: "6b5439b1-923a-4f2b-a371-d554e5ea23fa";
|
|
1277
2271
|
};
|
|
1278
|
-
readonly cluster_tier: {
|
|
1279
|
-
readonly type: "string";
|
|
1280
|
-
readonly description: "Tier of the cluster.";
|
|
1281
|
-
readonly example: "pro";
|
|
1282
|
-
readonly enum: readonly [""];
|
|
1283
|
-
};
|
|
1284
2272
|
readonly product: {
|
|
1285
2273
|
readonly type: "string";
|
|
1286
2274
|
readonly description: "The product the usage is associated with";
|
|
1287
|
-
readonly example: "
|
|
1288
|
-
readonly enum: readonly ["cfke_infra_compute", "cfke_nodes", "cfke_controlplane"];
|
|
1289
|
-
};
|
|
1290
|
-
readonly node_name: {
|
|
1291
|
-
readonly type: "string";
|
|
1292
|
-
readonly description: "Name of the Kubernetes node";
|
|
1293
|
-
readonly example: "flexible-moth-956037384";
|
|
1294
|
-
};
|
|
1295
|
-
readonly sku: {
|
|
1296
|
-
readonly type: "string";
|
|
1297
|
-
readonly description: "SKU of the Kubernetes node";
|
|
1298
|
-
readonly example: "GCP-NORTHAMERICA-NORTHEAST1-A-G1-SMALL-SPOT";
|
|
2275
|
+
readonly example: "cfke_controlplane";
|
|
1299
2276
|
};
|
|
1300
|
-
readonly
|
|
1301
|
-
readonly
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
readonly example: 4;
|
|
1306
|
-
}, {
|
|
1307
|
-
readonly type: "string";
|
|
1308
|
-
readonly enum: readonly [""];
|
|
1309
|
-
}];
|
|
2277
|
+
readonly value: {
|
|
2278
|
+
readonly type: "number";
|
|
2279
|
+
readonly format: "float";
|
|
2280
|
+
readonly description: "Consumption";
|
|
2281
|
+
readonly example: 4;
|
|
1310
2282
|
};
|
|
1311
2283
|
readonly price: {
|
|
1312
|
-
readonly
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
readonly example: 4;
|
|
1317
|
-
}, {
|
|
1318
|
-
readonly type: "string";
|
|
1319
|
-
readonly enum: readonly [""];
|
|
1320
|
-
}];
|
|
1321
|
-
};
|
|
1322
|
-
readonly value: {
|
|
1323
|
-
readonly anyOf: readonly [{
|
|
1324
|
-
readonly type: "number";
|
|
1325
|
-
readonly format: "float";
|
|
1326
|
-
readonly description: "Value";
|
|
1327
|
-
readonly example: 4;
|
|
1328
|
-
}, {
|
|
1329
|
-
readonly type: "string";
|
|
1330
|
-
readonly enum: readonly [""];
|
|
1331
|
-
}];
|
|
2284
|
+
readonly type: "number";
|
|
2285
|
+
readonly format: "float";
|
|
2286
|
+
readonly description: "Price per unit";
|
|
2287
|
+
readonly example: 0.01;
|
|
1332
2288
|
};
|
|
1333
2289
|
readonly total: {
|
|
1334
|
-
readonly
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
readonly description: "Total";
|
|
1338
|
-
readonly example: 4;
|
|
1339
|
-
}, {
|
|
1340
|
-
readonly type: "string";
|
|
1341
|
-
readonly enum: readonly [""];
|
|
1342
|
-
}];
|
|
2290
|
+
readonly type: "number";
|
|
2291
|
+
readonly format: "float";
|
|
2292
|
+
readonly description: "Total cost";
|
|
1343
2293
|
};
|
|
1344
2294
|
};
|
|
1345
|
-
readonly required: readonly ["
|
|
2295
|
+
readonly required: readonly ["hour", "cluster_id", "product", "value", "price", "total"];
|
|
1346
2296
|
readonly additionalProperties: false;
|
|
1347
2297
|
};
|
|
1348
2298
|
export declare const UserCreateInputSchema: {
|
|
@@ -1379,18 +2329,6 @@ export declare const UserCreateInputSchema: {
|
|
|
1379
2329
|
readonly minLength: 8;
|
|
1380
2330
|
readonly description: "User password. Must be at least 8 characters long.";
|
|
1381
2331
|
};
|
|
1382
|
-
readonly status: {
|
|
1383
|
-
readonly type: "string";
|
|
1384
|
-
readonly description: "Status of the user. Can be `active` or `inactive`. Inactive users cannot log in or manage organization resources.";
|
|
1385
|
-
readonly example: "active";
|
|
1386
|
-
readonly enum: readonly ["active", "inactive"];
|
|
1387
|
-
};
|
|
1388
|
-
readonly role: {
|
|
1389
|
-
readonly type: "string";
|
|
1390
|
-
readonly description: "User role. Can be 'Administrator', 'User'.";
|
|
1391
|
-
readonly example: "User";
|
|
1392
|
-
readonly enum: readonly ["Administrator", "User"];
|
|
1393
|
-
};
|
|
1394
2332
|
};
|
|
1395
2333
|
readonly required: readonly ["email", "first_name", "last_name", "code", "password"];
|
|
1396
2334
|
readonly additionalProperties: false;
|