@cloudfleet/sdk 0.0.1-96d5fec → 0.0.1-9a4447d
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 +1139 -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 +13 -0
- package/dist/client.gen.d.ts.map +1 -0
- package/dist/client.gen.js +4 -0
- package/dist/client.gen.js.map +1 -0
- 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/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/schemas.gen.d.ts +1676 -1084
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +2973 -1138
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +274 -144
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +362 -225
- package/dist/sdk.gen.js.map +1 -1
- package/dist/services/kubernetes/api.d.ts +196 -0
- package/dist/services/kubernetes/api.d.ts.map +1 -0
- package/dist/services/kubernetes/api.js +140 -0
- package/dist/services/kubernetes/api.js.map +1 -0
- package/dist/services/kubernetes/index.d.ts +44 -0
- package/dist/services/kubernetes/index.d.ts.map +1 -0
- package/dist/services/kubernetes/index.js +68 -0
- package/dist/services/kubernetes/index.js.map +1 -0
- package/dist/services/kubernetes/types.d.ts +1335 -0
- package/dist/services/kubernetes/types.d.ts.map +1 -0
- package/dist/services/kubernetes/types.js +2 -0
- package/dist/services/kubernetes/types.js.map +1 -0
- package/dist/types.gen.d.ts +1517 -961
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +3775 -2857
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +1582 -893
- package/dist/zod.gen.js.map +1 -1
- package/package.json +31 -5
package/dist/schemas.gen.d.ts
CHANGED
|
@@ -1,3 +1,267 @@
|
|
|
1
|
+
export declare const BillingContactSchema: {
|
|
2
|
+
readonly type: "object";
|
|
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
|
+
};
|
|
10
|
+
readonly company: {
|
|
11
|
+
readonly type: "string";
|
|
12
|
+
readonly maxLength: 120;
|
|
13
|
+
readonly minLength: 2;
|
|
14
|
+
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,}$";
|
|
15
|
+
readonly description: "Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.";
|
|
16
|
+
readonly example: "ACME Corp.";
|
|
17
|
+
};
|
|
18
|
+
readonly address1: {
|
|
19
|
+
readonly type: "string";
|
|
20
|
+
readonly nullable: true;
|
|
21
|
+
readonly description: "Street address, P.O. box, c/o";
|
|
22
|
+
readonly example: "123 Main St.";
|
|
23
|
+
};
|
|
24
|
+
readonly address2: {
|
|
25
|
+
readonly type: "string";
|
|
26
|
+
readonly nullable: true;
|
|
27
|
+
readonly description: "Apartment, suite, unit, building, floor, etc.";
|
|
28
|
+
readonly example: "Suite 100";
|
|
29
|
+
};
|
|
30
|
+
readonly postalCode: {
|
|
31
|
+
readonly type: "string";
|
|
32
|
+
readonly nullable: true;
|
|
33
|
+
readonly description: "Postal code as a string.";
|
|
34
|
+
readonly example: "94105";
|
|
35
|
+
};
|
|
36
|
+
readonly city: {
|
|
37
|
+
readonly type: "string";
|
|
38
|
+
readonly nullable: true;
|
|
39
|
+
readonly description: "City or town name.";
|
|
40
|
+
readonly example: "San Francisco";
|
|
41
|
+
};
|
|
42
|
+
readonly state: {
|
|
43
|
+
readonly type: "string";
|
|
44
|
+
readonly nullable: true;
|
|
45
|
+
readonly description: "State, province, or region name.";
|
|
46
|
+
readonly example: "CA";
|
|
47
|
+
};
|
|
48
|
+
readonly country: {
|
|
49
|
+
readonly type: "string";
|
|
50
|
+
readonly nullable: true;
|
|
51
|
+
readonly description: "Country as a ISO 3166-1 alpha-2 country code.";
|
|
52
|
+
readonly example: "US";
|
|
53
|
+
};
|
|
54
|
+
readonly phone: {
|
|
55
|
+
readonly type: "string";
|
|
56
|
+
readonly nullable: true;
|
|
57
|
+
readonly description: "Phone number as a string.";
|
|
58
|
+
readonly example: "+1 555 555 5555";
|
|
59
|
+
};
|
|
60
|
+
readonly email: {
|
|
61
|
+
readonly type: "string";
|
|
62
|
+
readonly format: "email";
|
|
63
|
+
readonly description: "Email address used for billing as a string.";
|
|
64
|
+
readonly example: "email@example.com";
|
|
65
|
+
};
|
|
66
|
+
readonly individual_name: {
|
|
67
|
+
readonly type: "string";
|
|
68
|
+
readonly description: "Name of the billing contact person.";
|
|
69
|
+
readonly example: "John Doe";
|
|
70
|
+
};
|
|
71
|
+
readonly tax_id: {
|
|
72
|
+
readonly type: "string";
|
|
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", ""];
|
|
83
|
+
};
|
|
84
|
+
};
|
|
85
|
+
readonly required: readonly ["type", "email", "individual_name"];
|
|
86
|
+
readonly additionalProperties: false;
|
|
87
|
+
};
|
|
88
|
+
export declare const BillingCreditsSchema: {
|
|
89
|
+
readonly type: "object";
|
|
90
|
+
readonly properties: {
|
|
91
|
+
readonly id: {
|
|
92
|
+
readonly type: "string";
|
|
93
|
+
readonly description: "Generated unique identifier of the promotional code.";
|
|
94
|
+
readonly example: "7kUZnH7nnKUFfvc4NK2KQF";
|
|
95
|
+
};
|
|
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: {
|
|
109
|
+
readonly type: "string";
|
|
110
|
+
readonly format: "date-time";
|
|
111
|
+
readonly description: "Timestamp when the credit expires or becomes inactive. ISO 8601 date string in the UTC timezone.";
|
|
112
|
+
readonly example: "2023-12-20T13:53:32.000Z";
|
|
113
|
+
};
|
|
114
|
+
readonly code: {
|
|
115
|
+
readonly type: "string";
|
|
116
|
+
readonly description: "Promotional code used by the customer.";
|
|
117
|
+
readonly example: "VQ4SCMB";
|
|
118
|
+
};
|
|
119
|
+
readonly description: {
|
|
120
|
+
readonly type: "string";
|
|
121
|
+
readonly description: "Description of the promotional code.";
|
|
122
|
+
readonly example: "10% off on all products";
|
|
123
|
+
};
|
|
124
|
+
readonly value_total: {
|
|
125
|
+
readonly type: "number";
|
|
126
|
+
readonly format: "float";
|
|
127
|
+
readonly description: "Total value of the promotional code.";
|
|
128
|
+
readonly example: 10;
|
|
129
|
+
};
|
|
130
|
+
readonly value_remaining: {
|
|
131
|
+
readonly type: "number";
|
|
132
|
+
readonly format: "float";
|
|
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";
|
|
260
|
+
};
|
|
261
|
+
};
|
|
262
|
+
readonly required: readonly ["values", "version_channel"];
|
|
263
|
+
readonly additionalProperties: false;
|
|
264
|
+
};
|
|
1
265
|
export declare const ClusterCreateInputSchema: {
|
|
2
266
|
readonly type: "object";
|
|
3
267
|
readonly properties: {
|
|
@@ -9,25 +273,26 @@ export declare const ClusterCreateInputSchema: {
|
|
|
9
273
|
readonly description: "Name of the cluster.";
|
|
10
274
|
readonly example: "production-cluster";
|
|
11
275
|
};
|
|
12
|
-
readonly region: {
|
|
13
|
-
readonly type: "string";
|
|
14
|
-
readonly description: "Cloudfleet control plane region. One of \"staging\", \"northamerica-central-1\". This field can not be updated after creation.";
|
|
15
|
-
readonly default: "staging";
|
|
16
|
-
readonly example: "northamerica-central-1";
|
|
17
|
-
readonly enum: readonly ["staging", "northamerica-central-1"];
|
|
18
|
-
};
|
|
19
276
|
readonly tier: {
|
|
20
277
|
readonly type: "string";
|
|
21
278
|
readonly description: "Tier of the cluster.";
|
|
22
279
|
readonly example: "pro";
|
|
23
280
|
readonly enum: readonly ["basic", "pro"];
|
|
24
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
|
+
};
|
|
25
289
|
readonly version_channel: {
|
|
26
290
|
readonly type: "string";
|
|
27
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-]+)*))?$";
|
|
28
292
|
readonly description: "Version of the kubernetes cluster.";
|
|
29
293
|
readonly default: "1.x.x-cfke.x";
|
|
30
|
-
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"];
|
|
31
296
|
};
|
|
32
297
|
};
|
|
33
298
|
readonly required: readonly ["name", "tier"];
|
|
@@ -47,6 +312,11 @@ export declare const ClusterJoinInformationSchema: {
|
|
|
47
312
|
readonly description: "Internal URL of the Kubernetes cluster control plane. This is the endpoint that kubelet uses to connect to the cluster.";
|
|
48
313
|
readonly example: "https://10.31.64.7:6443";
|
|
49
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
|
+
};
|
|
50
320
|
readonly auth_key: {
|
|
51
321
|
readonly type: "string";
|
|
52
322
|
readonly description: "Authentication key for the cluster.";
|
|
@@ -63,7 +333,7 @@ export declare const ClusterJoinInformationSchema: {
|
|
|
63
333
|
readonly kubernetes: {
|
|
64
334
|
readonly type: "string";
|
|
65
335
|
readonly description: "Kubernetes version of the cluster.";
|
|
66
|
-
readonly example: "1.
|
|
336
|
+
readonly example: "1.33.7";
|
|
67
337
|
};
|
|
68
338
|
readonly tailscale: {
|
|
69
339
|
readonly type: "string";
|
|
@@ -75,13 +345,41 @@ export declare const ClusterJoinInformationSchema: {
|
|
|
75
345
|
readonly description: "Containerd version of the cluster.";
|
|
76
346
|
readonly example: "1.7.19";
|
|
77
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
|
+
};
|
|
78
353
|
};
|
|
79
|
-
readonly required: readonly ["kubernetes", "tailscale", "containerd"];
|
|
354
|
+
readonly required: readonly ["kubernetes", "tailscale", "containerd", "nvidia_driver"];
|
|
80
355
|
readonly additionalProperties: false;
|
|
81
356
|
readonly description: "Versions of the different components of the cluster.";
|
|
82
357
|
};
|
|
358
|
+
readonly third_party_api_access_config: {
|
|
359
|
+
readonly type: "object";
|
|
360
|
+
readonly properties: {
|
|
361
|
+
readonly metadata_url: {
|
|
362
|
+
readonly type: "string";
|
|
363
|
+
readonly description: "Kubernetes metadata server.";
|
|
364
|
+
readonly example: "https://10.31.64.4";
|
|
365
|
+
};
|
|
366
|
+
readonly aws_role_arn: {
|
|
367
|
+
readonly type: "string";
|
|
368
|
+
readonly description: "AWS Role ARN.";
|
|
369
|
+
readonly example: "arn:aws:iam::891376988828:role/0371f8fd-e164-48e1-b9e7-c3bdc3b4f403";
|
|
370
|
+
};
|
|
371
|
+
readonly gcp_workload_identity_provider: {
|
|
372
|
+
readonly type: "string";
|
|
373
|
+
readonly description: "GCP Workload Identity provider.";
|
|
374
|
+
readonly example: "//iam.googleapis.com/projects/89014267864/locations/global/workloadIdentityPools/cfke/providers/oidc";
|
|
375
|
+
};
|
|
376
|
+
};
|
|
377
|
+
readonly required: readonly ["metadata_url", "aws_role_arn", "gcp_workload_identity_provider"];
|
|
378
|
+
readonly additionalProperties: false;
|
|
379
|
+
readonly description: "OIDC Information for hosts to access to third party API's.";
|
|
380
|
+
};
|
|
83
381
|
};
|
|
84
|
-
readonly required: readonly ["certificate_authority", "endpoint", "auth_key", "bootstrap_token", "versions"];
|
|
382
|
+
readonly required: readonly ["certificate_authority", "endpoint", "cluster_dns", "auth_key", "bootstrap_token", "versions", "third_party_api_access_config"];
|
|
85
383
|
readonly additionalProperties: false;
|
|
86
384
|
};
|
|
87
385
|
export declare const ClusterSchema: {
|
|
@@ -95,25 +393,18 @@ export declare const ClusterSchema: {
|
|
|
95
393
|
readonly description: "Name of the cluster.";
|
|
96
394
|
readonly example: "production-cluster";
|
|
97
395
|
};
|
|
98
|
-
readonly region: {
|
|
99
|
-
readonly type: "string";
|
|
100
|
-
readonly description: "Cloudfleet control plane region. One of \"staging\", \"northamerica-central-1\". This field can not be updated after creation.";
|
|
101
|
-
readonly default: "staging";
|
|
102
|
-
readonly example: "northamerica-central-1";
|
|
103
|
-
readonly enum: readonly ["staging", "northamerica-central-1"];
|
|
104
|
-
};
|
|
105
396
|
readonly tier: {
|
|
106
397
|
readonly type: "string";
|
|
107
398
|
readonly description: "Tier of the cluster.";
|
|
108
399
|
readonly example: "pro";
|
|
109
400
|
readonly enum: readonly ["basic", "pro"];
|
|
110
401
|
};
|
|
111
|
-
readonly
|
|
402
|
+
readonly region: {
|
|
112
403
|
readonly type: "string";
|
|
113
|
-
readonly
|
|
114
|
-
readonly
|
|
115
|
-
readonly
|
|
116
|
-
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"];
|
|
117
408
|
};
|
|
118
409
|
readonly id: {
|
|
119
410
|
readonly type: "string";
|
|
@@ -125,19 +416,30 @@ export declare const ClusterSchema: {
|
|
|
125
416
|
readonly type: "string";
|
|
126
417
|
readonly description: "Status of the cluster. When creating a new cluster, set to `active`. When deleting a clusters, set to `deleted`.";
|
|
127
418
|
readonly example: "active";
|
|
128
|
-
readonly enum: readonly ["active", "deleted", "creating", "deployed", "failed", "updating"];
|
|
419
|
+
readonly enum: readonly ["active", "disabled", "deleted", "creating", "deployed", "failed", "updating"];
|
|
129
420
|
};
|
|
130
421
|
readonly endpoint: {
|
|
131
422
|
readonly anyOf: readonly [{
|
|
132
423
|
readonly type: "string";
|
|
133
424
|
readonly format: "uri";
|
|
134
|
-
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)";
|
|
135
426
|
readonly example: "https://2ae6557c-c61f-49c6-b4c1-a65473470a03.staging.cfke.cloudfleet.dev:6443";
|
|
136
427
|
}, {
|
|
137
428
|
readonly type: "string";
|
|
138
429
|
readonly enum: readonly [""];
|
|
139
430
|
}];
|
|
140
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
|
+
};
|
|
141
443
|
readonly certificate_ca: {
|
|
142
444
|
readonly type: "string";
|
|
143
445
|
readonly description: "Certificate authority data for the kubernetes cluster. This is the root certificate authority for the cluster.";
|
|
@@ -146,7 +448,7 @@ export declare const ClusterSchema: {
|
|
|
146
448
|
readonly version_current: {
|
|
147
449
|
readonly type: "string";
|
|
148
450
|
readonly description: "Current version of the cluster.";
|
|
149
|
-
readonly example: "1.
|
|
451
|
+
readonly example: "1.33.7-cfke.264";
|
|
150
452
|
};
|
|
151
453
|
readonly created_at: {
|
|
152
454
|
readonly type: "string";
|
|
@@ -163,6 +465,12 @@ export declare const ClusterSchema: {
|
|
|
163
465
|
readonly description: "Indicates if the cluster is ready to be used.";
|
|
164
466
|
readonly example: true;
|
|
165
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
|
+
};
|
|
166
474
|
};
|
|
167
475
|
readonly required: readonly ["name", "tier", "id", "status"];
|
|
168
476
|
readonly additionalProperties: false;
|
|
@@ -178,13 +486,20 @@ export declare const ClusterUpdateInputSchema: {
|
|
|
178
486
|
readonly description: "Name of the cluster.";
|
|
179
487
|
readonly example: "production-cluster";
|
|
180
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
|
+
};
|
|
181
495
|
readonly version_channel: {
|
|
182
496
|
readonly type: "string";
|
|
183
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-]+)*))?$";
|
|
184
498
|
readonly description: "Version of the kubernetes cluster.";
|
|
185
|
-
readonly example: "1.
|
|
499
|
+
readonly example: "1.x.x-cfke.x";
|
|
186
500
|
};
|
|
187
501
|
};
|
|
502
|
+
readonly required: readonly ["tier"];
|
|
188
503
|
readonly additionalProperties: false;
|
|
189
504
|
};
|
|
190
505
|
export declare const FleetCreateInputSchema: {
|
|
@@ -194,13 +509,12 @@ export declare const FleetCreateInputSchema: {
|
|
|
194
509
|
readonly type: "object";
|
|
195
510
|
readonly properties: {
|
|
196
511
|
readonly cpu: {
|
|
197
|
-
readonly type: "
|
|
198
|
-
readonly format: "float";
|
|
512
|
+
readonly type: "integer";
|
|
199
513
|
readonly minimum: 0;
|
|
200
|
-
readonly
|
|
514
|
+
readonly maximum: 100000;
|
|
515
|
+
readonly description: "CPU limit in cores. Maximum 100,000.";
|
|
201
516
|
};
|
|
202
517
|
};
|
|
203
|
-
readonly required: readonly ["cpu"];
|
|
204
518
|
readonly additionalProperties: false;
|
|
205
519
|
readonly description: "Limits define a set of bounds for provisioning capacity.";
|
|
206
520
|
};
|
|
@@ -209,57 +523,99 @@ export declare const FleetCreateInputSchema: {
|
|
|
209
523
|
readonly properties: {
|
|
210
524
|
readonly enabled: {
|
|
211
525
|
readonly type: "boolean";
|
|
212
|
-
readonly default: true;
|
|
213
526
|
};
|
|
214
527
|
readonly project: {
|
|
215
528
|
readonly type: "string";
|
|
216
|
-
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";
|
|
217
532
|
};
|
|
218
533
|
};
|
|
219
|
-
readonly required: readonly ["
|
|
534
|
+
readonly required: readonly ["enabled"];
|
|
220
535
|
readonly additionalProperties: false;
|
|
221
536
|
};
|
|
222
537
|
readonly hetzner: {
|
|
223
|
-
readonly
|
|
224
|
-
|
|
225
|
-
readonly
|
|
226
|
-
readonly
|
|
227
|
-
readonly type: "boolean";
|
|
228
|
-
readonly default: true;
|
|
229
|
-
};
|
|
230
|
-
readonly apiKey: {
|
|
231
|
-
readonly type: "string";
|
|
232
|
-
};
|
|
538
|
+
readonly type: "object";
|
|
539
|
+
readonly properties: {
|
|
540
|
+
readonly enabled: {
|
|
541
|
+
readonly type: "boolean";
|
|
233
542
|
};
|
|
234
|
-
readonly
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
readonly
|
|
239
|
-
|
|
240
|
-
};
|
|
241
|
-
readonly enabled: {
|
|
242
|
-
readonly type: "boolean";
|
|
243
|
-
readonly default: true;
|
|
244
|
-
};
|
|
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.";
|
|
245
549
|
};
|
|
246
|
-
|
|
247
|
-
|
|
550
|
+
};
|
|
551
|
+
readonly required: readonly ["enabled"];
|
|
552
|
+
readonly additionalProperties: false;
|
|
248
553
|
};
|
|
249
554
|
readonly aws: {
|
|
250
555
|
readonly type: "object";
|
|
251
556
|
readonly properties: {
|
|
252
557
|
readonly enabled: {
|
|
253
558
|
readonly type: "boolean";
|
|
254
|
-
readonly default: true;
|
|
255
559
|
};
|
|
256
560
|
readonly controllerRoleArn: {
|
|
257
561
|
readonly type: "string";
|
|
258
|
-
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`.";
|
|
259
608
|
};
|
|
260
609
|
};
|
|
261
|
-
readonly required: readonly ["controllerRoleArn"];
|
|
262
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"];
|
|
263
619
|
};
|
|
264
620
|
readonly id: {
|
|
265
621
|
readonly type: "string";
|
|
@@ -269,13 +625,8 @@ export declare const FleetCreateInputSchema: {
|
|
|
269
625
|
readonly description: "Unique identifier of the kubernetes fleet.";
|
|
270
626
|
readonly example: "new-clouds-fleet";
|
|
271
627
|
};
|
|
272
|
-
readonly type: {
|
|
273
|
-
readonly type: "string";
|
|
274
|
-
readonly description: "Specifies the fleet type: infrastructure managed by Cloudfleet or Connected Fleets.";
|
|
275
|
-
readonly enum: readonly ["managed", "connected"];
|
|
276
|
-
};
|
|
277
628
|
};
|
|
278
|
-
readonly required: readonly ["id"
|
|
629
|
+
readonly required: readonly ["id"];
|
|
279
630
|
readonly additionalProperties: false;
|
|
280
631
|
};
|
|
281
632
|
export declare const FleetSchema: {
|
|
@@ -285,13 +636,12 @@ export declare const FleetSchema: {
|
|
|
285
636
|
readonly type: "object";
|
|
286
637
|
readonly properties: {
|
|
287
638
|
readonly cpu: {
|
|
288
|
-
readonly type: "
|
|
289
|
-
readonly format: "float";
|
|
639
|
+
readonly type: "integer";
|
|
290
640
|
readonly minimum: 0;
|
|
291
|
-
readonly
|
|
641
|
+
readonly maximum: 100000;
|
|
642
|
+
readonly description: "CPU limit in cores. Maximum 100,000.";
|
|
292
643
|
};
|
|
293
644
|
};
|
|
294
|
-
readonly required: readonly ["cpu"];
|
|
295
645
|
readonly additionalProperties: false;
|
|
296
646
|
readonly description: "Limits define a set of bounds for provisioning capacity.";
|
|
297
647
|
};
|
|
@@ -300,57 +650,97 @@ export declare const FleetSchema: {
|
|
|
300
650
|
readonly properties: {
|
|
301
651
|
readonly enabled: {
|
|
302
652
|
readonly type: "boolean";
|
|
303
|
-
readonly default: true;
|
|
304
653
|
};
|
|
305
654
|
readonly project: {
|
|
306
655
|
readonly type: "string";
|
|
307
|
-
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";
|
|
308
659
|
};
|
|
309
660
|
};
|
|
310
|
-
readonly required: readonly ["
|
|
661
|
+
readonly required: readonly ["enabled"];
|
|
311
662
|
readonly additionalProperties: false;
|
|
312
663
|
};
|
|
313
664
|
readonly hetzner: {
|
|
314
|
-
readonly
|
|
315
|
-
|
|
316
|
-
readonly
|
|
317
|
-
readonly
|
|
318
|
-
readonly type: "boolean";
|
|
319
|
-
readonly default: true;
|
|
320
|
-
};
|
|
321
|
-
readonly apiKey: {
|
|
322
|
-
readonly type: "string";
|
|
323
|
-
};
|
|
665
|
+
readonly type: "object";
|
|
666
|
+
readonly properties: {
|
|
667
|
+
readonly enabled: {
|
|
668
|
+
readonly type: "boolean";
|
|
324
669
|
};
|
|
325
|
-
readonly
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
readonly apiKey: {
|
|
330
|
-
readonly type: "string";
|
|
331
|
-
};
|
|
332
|
-
readonly enabled: {
|
|
333
|
-
readonly type: "boolean";
|
|
334
|
-
readonly default: true;
|
|
335
|
-
};
|
|
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.";
|
|
336
674
|
};
|
|
337
|
-
|
|
338
|
-
|
|
675
|
+
};
|
|
676
|
+
readonly required: readonly ["enabled"];
|
|
677
|
+
readonly additionalProperties: false;
|
|
339
678
|
};
|
|
340
679
|
readonly aws: {
|
|
341
680
|
readonly type: "object";
|
|
342
681
|
readonly properties: {
|
|
343
682
|
readonly enabled: {
|
|
344
683
|
readonly type: "boolean";
|
|
345
|
-
readonly default: true;
|
|
346
684
|
};
|
|
347
685
|
readonly controllerRoleArn: {
|
|
348
686
|
readonly type: "string";
|
|
349
|
-
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";
|
|
690
|
+
};
|
|
691
|
+
};
|
|
692
|
+
readonly required: readonly ["enabled"];
|
|
693
|
+
readonly additionalProperties: false;
|
|
694
|
+
};
|
|
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`.";
|
|
350
733
|
};
|
|
351
734
|
};
|
|
352
|
-
readonly required: readonly ["controllerRoleArn"];
|
|
353
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"];
|
|
354
744
|
};
|
|
355
745
|
readonly id: {
|
|
356
746
|
readonly type: "string";
|
|
@@ -360,13 +750,8 @@ export declare const FleetSchema: {
|
|
|
360
750
|
readonly description: "Unique identifier of the kubernetes fleet.";
|
|
361
751
|
readonly example: "new-clouds-fleet";
|
|
362
752
|
};
|
|
363
|
-
readonly type: {
|
|
364
|
-
readonly type: "string";
|
|
365
|
-
readonly description: "Specifies the fleet type: infrastructure managed by Cloudfleet or Connected Fleets.";
|
|
366
|
-
readonly enum: readonly ["managed", "connected"];
|
|
367
|
-
};
|
|
368
753
|
};
|
|
369
|
-
readonly required: readonly ["
|
|
754
|
+
readonly required: readonly ["scalingProfile", "id"];
|
|
370
755
|
readonly additionalProperties: false;
|
|
371
756
|
};
|
|
372
757
|
export declare const FleetUpdateInputSchema: {
|
|
@@ -376,13 +761,12 @@ export declare const FleetUpdateInputSchema: {
|
|
|
376
761
|
readonly type: "object";
|
|
377
762
|
readonly properties: {
|
|
378
763
|
readonly cpu: {
|
|
379
|
-
readonly type: "
|
|
380
|
-
readonly format: "float";
|
|
764
|
+
readonly type: "integer";
|
|
381
765
|
readonly minimum: 0;
|
|
382
|
-
readonly
|
|
766
|
+
readonly maximum: 100000;
|
|
767
|
+
readonly description: "CPU limit in cores. Maximum 100,000.";
|
|
383
768
|
};
|
|
384
769
|
};
|
|
385
|
-
readonly required: readonly ["cpu"];
|
|
386
770
|
readonly additionalProperties: false;
|
|
387
771
|
readonly description: "Limits define a set of bounds for provisioning capacity.";
|
|
388
772
|
};
|
|
@@ -391,1161 +775,1285 @@ export declare const FleetUpdateInputSchema: {
|
|
|
391
775
|
readonly properties: {
|
|
392
776
|
readonly enabled: {
|
|
393
777
|
readonly type: "boolean";
|
|
394
|
-
readonly default: true;
|
|
395
778
|
};
|
|
396
779
|
readonly project: {
|
|
397
780
|
readonly type: "string";
|
|
398
|
-
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";
|
|
399
784
|
};
|
|
400
785
|
};
|
|
401
|
-
readonly required: readonly ["
|
|
786
|
+
readonly required: readonly ["enabled"];
|
|
402
787
|
readonly additionalProperties: false;
|
|
403
788
|
};
|
|
404
789
|
readonly hetzner: {
|
|
405
|
-
readonly
|
|
406
|
-
|
|
407
|
-
readonly
|
|
408
|
-
readonly
|
|
409
|
-
readonly type: "boolean";
|
|
410
|
-
readonly default: true;
|
|
411
|
-
};
|
|
412
|
-
readonly apiKey: {
|
|
413
|
-
readonly type: "string";
|
|
414
|
-
};
|
|
790
|
+
readonly type: "object";
|
|
791
|
+
readonly properties: {
|
|
792
|
+
readonly enabled: {
|
|
793
|
+
readonly type: "boolean";
|
|
415
794
|
};
|
|
416
|
-
readonly
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
readonly
|
|
421
|
-
|
|
422
|
-
};
|
|
423
|
-
readonly enabled: {
|
|
424
|
-
readonly type: "boolean";
|
|
425
|
-
readonly default: true;
|
|
426
|
-
};
|
|
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.";
|
|
427
801
|
};
|
|
428
|
-
|
|
429
|
-
|
|
802
|
+
};
|
|
803
|
+
readonly required: readonly ["enabled"];
|
|
804
|
+
readonly additionalProperties: false;
|
|
430
805
|
};
|
|
431
806
|
readonly aws: {
|
|
432
807
|
readonly type: "object";
|
|
433
808
|
readonly properties: {
|
|
434
809
|
readonly enabled: {
|
|
435
810
|
readonly type: "boolean";
|
|
436
|
-
readonly default: true;
|
|
437
811
|
};
|
|
438
812
|
readonly controllerRoleArn: {
|
|
439
813
|
readonly type: "string";
|
|
440
|
-
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";
|
|
441
817
|
};
|
|
442
818
|
};
|
|
443
|
-
readonly required: readonly ["
|
|
819
|
+
readonly required: readonly ["enabled"];
|
|
444
820
|
readonly additionalProperties: false;
|
|
445
821
|
};
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
readonly csp_region: {
|
|
484
|
-
readonly type: "array";
|
|
485
|
-
readonly items: {
|
|
486
|
-
readonly type: "string";
|
|
487
|
-
};
|
|
488
|
-
readonly description: "Limits selection of cloud regions to this list of canonical provider regions";
|
|
489
|
-
readonly example: "eu-west-1";
|
|
490
|
-
};
|
|
491
|
-
readonly instance_type: {
|
|
492
|
-
readonly type: "array";
|
|
493
|
-
readonly items: {
|
|
494
|
-
readonly type: "string";
|
|
495
|
-
};
|
|
496
|
-
readonly description: "Limits selection of instance types to this list. Instance / VM type as defined by the cloud service provider";
|
|
497
|
-
readonly example: "p4d.24xlarge";
|
|
498
|
-
};
|
|
499
|
-
readonly accelerator_name: {
|
|
500
|
-
readonly type: "array";
|
|
501
|
-
readonly items: {
|
|
502
|
-
readonly type: "string";
|
|
503
|
-
};
|
|
504
|
-
readonly description: "List of Normalized accelerator model names. For example, all variations of Nvidia A100 GPUs will have 'A100' as accelerator name with various memory configurations set in accelerator_memory field";
|
|
505
|
-
readonly example: "A100";
|
|
506
|
-
};
|
|
507
|
-
readonly accelerator_manufacturer: {
|
|
508
|
-
readonly type: "array";
|
|
509
|
-
readonly items: {
|
|
510
|
-
readonly type: "string";
|
|
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
|
+
};
|
|
511
859
|
};
|
|
512
|
-
readonly
|
|
513
|
-
readonly
|
|
514
|
-
};
|
|
515
|
-
readonly accelerator_count_min: {
|
|
516
|
-
readonly type: "integer";
|
|
517
|
-
readonly minimum: 0;
|
|
518
|
-
readonly description: "Minimum number of accelerators available on the instance. Some cloud providers support shared accelerators, so the number of accelerators may be a fraction of the number of physical accelerators.";
|
|
519
|
-
readonly example: 1;
|
|
520
|
-
};
|
|
521
|
-
readonly accelerator_count_max: {
|
|
522
|
-
readonly type: "integer";
|
|
523
|
-
readonly minimum: 0;
|
|
524
|
-
readonly description: "Maximum number of accelerators available on the instance. Some cloud providers support shared accelerators, so the number of accelerators may be a fraction of the number of physical accelerators.";
|
|
525
|
-
readonly example: 8;
|
|
526
|
-
};
|
|
527
|
-
readonly accelerator_memory_min: {
|
|
528
|
-
readonly type: "number";
|
|
529
|
-
readonly format: "float";
|
|
530
|
-
readonly description: "Minimum amount of accelerator memory available to each accelerator. For example, Nvidia A100 GPUs will typically have '40.0' gibibytes (GiB) of memory, while A100 GPUs with HBM2E memory will have '80.0' gibibytes (GiB) of memory";
|
|
531
|
-
readonly example: 40;
|
|
532
|
-
};
|
|
533
|
-
readonly accelerator_memory_max: {
|
|
534
|
-
readonly type: "number";
|
|
535
|
-
readonly format: "float";
|
|
536
|
-
readonly description: "Maximum amount of accelerator memory available to each accelerator. For example, Nvidia A100 GPUs will typically have '40.0' gibibytes (GiB) of memory, while A100 GPUs with HBM2E memory will have '80.0' gibibytes (GiB) of memory";
|
|
537
|
-
readonly example: 80;
|
|
538
|
-
};
|
|
539
|
-
readonly memory_min: {
|
|
540
|
-
readonly type: "integer";
|
|
541
|
-
readonly minimum: 0;
|
|
542
|
-
readonly description: "Minimum amount of RAM in gibibytes (GiB)";
|
|
543
|
-
readonly example: 32;
|
|
544
|
-
};
|
|
545
|
-
readonly memory_max: {
|
|
546
|
-
readonly type: "integer";
|
|
547
|
-
readonly minimum: 0;
|
|
548
|
-
readonly description: "Maximum amount of RAM in gibibytes (GiB)";
|
|
549
|
-
readonly example: 64;
|
|
550
|
-
};
|
|
551
|
-
readonly vcpu_min: {
|
|
552
|
-
readonly type: "integer";
|
|
553
|
-
readonly minimum: 1;
|
|
554
|
-
readonly description: "Minimum number of vCPUs as defined by the cloud service provider. Some cloud providers use hyperthreading, so the number of vCPUs may be twice as high as the number of physical cores.";
|
|
555
|
-
readonly example: 32;
|
|
556
|
-
};
|
|
557
|
-
readonly vcpu_max: {
|
|
558
|
-
readonly type: "integer";
|
|
559
|
-
readonly minimum: 1;
|
|
560
|
-
readonly description: "Maximum number of vCPUs as defined by the cloud service provider. Some cloud providers use hyperthreading, so the number of vCPUs may be twice as high as the number of physical cores.";
|
|
561
|
-
readonly example: 128;
|
|
562
|
-
};
|
|
563
|
-
readonly storage_total_min: {
|
|
564
|
-
readonly type: "number";
|
|
565
|
-
readonly format: "float";
|
|
566
|
-
readonly minimum: 10;
|
|
567
|
-
readonly description: "Minimum total storage in GiB (attached and local)";
|
|
568
|
-
readonly example: 128;
|
|
569
|
-
};
|
|
570
|
-
readonly storage_total_max: {
|
|
571
|
-
readonly type: "number";
|
|
572
|
-
readonly format: "float";
|
|
573
|
-
readonly minimum: 10;
|
|
574
|
-
readonly description: "Maximum total storage in GiB (attached and local)";
|
|
575
|
-
readonly example: 256;
|
|
576
|
-
};
|
|
577
|
-
readonly storage_local_min: {
|
|
578
|
-
readonly type: "number";
|
|
579
|
-
readonly format: "float";
|
|
580
|
-
readonly description: "Minimum volume of directly attached, block-device local storage in gibibytes (GiB)";
|
|
581
|
-
readonly example: 24;
|
|
582
|
-
};
|
|
583
|
-
readonly storage_local_max: {
|
|
584
|
-
readonly type: "number";
|
|
585
|
-
readonly format: "float";
|
|
586
|
-
readonly description: "Maximum volume of directly attached, block-device local storage in gibibytes (GiB)";
|
|
587
|
-
readonly example: 128;
|
|
588
|
-
};
|
|
589
|
-
readonly price_min: {
|
|
590
|
-
readonly type: "number";
|
|
591
|
-
readonly format: "float";
|
|
592
|
-
readonly description: "Minimum price of running the inctance per hour in USD as defined by the cloud service provider. The cheapest instance will be selected.";
|
|
593
|
-
readonly example: 10;
|
|
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.";
|
|
594
862
|
};
|
|
595
|
-
readonly
|
|
596
|
-
readonly type: "
|
|
597
|
-
readonly
|
|
598
|
-
readonly
|
|
599
|
-
readonly
|
|
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"];
|
|
600
868
|
};
|
|
601
869
|
};
|
|
870
|
+
readonly required: readonly ["scalingProfile"];
|
|
602
871
|
readonly additionalProperties: false;
|
|
603
872
|
};
|
|
604
|
-
export declare const
|
|
873
|
+
export declare const InviteSchema: {
|
|
605
874
|
readonly type: "object";
|
|
606
875
|
readonly properties: {
|
|
607
|
-
readonly
|
|
876
|
+
readonly id: {
|
|
608
877
|
readonly type: "string";
|
|
609
|
-
readonly description: "
|
|
610
|
-
readonly example: "
|
|
878
|
+
readonly description: "Unique identifier of the invitation.";
|
|
879
|
+
readonly example: "65831dd20d20165489cbb868";
|
|
611
880
|
};
|
|
612
|
-
readonly
|
|
881
|
+
readonly organization_id: {
|
|
613
882
|
readonly type: "string";
|
|
614
|
-
readonly
|
|
615
|
-
readonly
|
|
883
|
+
readonly format: "uuid";
|
|
884
|
+
readonly description: "Unique identifier of the organization the project belongs to. UUID v4 string in canonical form";
|
|
885
|
+
readonly example: "e94d30ec-a2dd-4dcb-832c-ac2be144ba91";
|
|
616
886
|
};
|
|
617
|
-
readonly
|
|
887
|
+
readonly date_created: {
|
|
618
888
|
readonly type: "string";
|
|
619
|
-
readonly
|
|
620
|
-
readonly
|
|
889
|
+
readonly format: "date-time";
|
|
890
|
+
readonly description: "Creation date of the project. ISO 8601 date string in UTC timezone";
|
|
891
|
+
readonly example: "2023-11-02T16:08:14.338Z";
|
|
621
892
|
};
|
|
622
|
-
readonly
|
|
893
|
+
readonly email: {
|
|
623
894
|
readonly type: "string";
|
|
624
|
-
readonly
|
|
625
|
-
readonly
|
|
895
|
+
readonly format: "email";
|
|
896
|
+
readonly description: "User email address.";
|
|
897
|
+
readonly example: "email@example.com";
|
|
626
898
|
};
|
|
627
|
-
readonly
|
|
899
|
+
readonly code: {
|
|
628
900
|
readonly type: "string";
|
|
629
|
-
readonly description: "
|
|
630
|
-
readonly example: "
|
|
901
|
+
readonly description: "Generated unique invite code.";
|
|
902
|
+
readonly example: "7kUZnH7nnKUFfvc4NK2KQF";
|
|
631
903
|
};
|
|
632
|
-
|
|
904
|
+
};
|
|
905
|
+
readonly required: readonly ["date_created"];
|
|
906
|
+
readonly additionalProperties: false;
|
|
907
|
+
};
|
|
908
|
+
export declare const InvoiceSchema: {
|
|
909
|
+
readonly type: "object";
|
|
910
|
+
readonly properties: {
|
|
911
|
+
readonly id: {
|
|
633
912
|
readonly type: "string";
|
|
634
|
-
readonly description: "
|
|
635
|
-
readonly example: "
|
|
913
|
+
readonly description: "Unique identifier of the invoice.";
|
|
914
|
+
readonly example: "in_1234567890xCrwxghOTj1234";
|
|
636
915
|
};
|
|
637
|
-
readonly
|
|
916
|
+
readonly number: {
|
|
638
917
|
readonly type: "string";
|
|
639
|
-
readonly description: "Instance / VM type as defined by the cloud service provider";
|
|
640
|
-
readonly example: "p4d.24xlarge";
|
|
641
918
|
};
|
|
642
|
-
readonly
|
|
919
|
+
readonly status: {
|
|
643
920
|
readonly type: "string";
|
|
644
|
-
readonly description: "
|
|
645
|
-
readonly example: "
|
|
646
|
-
};
|
|
647
|
-
readonly os: {
|
|
648
|
-
readonly type: "string";
|
|
649
|
-
readonly description: "Instance operating system";
|
|
650
|
-
readonly example: "linux";
|
|
651
|
-
};
|
|
652
|
-
readonly vcpu: {
|
|
653
|
-
readonly type: "number";
|
|
654
|
-
readonly format: "float";
|
|
655
|
-
readonly minimum: 1;
|
|
656
|
-
readonly description: "CPU count as defined by the cloud service provider. Some cloud providers use hyperthreading, so the number of vCPUs may be twice as high as the number of physical cores.";
|
|
657
|
-
readonly example: 96;
|
|
658
|
-
};
|
|
659
|
-
readonly memory: {
|
|
660
|
-
readonly type: "number";
|
|
661
|
-
readonly format: "float";
|
|
662
|
-
readonly minimum: 1;
|
|
663
|
-
readonly description: "Total amount of RAM in gibibytes (GiB)";
|
|
664
|
-
readonly example: 1152;
|
|
921
|
+
readonly description: "Status of the invoice";
|
|
922
|
+
readonly example: "paid";
|
|
665
923
|
};
|
|
666
|
-
readonly
|
|
924
|
+
readonly total: {
|
|
667
925
|
readonly type: "number";
|
|
668
926
|
readonly format: "float";
|
|
669
|
-
readonly description: "
|
|
670
|
-
readonly example:
|
|
927
|
+
readonly description: "Total amount of the invoice";
|
|
928
|
+
readonly example: 100;
|
|
671
929
|
};
|
|
672
|
-
readonly
|
|
930
|
+
readonly currency: {
|
|
673
931
|
readonly type: "string";
|
|
674
|
-
readonly description: "
|
|
675
|
-
readonly example: "
|
|
932
|
+
readonly description: "Currency of the invoice";
|
|
933
|
+
readonly example: "usd";
|
|
676
934
|
};
|
|
677
|
-
readonly
|
|
935
|
+
readonly created: {
|
|
678
936
|
readonly type: "string";
|
|
679
|
-
readonly
|
|
680
|
-
readonly
|
|
937
|
+
readonly format: "date-time";
|
|
938
|
+
readonly description: "Timestamp when the invoice was issued. ISO 8601 date string in the UTC timezone.";
|
|
939
|
+
readonly example: "2023-12-20T13:53:32.000Z";
|
|
681
940
|
};
|
|
682
|
-
readonly
|
|
683
|
-
readonly type: "
|
|
684
|
-
readonly
|
|
685
|
-
readonly
|
|
941
|
+
readonly period_start: {
|
|
942
|
+
readonly type: "string";
|
|
943
|
+
readonly format: "date-time";
|
|
944
|
+
readonly description: "Billing period start timestamp. ISO 8601 date string in the UTC timezone.";
|
|
945
|
+
readonly example: "2023-12-20T13:53:32.000Z";
|
|
686
946
|
};
|
|
687
|
-
readonly
|
|
688
|
-
readonly type: "
|
|
689
|
-
readonly format: "
|
|
690
|
-
readonly description: "
|
|
691
|
-
readonly example:
|
|
947
|
+
readonly period_end: {
|
|
948
|
+
readonly type: "string";
|
|
949
|
+
readonly format: "date-time";
|
|
950
|
+
readonly description: "Billing period end timestamp. ISO 8601 date string in the UTC timezone.";
|
|
951
|
+
readonly example: "2023-12-20T13:53:32.000Z";
|
|
692
952
|
};
|
|
693
|
-
readonly
|
|
694
|
-
readonly type: "
|
|
695
|
-
readonly format: "float";
|
|
696
|
-
readonly description: "Maximum number of pods that can be run on this instance type.";
|
|
697
|
-
readonly example: 110;
|
|
953
|
+
readonly invoice_pdf: {
|
|
954
|
+
readonly type: "string";
|
|
698
955
|
};
|
|
699
|
-
|
|
956
|
+
};
|
|
957
|
+
readonly required: readonly ["created", "period_start", "period_end"];
|
|
958
|
+
readonly additionalProperties: false;
|
|
959
|
+
};
|
|
960
|
+
export declare const MarketplaceListingFilesSchema: {
|
|
961
|
+
readonly type: "object";
|
|
962
|
+
readonly properties: {
|
|
963
|
+
readonly chartYaml: {
|
|
700
964
|
readonly type: "string";
|
|
701
|
-
readonly description: "
|
|
702
|
-
readonly example: "
|
|
965
|
+
readonly description: "Raw Chart.yaml content from the Helm chart";
|
|
966
|
+
readonly example: "apiVersion: v2\nname: nginx-ingress\nversion: 1.18.2-cfke.45\nappVersion: 1.9.4";
|
|
703
967
|
};
|
|
704
|
-
readonly
|
|
705
|
-
readonly type: "
|
|
706
|
-
readonly
|
|
707
|
-
readonly
|
|
708
|
-
readonly example: 35.39655;
|
|
968
|
+
readonly valuesYaml: {
|
|
969
|
+
readonly type: "string";
|
|
970
|
+
readonly description: "Raw values.yaml content from the Helm chart";
|
|
971
|
+
readonly example: "replicaCount: 1\nimage:\n repository: nginx\n tag: latest";
|
|
709
972
|
};
|
|
710
|
-
readonly
|
|
711
|
-
readonly type: "
|
|
712
|
-
readonly description: "
|
|
713
|
-
readonly example:
|
|
973
|
+
readonly valuesSchemaJson: {
|
|
974
|
+
readonly type: "string";
|
|
975
|
+
readonly description: "JSON schema for values.yaml as a string";
|
|
976
|
+
readonly example: "{\"type\":\"object\",\"properties\":{\"replicaCount\":{\"type\":\"number\"}}}";
|
|
714
977
|
};
|
|
715
978
|
};
|
|
716
|
-
readonly required: readonly ["sku", "provider", "region", "sub_region", "csp_region", "csp_zone", "instance_type", "architecture", "os", "vcpu", "memory", "local_storage", "price"];
|
|
717
979
|
readonly additionalProperties: false;
|
|
718
980
|
};
|
|
719
|
-
export declare const
|
|
981
|
+
export declare const MarketplaceListingSchema: {
|
|
720
982
|
readonly type: "object";
|
|
721
983
|
readonly properties: {
|
|
722
|
-
readonly
|
|
984
|
+
readonly name: {
|
|
723
985
|
readonly type: "string";
|
|
724
|
-
readonly description: "
|
|
725
|
-
readonly example: "
|
|
986
|
+
readonly description: "Name of the chart";
|
|
987
|
+
readonly example: "nginx-ingress";
|
|
726
988
|
};
|
|
727
|
-
readonly
|
|
989
|
+
readonly versions: {
|
|
990
|
+
readonly type: "array";
|
|
991
|
+
readonly items: {
|
|
992
|
+
readonly type: "string";
|
|
993
|
+
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-]+)*))?$";
|
|
994
|
+
readonly description: "Specific version of the chart";
|
|
995
|
+
readonly example: "1.18.2-cfke.45";
|
|
996
|
+
};
|
|
997
|
+
readonly description: "Available versions of the chart";
|
|
998
|
+
};
|
|
999
|
+
readonly version_channels: {
|
|
1000
|
+
readonly type: "array";
|
|
1001
|
+
readonly items: {
|
|
1002
|
+
readonly type: "string";
|
|
1003
|
+
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-]+)*))?$";
|
|
1004
|
+
readonly description: "Version channel pattern";
|
|
1005
|
+
readonly example: "1.18.x-cfke.x";
|
|
1006
|
+
};
|
|
1007
|
+
readonly description: "Version channels for the chart";
|
|
1008
|
+
};
|
|
1009
|
+
readonly latestVersion: {
|
|
728
1010
|
readonly type: "string";
|
|
729
|
-
readonly
|
|
730
|
-
readonly
|
|
731
|
-
readonly example: "e94d30ec-a2dd-4dcb-832c-ac2be144ba91";
|
|
1011
|
+
readonly description: "Latest version of the chart";
|
|
1012
|
+
readonly example: "1.18.2-cfke.45";
|
|
732
1013
|
};
|
|
733
|
-
readonly
|
|
1014
|
+
readonly metadata: {
|
|
1015
|
+
readonly type: "object";
|
|
1016
|
+
readonly properties: {
|
|
1017
|
+
readonly name: {
|
|
1018
|
+
readonly type: "string";
|
|
1019
|
+
readonly description: "Chart name from metadata";
|
|
1020
|
+
readonly example: "nginx-ingress";
|
|
1021
|
+
};
|
|
1022
|
+
readonly version: {
|
|
1023
|
+
readonly type: "string";
|
|
1024
|
+
readonly description: "Chart version from metadata";
|
|
1025
|
+
readonly example: "1.18.2-cfke.45";
|
|
1026
|
+
};
|
|
1027
|
+
readonly description: {
|
|
1028
|
+
readonly type: "string";
|
|
1029
|
+
readonly description: "Chart description";
|
|
1030
|
+
readonly example: "NGINX Ingress Controller for Kubernetes";
|
|
1031
|
+
};
|
|
1032
|
+
readonly appVersion: {
|
|
1033
|
+
readonly type: "string";
|
|
1034
|
+
readonly description: "Application version";
|
|
1035
|
+
readonly example: "1.9.4";
|
|
1036
|
+
};
|
|
1037
|
+
readonly apiVersion: {
|
|
1038
|
+
readonly type: "string";
|
|
1039
|
+
readonly description: "Helm API version";
|
|
1040
|
+
readonly example: "v2";
|
|
1041
|
+
};
|
|
1042
|
+
readonly keywords: {
|
|
1043
|
+
readonly type: "array";
|
|
1044
|
+
readonly items: {
|
|
1045
|
+
readonly type: "string";
|
|
1046
|
+
};
|
|
1047
|
+
readonly description: "Chart keywords";
|
|
1048
|
+
readonly example: readonly ["ingress", "nginx", "load-balancer"];
|
|
1049
|
+
};
|
|
1050
|
+
readonly home: {
|
|
1051
|
+
readonly type: "string";
|
|
1052
|
+
readonly description: "Chart home URL";
|
|
1053
|
+
readonly example: "https://kubernetes.github.io/ingress-nginx/";
|
|
1054
|
+
};
|
|
1055
|
+
readonly icon: {
|
|
1056
|
+
readonly type: "string";
|
|
1057
|
+
readonly description: "A URL to an SVG or PNG image to be used as an icon";
|
|
1058
|
+
readonly example: "https://cloudfleet.ai/images/marketplace/icons/ingress-nginx.png";
|
|
1059
|
+
};
|
|
1060
|
+
readonly sources: {
|
|
1061
|
+
readonly type: "array";
|
|
1062
|
+
readonly items: {
|
|
1063
|
+
readonly type: "string";
|
|
1064
|
+
};
|
|
1065
|
+
readonly description: "Chart source URLs";
|
|
1066
|
+
readonly example: readonly ["https://github.com/kubernetes/ingress-nginx"];
|
|
1067
|
+
};
|
|
1068
|
+
readonly maintainers: {
|
|
1069
|
+
readonly type: "array";
|
|
1070
|
+
readonly items: {
|
|
1071
|
+
readonly type: "object";
|
|
1072
|
+
readonly properties: {
|
|
1073
|
+
readonly name: {
|
|
1074
|
+
readonly type: "string";
|
|
1075
|
+
readonly description: "Maintainer name";
|
|
1076
|
+
readonly example: "NGINX Team";
|
|
1077
|
+
};
|
|
1078
|
+
readonly email: {
|
|
1079
|
+
readonly type: "string";
|
|
1080
|
+
readonly description: "Maintainer email";
|
|
1081
|
+
readonly example: "support@nginx.org";
|
|
1082
|
+
};
|
|
1083
|
+
};
|
|
1084
|
+
readonly required: readonly ["name"];
|
|
1085
|
+
readonly additionalProperties: false;
|
|
1086
|
+
};
|
|
1087
|
+
readonly description: "Chart maintainers";
|
|
1088
|
+
};
|
|
1089
|
+
};
|
|
1090
|
+
readonly required: readonly ["name", "version"];
|
|
1091
|
+
readonly additionalProperties: false;
|
|
1092
|
+
readonly description: "Chart metadata";
|
|
1093
|
+
};
|
|
1094
|
+
};
|
|
1095
|
+
readonly required: readonly ["name", "versions", "version_channels", "latestVersion"];
|
|
1096
|
+
readonly additionalProperties: false;
|
|
1097
|
+
};
|
|
1098
|
+
export declare const OrganizationCreateInputSchema: {
|
|
1099
|
+
readonly type: "object";
|
|
1100
|
+
readonly properties: {
|
|
1101
|
+
readonly type: {
|
|
734
1102
|
readonly type: "string";
|
|
735
|
-
readonly
|
|
736
|
-
readonly
|
|
737
|
-
readonly
|
|
1103
|
+
readonly description: "Type of the organization. `business` for legal entities, `personal` for individuals.";
|
|
1104
|
+
readonly example: "business";
|
|
1105
|
+
readonly enum: readonly ["business", "personal"];
|
|
738
1106
|
};
|
|
739
1107
|
readonly email: {
|
|
740
1108
|
readonly type: "string";
|
|
741
1109
|
readonly format: "email";
|
|
742
|
-
readonly description: "
|
|
1110
|
+
readonly description: "Email address used for billing as a string.";
|
|
743
1111
|
readonly example: "email@example.com";
|
|
744
1112
|
};
|
|
745
|
-
readonly
|
|
1113
|
+
readonly first_name: {
|
|
746
1114
|
readonly type: "string";
|
|
747
|
-
readonly
|
|
748
|
-
readonly
|
|
1115
|
+
readonly minLength: 1;
|
|
1116
|
+
readonly description: "First name of the billing contact person.";
|
|
1117
|
+
readonly example: "John";
|
|
1118
|
+
};
|
|
1119
|
+
readonly last_name: {
|
|
1120
|
+
readonly type: "string";
|
|
1121
|
+
readonly minLength: 1;
|
|
1122
|
+
readonly description: "Last name of the billing contact person.";
|
|
1123
|
+
readonly example: "Doe";
|
|
1124
|
+
};
|
|
1125
|
+
readonly company_name: {
|
|
1126
|
+
readonly type: "string";
|
|
1127
|
+
readonly maxLength: 120;
|
|
1128
|
+
readonly minLength: 2;
|
|
1129
|
+
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,}$";
|
|
1130
|
+
readonly description: "Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.";
|
|
1131
|
+
readonly example: "ACME Corp.";
|
|
1132
|
+
};
|
|
1133
|
+
readonly password: {
|
|
1134
|
+
readonly type: "string";
|
|
1135
|
+
readonly minLength: 8;
|
|
1136
|
+
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.";
|
|
749
1137
|
};
|
|
750
1138
|
};
|
|
751
|
-
readonly required: readonly ["
|
|
1139
|
+
readonly required: readonly ["type", "email", "first_name", "last_name", "company_name", "password"];
|
|
752
1140
|
readonly additionalProperties: false;
|
|
753
1141
|
};
|
|
754
|
-
export declare const
|
|
1142
|
+
export declare const OrganizationCreateOutputSchema: {
|
|
755
1143
|
readonly type: "object";
|
|
756
1144
|
readonly properties: {
|
|
757
1145
|
readonly id: {
|
|
758
1146
|
readonly type: "string";
|
|
759
|
-
readonly
|
|
760
|
-
readonly
|
|
761
|
-
readonly example: "415026b6-f00f-44f8-968d-fc6ef4d0fc6d";
|
|
1147
|
+
readonly description: "Unique identifier of the newly created organization. Generated by the API and safe to use for client-side tracking immediately.";
|
|
1148
|
+
readonly example: "organization-id";
|
|
762
1149
|
};
|
|
763
|
-
|
|
1150
|
+
};
|
|
1151
|
+
readonly required: readonly ["id"];
|
|
1152
|
+
readonly additionalProperties: false;
|
|
1153
|
+
};
|
|
1154
|
+
export declare const OrganizationSchema: {
|
|
1155
|
+
readonly type: "object";
|
|
1156
|
+
readonly properties: {
|
|
1157
|
+
readonly id: {
|
|
764
1158
|
readonly type: "string";
|
|
765
1159
|
readonly format: "uuid";
|
|
766
1160
|
readonly description: "Unique identifier of the organization. UUID v4 string in canonical form";
|
|
767
|
-
readonly example: "
|
|
1161
|
+
readonly example: "e94d30ec-a2dd-4dcb-832c-ac2be144ba91";
|
|
768
1162
|
};
|
|
769
|
-
readonly
|
|
1163
|
+
readonly name: {
|
|
770
1164
|
readonly type: "string";
|
|
771
|
-
readonly
|
|
772
|
-
readonly
|
|
773
|
-
readonly
|
|
1165
|
+
readonly maxLength: 120;
|
|
1166
|
+
readonly minLength: 2;
|
|
1167
|
+
readonly description: "Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.";
|
|
1168
|
+
readonly example: "ACME Corp.";
|
|
774
1169
|
};
|
|
775
|
-
readonly
|
|
776
|
-
readonly type: "
|
|
777
|
-
readonly
|
|
778
|
-
readonly
|
|
779
|
-
readonly
|
|
1170
|
+
readonly type: {
|
|
1171
|
+
readonly type: "string";
|
|
1172
|
+
readonly description: "Type of the organization. `business` for legal entities, `personal` for individuals.";
|
|
1173
|
+
readonly example: "business";
|
|
1174
|
+
readonly enum: readonly ["business", "personal"];
|
|
780
1175
|
};
|
|
781
|
-
readonly
|
|
1176
|
+
readonly date_created: {
|
|
782
1177
|
readonly type: "string";
|
|
783
|
-
readonly
|
|
784
|
-
readonly
|
|
785
|
-
readonly
|
|
1178
|
+
readonly format: "date-time";
|
|
1179
|
+
readonly description: "Creation date of the organization. ISO 8601 date string in UTC timezone";
|
|
1180
|
+
readonly example: "2023-11-02T16:08:14.338Z";
|
|
786
1181
|
};
|
|
787
|
-
readonly
|
|
788
|
-
readonly type: "
|
|
789
|
-
readonly
|
|
790
|
-
|
|
791
|
-
|
|
1182
|
+
readonly quota: {
|
|
1183
|
+
readonly type: "object";
|
|
1184
|
+
readonly properties: {
|
|
1185
|
+
readonly basic_clusters_max: {
|
|
1186
|
+
readonly type: "integer";
|
|
1187
|
+
readonly minimum: 0;
|
|
1188
|
+
readonly description: "Maximum number of Basic clusters that can be created.";
|
|
1189
|
+
readonly example: 999;
|
|
1190
|
+
};
|
|
1191
|
+
readonly basic_clusters_available: {
|
|
1192
|
+
readonly type: "integer";
|
|
1193
|
+
readonly description: "Available number of Basic clusters that can be created.";
|
|
1194
|
+
readonly example: 999;
|
|
1195
|
+
};
|
|
1196
|
+
readonly pro_clusters_max: {
|
|
1197
|
+
readonly type: "integer";
|
|
1198
|
+
readonly minimum: 0;
|
|
1199
|
+
readonly description: "Maximum number of Pro clusters that can be created.";
|
|
1200
|
+
readonly example: 999;
|
|
1201
|
+
};
|
|
1202
|
+
readonly pro_clusters_available: {
|
|
1203
|
+
readonly type: "integer";
|
|
1204
|
+
readonly description: "Available number of Pro clusters that can be created.";
|
|
1205
|
+
readonly example: 999;
|
|
1206
|
+
};
|
|
1207
|
+
readonly fleets_max: {
|
|
1208
|
+
readonly type: "integer";
|
|
1209
|
+
readonly minimum: 0;
|
|
1210
|
+
readonly description: "Maximum number of fleets that can be created per cluster.";
|
|
1211
|
+
readonly example: 999;
|
|
1212
|
+
};
|
|
1213
|
+
readonly cluster_tiers: {
|
|
1214
|
+
readonly type: "array";
|
|
1215
|
+
readonly items: {
|
|
1216
|
+
readonly type: "string";
|
|
1217
|
+
readonly example: "basic";
|
|
1218
|
+
};
|
|
1219
|
+
readonly minItems: 0;
|
|
1220
|
+
readonly description: "List of Cloudfleet cluster tiers available for the organization.";
|
|
1221
|
+
};
|
|
1222
|
+
readonly regions: {
|
|
1223
|
+
readonly type: "array";
|
|
1224
|
+
readonly items: {
|
|
1225
|
+
readonly type: "string";
|
|
1226
|
+
readonly example: "northamerica-central-1";
|
|
1227
|
+
};
|
|
1228
|
+
readonly minItems: 1;
|
|
1229
|
+
readonly description: "List of Cloudfleet control plane regions available for the organization.";
|
|
1230
|
+
};
|
|
1231
|
+
readonly versions: {
|
|
1232
|
+
readonly type: "array";
|
|
1233
|
+
readonly items: {
|
|
1234
|
+
readonly type: "object";
|
|
1235
|
+
readonly properties: {
|
|
1236
|
+
readonly id: {
|
|
1237
|
+
readonly type: "string";
|
|
1238
|
+
readonly description: "Id of the control plane version. Used in API calls.";
|
|
1239
|
+
readonly example: "1.33.x-cfke.x";
|
|
1240
|
+
};
|
|
1241
|
+
readonly label: {
|
|
1242
|
+
readonly type: "string";
|
|
1243
|
+
readonly description: "Label of the control plane version. Used in frontent UI.";
|
|
1244
|
+
readonly example: "1.33.x (Always latest 1.33 patch version)";
|
|
1245
|
+
};
|
|
1246
|
+
};
|
|
1247
|
+
readonly required: readonly ["id", "label"];
|
|
1248
|
+
readonly additionalProperties: false;
|
|
1249
|
+
};
|
|
1250
|
+
readonly minItems: 1;
|
|
1251
|
+
readonly description: "List of CFKE control plane versions available for the organization.";
|
|
1252
|
+
};
|
|
1253
|
+
readonly cfcr_storage_gb: {
|
|
1254
|
+
readonly type: "integer";
|
|
1255
|
+
readonly minimum: -1;
|
|
1256
|
+
readonly description: "Organization-level maximum CFCR storage volume in GB. -1 means no limit.";
|
|
1257
|
+
readonly example: 500;
|
|
1258
|
+
};
|
|
1259
|
+
};
|
|
1260
|
+
readonly required: readonly ["basic_clusters_max", "basic_clusters_available", "pro_clusters_max", "pro_clusters_available", "fleets_max", "cluster_tiers", "regions", "versions", "cfcr_storage_gb"];
|
|
1261
|
+
readonly additionalProperties: false;
|
|
1262
|
+
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.";
|
|
792
1263
|
};
|
|
793
|
-
readonly
|
|
794
|
-
readonly type: "
|
|
795
|
-
readonly
|
|
796
|
-
readonly
|
|
797
|
-
readonly example: 0;
|
|
1264
|
+
readonly status: {
|
|
1265
|
+
readonly type: "string";
|
|
1266
|
+
readonly description: "Status of the organization. Can be `active` or `closed`, or `suspended`.";
|
|
1267
|
+
readonly enum: readonly ["active", "closed", "suspended"];
|
|
798
1268
|
};
|
|
799
|
-
readonly
|
|
1269
|
+
readonly verification: {
|
|
800
1270
|
readonly type: "string";
|
|
801
|
-
readonly description: "
|
|
802
|
-
readonly example: "
|
|
1271
|
+
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.";
|
|
1272
|
+
readonly example: "verified";
|
|
1273
|
+
readonly enum: readonly ["none", "submitted", "verified"];
|
|
803
1274
|
};
|
|
804
|
-
|
|
1275
|
+
};
|
|
1276
|
+
readonly required: readonly ["id", "type", "date_created", "quota", "status", "verification"];
|
|
1277
|
+
readonly additionalProperties: false;
|
|
1278
|
+
};
|
|
1279
|
+
export declare const PaymentMethodSchema: {
|
|
1280
|
+
readonly type: "object";
|
|
1281
|
+
readonly properties: {
|
|
1282
|
+
readonly id: {
|
|
805
1283
|
readonly type: "string";
|
|
806
|
-
readonly description: "
|
|
807
|
-
readonly example: "
|
|
1284
|
+
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.";
|
|
1285
|
+
readonly example: "pm_1MtwBwLkdIwHu7ix28a3tqPa";
|
|
1286
|
+
};
|
|
1287
|
+
readonly type: {
|
|
1288
|
+
readonly type: "string";
|
|
1289
|
+
readonly description: "Payment method type. `card`, `sepa_debit` for SEPA Direct Debit (business accounts only), or `bank_transfer` for paying invoices by bank transfer.";
|
|
1290
|
+
readonly example: "card";
|
|
1291
|
+
readonly enum: readonly ["card", "sepa_debit", "bank_transfer"];
|
|
808
1292
|
};
|
|
809
|
-
readonly
|
|
1293
|
+
readonly last4: {
|
|
810
1294
|
readonly type: "string";
|
|
811
|
-
readonly
|
|
812
|
-
readonly
|
|
1295
|
+
readonly nullable: true;
|
|
1296
|
+
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.";
|
|
1297
|
+
readonly example: "4242";
|
|
813
1298
|
};
|
|
814
|
-
readonly
|
|
815
|
-
readonly type: "
|
|
816
|
-
readonly
|
|
817
|
-
readonly
|
|
818
|
-
readonly
|
|
1299
|
+
readonly exp_month: {
|
|
1300
|
+
readonly type: "integer";
|
|
1301
|
+
readonly minimum: 1;
|
|
1302
|
+
readonly maximum: 12;
|
|
1303
|
+
readonly nullable: true;
|
|
1304
|
+
readonly description: "Two-digit number representing the card's expiration month. Null for SEPA Direct Debit and bank transfer.";
|
|
1305
|
+
readonly example: 12;
|
|
819
1306
|
};
|
|
820
|
-
readonly
|
|
1307
|
+
readonly exp_year: {
|
|
1308
|
+
readonly type: "integer";
|
|
1309
|
+
readonly nullable: true;
|
|
1310
|
+
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.";
|
|
1311
|
+
readonly example: 2028;
|
|
1312
|
+
};
|
|
1313
|
+
readonly brand: {
|
|
821
1314
|
readonly type: "string";
|
|
822
|
-
readonly
|
|
823
|
-
readonly
|
|
1315
|
+
readonly nullable: true;
|
|
1316
|
+
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.";
|
|
1317
|
+
readonly example: "visa";
|
|
824
1318
|
};
|
|
825
|
-
readonly
|
|
1319
|
+
readonly iban: {
|
|
1320
|
+
readonly type: "string";
|
|
1321
|
+
readonly nullable: true;
|
|
1322
|
+
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.";
|
|
1323
|
+
readonly example: "DE11243015658023127510";
|
|
1324
|
+
};
|
|
1325
|
+
readonly bic: {
|
|
1326
|
+
readonly type: "string";
|
|
1327
|
+
readonly nullable: true;
|
|
1328
|
+
readonly description: "BIC/SWIFT of the destination bank for bank transfers. Set only for `bank_transfer`; null otherwise.";
|
|
1329
|
+
readonly example: "SOGEDEFFXXX";
|
|
1330
|
+
};
|
|
1331
|
+
readonly account_holder_name: {
|
|
1332
|
+
readonly type: "string";
|
|
1333
|
+
readonly nullable: true;
|
|
1334
|
+
readonly description: "Account holder name of the destination bank account for bank transfers. Set only for `bank_transfer`; null otherwise.";
|
|
1335
|
+
readonly example: "Cloudfleet GmbH";
|
|
1336
|
+
};
|
|
1337
|
+
readonly is_default: {
|
|
1338
|
+
readonly type: "boolean";
|
|
1339
|
+
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).";
|
|
1340
|
+
readonly example: true;
|
|
1341
|
+
};
|
|
1342
|
+
};
|
|
1343
|
+
readonly required: readonly ["id", "type", "last4", "exp_month", "exp_year", "brand", "iban", "bic", "account_holder_name", "is_default"];
|
|
1344
|
+
readonly additionalProperties: false;
|
|
1345
|
+
};
|
|
1346
|
+
export declare const PlatformQuotaSchema: {
|
|
1347
|
+
readonly type: "object";
|
|
1348
|
+
readonly properties: {
|
|
1349
|
+
readonly basic_clusters_max: {
|
|
1350
|
+
readonly type: "integer";
|
|
1351
|
+
readonly minimum: 0;
|
|
1352
|
+
readonly description: "Maximum number of Basic clusters that can be created.";
|
|
1353
|
+
readonly example: 999;
|
|
1354
|
+
};
|
|
1355
|
+
readonly basic_clusters_available: {
|
|
1356
|
+
readonly type: "integer";
|
|
1357
|
+
readonly description: "Available number of Basic clusters that can be created.";
|
|
1358
|
+
readonly example: 999;
|
|
1359
|
+
};
|
|
1360
|
+
readonly pro_clusters_max: {
|
|
1361
|
+
readonly type: "integer";
|
|
1362
|
+
readonly minimum: 0;
|
|
1363
|
+
readonly description: "Maximum number of Pro clusters that can be created.";
|
|
1364
|
+
readonly example: 999;
|
|
1365
|
+
};
|
|
1366
|
+
readonly pro_clusters_available: {
|
|
1367
|
+
readonly type: "integer";
|
|
1368
|
+
readonly description: "Available number of Pro clusters that can be created.";
|
|
1369
|
+
readonly example: 999;
|
|
1370
|
+
};
|
|
1371
|
+
readonly fleets_max: {
|
|
1372
|
+
readonly type: "integer";
|
|
1373
|
+
readonly minimum: 0;
|
|
1374
|
+
readonly description: "Maximum number of fleets that can be created per cluster.";
|
|
1375
|
+
readonly example: 999;
|
|
1376
|
+
};
|
|
1377
|
+
readonly cluster_tiers: {
|
|
826
1378
|
readonly type: "array";
|
|
827
1379
|
readonly items: {
|
|
828
|
-
readonly type: "
|
|
829
|
-
readonly
|
|
830
|
-
readonly id: {
|
|
831
|
-
readonly type: "string";
|
|
832
|
-
readonly format: "uuid";
|
|
833
|
-
readonly description: "Unique identifier of the invoice item. UUID v4 string in canonical form";
|
|
834
|
-
readonly example: "415026b6-f00f-44f8-968d-fc6ef4d0fc6d";
|
|
835
|
-
};
|
|
836
|
-
readonly linkedInvoiceItemId: {
|
|
837
|
-
readonly type: "string";
|
|
838
|
-
readonly format: "uuid";
|
|
839
|
-
readonly description: "Unique identifier of the linked invoice item. UUID v4 string in canonical form";
|
|
840
|
-
readonly example: "415026b6-f00f-44f8-968d-fc6ef4d0fc6d";
|
|
841
|
-
};
|
|
842
|
-
readonly productName: {
|
|
843
|
-
readonly type: "string";
|
|
844
|
-
readonly description: "Name of the product";
|
|
845
|
-
readonly example: "Research team";
|
|
846
|
-
};
|
|
847
|
-
readonly planName: {
|
|
848
|
-
readonly type: "string";
|
|
849
|
-
readonly description: "Name of the plan";
|
|
850
|
-
readonly example: "Plan A";
|
|
851
|
-
};
|
|
852
|
-
readonly phaseName: {
|
|
853
|
-
readonly type: "string";
|
|
854
|
-
readonly description: "Name of the phase";
|
|
855
|
-
readonly example: "Phase A";
|
|
856
|
-
};
|
|
857
|
-
readonly usageName: {
|
|
858
|
-
readonly type: "string";
|
|
859
|
-
readonly description: "Name of the usage";
|
|
860
|
-
readonly example: "Usage A";
|
|
861
|
-
};
|
|
862
|
-
readonly prettyProductName: {
|
|
863
|
-
readonly type: "string";
|
|
864
|
-
readonly description: "Pretty name of the product";
|
|
865
|
-
readonly example: "Research team";
|
|
866
|
-
};
|
|
867
|
-
readonly prettyPlanName: {
|
|
868
|
-
readonly type: "string";
|
|
869
|
-
readonly description: "Pretty name of the plan";
|
|
870
|
-
readonly example: "Plan A";
|
|
871
|
-
};
|
|
872
|
-
readonly prettyPhaseName: {
|
|
873
|
-
readonly type: "string";
|
|
874
|
-
readonly description: "Pretty name of the phase";
|
|
875
|
-
readonly example: "Phase A";
|
|
876
|
-
};
|
|
877
|
-
readonly prettyUsageName: {
|
|
878
|
-
readonly type: "string";
|
|
879
|
-
readonly description: "Pretty name of the usage";
|
|
880
|
-
readonly example: "Usage A";
|
|
881
|
-
};
|
|
882
|
-
readonly itemType: {
|
|
883
|
-
readonly type: "string";
|
|
884
|
-
readonly description: "Type of the invoice item";
|
|
885
|
-
readonly example: "EXTERNAL_CHARGE";
|
|
886
|
-
readonly enum: readonly ["EXTERNAL_CHARGE", "FIXED", "RECURRING", "REPAIR_ADJ", "CBA_ADJ", "CREDIT_ADJ", "ITEM_ADJ", "USAGE", "TAX", "PARENT_SUMMARY"];
|
|
887
|
-
};
|
|
888
|
-
readonly description: {
|
|
889
|
-
readonly type: "string";
|
|
890
|
-
readonly description: "Description of the invoice item";
|
|
891
|
-
readonly example: "Description of the invoice item";
|
|
892
|
-
};
|
|
893
|
-
readonly startDate: {
|
|
894
|
-
readonly type: "string";
|
|
895
|
-
readonly description: "Start date of the invoice item";
|
|
896
|
-
readonly example: "2019-01-01T00:00:00.000Z";
|
|
897
|
-
};
|
|
898
|
-
readonly endDate: {
|
|
899
|
-
readonly type: "string";
|
|
900
|
-
readonly description: "End date of the invoice item";
|
|
901
|
-
readonly example: "2019-01-01T00:00:00.000Z";
|
|
902
|
-
};
|
|
903
|
-
readonly amount: {
|
|
904
|
-
readonly type: "number";
|
|
905
|
-
readonly format: "float";
|
|
906
|
-
readonly description: "Amount of the invoice item";
|
|
907
|
-
readonly example: 100;
|
|
908
|
-
};
|
|
909
|
-
readonly rate: {
|
|
910
|
-
readonly type: "number";
|
|
911
|
-
readonly format: "float";
|
|
912
|
-
readonly description: "Rate of the invoice item";
|
|
913
|
-
readonly example: 100;
|
|
914
|
-
};
|
|
915
|
-
readonly currency: {
|
|
916
|
-
readonly type: "string";
|
|
917
|
-
readonly description: "Currency of the invoice item";
|
|
918
|
-
readonly example: "USD";
|
|
919
|
-
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"];
|
|
920
|
-
};
|
|
921
|
-
readonly quantity: {
|
|
922
|
-
readonly type: "number";
|
|
923
|
-
readonly format: "float";
|
|
924
|
-
readonly description: "Quantity of the invoice item";
|
|
925
|
-
readonly example: 1;
|
|
926
|
-
};
|
|
927
|
-
readonly itemDetails: {
|
|
928
|
-
readonly type: "string";
|
|
929
|
-
readonly description: "Details of the invoice item";
|
|
930
|
-
readonly example: "Details of the invoice item";
|
|
931
|
-
};
|
|
932
|
-
readonly catalogEffectiveDate: {
|
|
933
|
-
readonly type: "string";
|
|
934
|
-
readonly description: "Effective date of the catalog";
|
|
935
|
-
readonly example: "2019-01-01T00:00:00.000Z";
|
|
936
|
-
};
|
|
937
|
-
readonly childItems: {
|
|
938
|
-
readonly type: "array";
|
|
939
|
-
readonly items: {
|
|
940
|
-
readonly oneOf: readonly [{
|
|
941
|
-
readonly type: "array";
|
|
942
|
-
}, {
|
|
943
|
-
readonly type: "boolean";
|
|
944
|
-
}, {
|
|
945
|
-
readonly type: "number";
|
|
946
|
-
}, {
|
|
947
|
-
readonly type: "object";
|
|
948
|
-
readonly additionalProperties: true;
|
|
949
|
-
}, {
|
|
950
|
-
readonly type: "string";
|
|
951
|
-
}];
|
|
952
|
-
};
|
|
953
|
-
readonly description: "Child items of the invoice item";
|
|
954
|
-
};
|
|
955
|
-
};
|
|
956
|
-
readonly additionalProperties: false;
|
|
1380
|
+
readonly type: "string";
|
|
1381
|
+
readonly example: "basic";
|
|
957
1382
|
};
|
|
958
|
-
readonly
|
|
1383
|
+
readonly minItems: 0;
|
|
1384
|
+
readonly description: "List of Cloudfleet cluster tiers available for the organization.";
|
|
959
1385
|
};
|
|
960
|
-
readonly
|
|
1386
|
+
readonly regions: {
|
|
1387
|
+
readonly type: "array";
|
|
1388
|
+
readonly items: {
|
|
1389
|
+
readonly type: "string";
|
|
1390
|
+
readonly example: "northamerica-central-1";
|
|
1391
|
+
};
|
|
1392
|
+
readonly minItems: 1;
|
|
1393
|
+
readonly description: "List of Cloudfleet control plane regions available for the organization.";
|
|
1394
|
+
};
|
|
1395
|
+
readonly versions: {
|
|
961
1396
|
readonly type: "array";
|
|
962
1397
|
readonly items: {
|
|
963
1398
|
readonly type: "object";
|
|
964
1399
|
readonly properties: {
|
|
965
1400
|
readonly id: {
|
|
966
1401
|
readonly type: "string";
|
|
967
|
-
readonly
|
|
968
|
-
readonly
|
|
969
|
-
readonly example: "415026b6-f00f-44f8-968d-fc6ef4d0fc6d";
|
|
970
|
-
};
|
|
971
|
-
readonly linkedInvoiceItemId: {
|
|
972
|
-
readonly type: "string";
|
|
973
|
-
readonly format: "uuid";
|
|
974
|
-
readonly description: "Unique identifier of the linked invoice item. UUID v4 string in canonical form";
|
|
975
|
-
readonly example: "415026b6-f00f-44f8-968d-fc6ef4d0fc6d";
|
|
976
|
-
};
|
|
977
|
-
readonly productName: {
|
|
978
|
-
readonly type: "string";
|
|
979
|
-
readonly description: "Name of the product";
|
|
980
|
-
readonly example: "Research team";
|
|
981
|
-
};
|
|
982
|
-
readonly planName: {
|
|
983
|
-
readonly type: "string";
|
|
984
|
-
readonly description: "Name of the plan";
|
|
985
|
-
readonly example: "Plan A";
|
|
986
|
-
};
|
|
987
|
-
readonly phaseName: {
|
|
988
|
-
readonly type: "string";
|
|
989
|
-
readonly description: "Name of the phase";
|
|
990
|
-
readonly example: "Phase A";
|
|
991
|
-
};
|
|
992
|
-
readonly usageName: {
|
|
993
|
-
readonly type: "string";
|
|
994
|
-
readonly description: "Name of the usage";
|
|
995
|
-
readonly example: "Usage A";
|
|
996
|
-
};
|
|
997
|
-
readonly prettyProductName: {
|
|
998
|
-
readonly type: "string";
|
|
999
|
-
readonly description: "Pretty name of the product";
|
|
1000
|
-
readonly example: "Research team";
|
|
1001
|
-
};
|
|
1002
|
-
readonly prettyPlanName: {
|
|
1003
|
-
readonly type: "string";
|
|
1004
|
-
readonly description: "Pretty name of the plan";
|
|
1005
|
-
readonly example: "Plan A";
|
|
1006
|
-
};
|
|
1007
|
-
readonly prettyPhaseName: {
|
|
1008
|
-
readonly type: "string";
|
|
1009
|
-
readonly description: "Pretty name of the phase";
|
|
1010
|
-
readonly example: "Phase A";
|
|
1011
|
-
};
|
|
1012
|
-
readonly prettyUsageName: {
|
|
1013
|
-
readonly type: "string";
|
|
1014
|
-
readonly description: "Pretty name of the usage";
|
|
1015
|
-
readonly example: "Usage A";
|
|
1402
|
+
readonly description: "Id of the control plane version. Used in API calls.";
|
|
1403
|
+
readonly example: "1.33.x-cfke.x";
|
|
1016
1404
|
};
|
|
1017
|
-
readonly
|
|
1405
|
+
readonly label: {
|
|
1018
1406
|
readonly type: "string";
|
|
1019
|
-
readonly description: "
|
|
1020
|
-
readonly example: "
|
|
1021
|
-
readonly enum: readonly ["EXTERNAL_CHARGE", "FIXED", "RECURRING", "REPAIR_ADJ", "CBA_ADJ", "CREDIT_ADJ", "ITEM_ADJ", "USAGE", "TAX", "PARENT_SUMMARY"];
|
|
1407
|
+
readonly description: "Label of the control plane version. Used in frontent UI.";
|
|
1408
|
+
readonly example: "1.33.x (Always latest 1.33 patch version)";
|
|
1022
1409
|
};
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1410
|
+
};
|
|
1411
|
+
readonly required: readonly ["id", "label"];
|
|
1412
|
+
readonly additionalProperties: false;
|
|
1413
|
+
};
|
|
1414
|
+
readonly minItems: 1;
|
|
1415
|
+
readonly description: "List of CFKE control plane versions available for the organization.";
|
|
1416
|
+
};
|
|
1417
|
+
readonly cfcr_storage_gb: {
|
|
1418
|
+
readonly type: "integer";
|
|
1419
|
+
readonly minimum: -1;
|
|
1420
|
+
readonly description: "Organization-level maximum CFCR storage volume in GB. -1 means no limit.";
|
|
1421
|
+
readonly example: 500;
|
|
1422
|
+
};
|
|
1423
|
+
};
|
|
1424
|
+
readonly required: readonly ["basic_clusters_max", "basic_clusters_available", "pro_clusters_max", "pro_clusters_available", "fleets_max", "cluster_tiers", "regions", "versions", "cfcr_storage_gb"];
|
|
1425
|
+
readonly additionalProperties: false;
|
|
1426
|
+
};
|
|
1427
|
+
export declare const RegistryRepositorySchema: {
|
|
1428
|
+
readonly type: "object";
|
|
1429
|
+
readonly properties: {
|
|
1430
|
+
readonly name: {
|
|
1431
|
+
readonly type: "string";
|
|
1432
|
+
readonly description: "Repository name.";
|
|
1433
|
+
readonly example: "my-app";
|
|
1434
|
+
};
|
|
1435
|
+
readonly region: {
|
|
1436
|
+
readonly type: "string";
|
|
1437
|
+
readonly description: "Registry region.";
|
|
1438
|
+
readonly example: "northamerica";
|
|
1439
|
+
};
|
|
1440
|
+
readonly uri: {
|
|
1441
|
+
readonly type: "string";
|
|
1442
|
+
readonly description: "Full URI of the repository.";
|
|
1443
|
+
readonly example: "ssds123e-6651-4e5d-9c04-079f6532989b.northamerica.registry.cloudfleet.dev/my-app";
|
|
1444
|
+
};
|
|
1445
|
+
};
|
|
1446
|
+
readonly required: readonly ["name", "region", "uri"];
|
|
1447
|
+
readonly additionalProperties: false;
|
|
1448
|
+
};
|
|
1449
|
+
export declare const RegistryRepositoryWithTagsSchema: {
|
|
1450
|
+
readonly type: "object";
|
|
1451
|
+
readonly properties: {
|
|
1452
|
+
readonly name: {
|
|
1453
|
+
readonly type: "string";
|
|
1454
|
+
readonly description: "Repository name.";
|
|
1455
|
+
readonly example: "my-app";
|
|
1456
|
+
};
|
|
1457
|
+
readonly region: {
|
|
1458
|
+
readonly type: "string";
|
|
1459
|
+
readonly description: "Registry region.";
|
|
1460
|
+
readonly example: "northamerica";
|
|
1461
|
+
};
|
|
1462
|
+
readonly uri: {
|
|
1463
|
+
readonly type: "string";
|
|
1464
|
+
readonly description: "Full URI of the repository.";
|
|
1465
|
+
readonly example: "ssds123e-6651-4e5d-9c04-079f6532989b.northamerica.registry.cloudfleet.dev/my-app";
|
|
1466
|
+
};
|
|
1467
|
+
readonly tags: {
|
|
1468
|
+
readonly type: "array";
|
|
1469
|
+
readonly items: {
|
|
1470
|
+
readonly type: "object";
|
|
1471
|
+
readonly properties: {
|
|
1472
|
+
readonly name: {
|
|
1051
1473
|
readonly type: "string";
|
|
1052
|
-
readonly description: "
|
|
1053
|
-
readonly example: "
|
|
1054
|
-
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"];
|
|
1474
|
+
readonly description: "Tag name.";
|
|
1475
|
+
readonly example: "latest";
|
|
1055
1476
|
};
|
|
1056
|
-
readonly
|
|
1477
|
+
readonly size: {
|
|
1057
1478
|
readonly type: "number";
|
|
1058
1479
|
readonly format: "float";
|
|
1059
|
-
readonly description: "
|
|
1060
|
-
readonly example:
|
|
1061
|
-
};
|
|
1062
|
-
readonly itemDetails: {
|
|
1063
|
-
readonly type: "string";
|
|
1064
|
-
readonly description: "Details of the invoice item";
|
|
1065
|
-
readonly example: "Details of the invoice item";
|
|
1480
|
+
readonly description: "Size of the tag in bytes.";
|
|
1481
|
+
readonly example: 123456789;
|
|
1066
1482
|
};
|
|
1067
|
-
readonly
|
|
1483
|
+
readonly mediaType: {
|
|
1068
1484
|
readonly type: "string";
|
|
1069
|
-
readonly description: "
|
|
1070
|
-
readonly example: "
|
|
1485
|
+
readonly description: "Media type of the manifest.";
|
|
1486
|
+
readonly example: "application/vnd.docker.distribution.manifest.v2+json";
|
|
1071
1487
|
};
|
|
1072
|
-
readonly
|
|
1488
|
+
readonly platforms: {
|
|
1073
1489
|
readonly type: "array";
|
|
1074
1490
|
readonly items: {
|
|
1075
|
-
readonly
|
|
1076
|
-
readonly type: "array";
|
|
1077
|
-
}, {
|
|
1078
|
-
readonly type: "boolean";
|
|
1079
|
-
}, {
|
|
1080
|
-
readonly type: "number";
|
|
1081
|
-
}, {
|
|
1082
|
-
readonly type: "object";
|
|
1083
|
-
readonly additionalProperties: true;
|
|
1084
|
-
}, {
|
|
1085
|
-
readonly type: "string";
|
|
1086
|
-
}];
|
|
1491
|
+
readonly type: "string";
|
|
1087
1492
|
};
|
|
1088
|
-
readonly description: "
|
|
1493
|
+
readonly description: "Array of platform strings for multi-arch images (e.g., linux/amd64, linux/arm64).";
|
|
1494
|
+
readonly example: readonly ["linux/amd64", "linux/arm64"];
|
|
1089
1495
|
};
|
|
1090
1496
|
};
|
|
1497
|
+
readonly required: readonly ["name", "size"];
|
|
1091
1498
|
readonly additionalProperties: false;
|
|
1092
1499
|
};
|
|
1093
|
-
readonly description: "
|
|
1500
|
+
readonly description: "Array of tags in the repository.";
|
|
1501
|
+
};
|
|
1502
|
+
readonly totalSize: {
|
|
1503
|
+
readonly type: "number";
|
|
1504
|
+
readonly format: "float";
|
|
1505
|
+
readonly description: "Total size of all tags in the repository in bytes.";
|
|
1506
|
+
readonly example: 987654321;
|
|
1094
1507
|
};
|
|
1095
1508
|
};
|
|
1509
|
+
readonly required: readonly ["name", "region", "uri", "tags", "totalSize"];
|
|
1096
1510
|
readonly additionalProperties: false;
|
|
1097
1511
|
};
|
|
1098
|
-
export declare const
|
|
1512
|
+
export declare const RegistryTagSchema: {
|
|
1099
1513
|
readonly type: "object";
|
|
1100
1514
|
readonly properties: {
|
|
1101
|
-
readonly
|
|
1515
|
+
readonly name: {
|
|
1102
1516
|
readonly type: "string";
|
|
1103
|
-
readonly
|
|
1104
|
-
readonly
|
|
1105
|
-
readonly example: "123 Main St.";
|
|
1517
|
+
readonly description: "Tag name.";
|
|
1518
|
+
readonly example: "latest";
|
|
1106
1519
|
};
|
|
1107
|
-
readonly
|
|
1520
|
+
readonly digest: {
|
|
1108
1521
|
readonly type: "string";
|
|
1109
|
-
readonly
|
|
1110
|
-
readonly
|
|
1111
|
-
readonly example: "Suite 100";
|
|
1522
|
+
readonly description: "Manifest digest for pulling by digest.";
|
|
1523
|
+
readonly example: "sha256:abcd1234ef567890abcd1234ef567890abcd1234ef567890abcd1234ef567890";
|
|
1112
1524
|
};
|
|
1113
|
-
readonly
|
|
1525
|
+
readonly mediaType: {
|
|
1114
1526
|
readonly type: "string";
|
|
1115
|
-
readonly
|
|
1116
|
-
readonly
|
|
1117
|
-
readonly example: "94105";
|
|
1527
|
+
readonly description: "Media type of the manifest.";
|
|
1528
|
+
readonly example: "application/vnd.docker.distribution.manifest.v2+json";
|
|
1118
1529
|
};
|
|
1119
|
-
readonly
|
|
1120
|
-
readonly type: "
|
|
1121
|
-
readonly
|
|
1122
|
-
|
|
1123
|
-
|
|
1530
|
+
readonly config: {
|
|
1531
|
+
readonly type: "object";
|
|
1532
|
+
readonly properties: {
|
|
1533
|
+
readonly size: {
|
|
1534
|
+
readonly type: "number";
|
|
1535
|
+
readonly format: "float";
|
|
1536
|
+
readonly description: "Size of the config in bytes.";
|
|
1537
|
+
readonly example: 1234;
|
|
1538
|
+
};
|
|
1539
|
+
};
|
|
1540
|
+
readonly required: readonly ["size"];
|
|
1541
|
+
readonly additionalProperties: false;
|
|
1542
|
+
readonly description: "Manifest config metadata.";
|
|
1124
1543
|
};
|
|
1125
|
-
readonly
|
|
1126
|
-
readonly type: "
|
|
1127
|
-
readonly
|
|
1128
|
-
|
|
1129
|
-
|
|
1544
|
+
readonly layers: {
|
|
1545
|
+
readonly type: "array";
|
|
1546
|
+
readonly items: {
|
|
1547
|
+
readonly type: "object";
|
|
1548
|
+
readonly properties: {
|
|
1549
|
+
readonly digest: {
|
|
1550
|
+
readonly type: "string";
|
|
1551
|
+
readonly description: "Digest of the layer.";
|
|
1552
|
+
readonly example: "sha256:abcd1234ef567890abcd1234ef567890abcd1234ef567890abcd1234ef567890";
|
|
1553
|
+
};
|
|
1554
|
+
readonly size: {
|
|
1555
|
+
readonly type: "number";
|
|
1556
|
+
readonly format: "float";
|
|
1557
|
+
readonly description: "Size of the layer in bytes.";
|
|
1558
|
+
readonly example: 5678;
|
|
1559
|
+
};
|
|
1560
|
+
};
|
|
1561
|
+
readonly required: readonly ["size"];
|
|
1562
|
+
readonly additionalProperties: false;
|
|
1563
|
+
};
|
|
1564
|
+
readonly description: "Array of layer metadata.";
|
|
1130
1565
|
};
|
|
1131
|
-
readonly
|
|
1132
|
-
readonly type: "
|
|
1133
|
-
readonly
|
|
1134
|
-
|
|
1135
|
-
|
|
1566
|
+
readonly manifests: {
|
|
1567
|
+
readonly type: "array";
|
|
1568
|
+
readonly items: {
|
|
1569
|
+
readonly type: "object";
|
|
1570
|
+
readonly properties: {
|
|
1571
|
+
readonly digest: {
|
|
1572
|
+
readonly type: "string";
|
|
1573
|
+
readonly description: "Digest of the manifest.";
|
|
1574
|
+
readonly example: "sha256:abcd1234ef567890abcd1234ef567890abcd1234ef567890abcd1234ef567890";
|
|
1575
|
+
};
|
|
1576
|
+
readonly platform: {
|
|
1577
|
+
readonly type: "object";
|
|
1578
|
+
readonly properties: {
|
|
1579
|
+
readonly architecture: {
|
|
1580
|
+
readonly type: "string";
|
|
1581
|
+
readonly description: "Architecture of the platform.";
|
|
1582
|
+
readonly example: "amd64";
|
|
1583
|
+
};
|
|
1584
|
+
readonly os: {
|
|
1585
|
+
readonly type: "string";
|
|
1586
|
+
readonly description: "Operating system of the platform.";
|
|
1587
|
+
readonly example: "linux";
|
|
1588
|
+
};
|
|
1589
|
+
readonly variant: {
|
|
1590
|
+
readonly type: "string";
|
|
1591
|
+
readonly description: "Variant of the platform (e.g., v7, v8 for ARM).";
|
|
1592
|
+
readonly example: "v8";
|
|
1593
|
+
};
|
|
1594
|
+
};
|
|
1595
|
+
readonly required: readonly ["architecture", "os"];
|
|
1596
|
+
readonly additionalProperties: false;
|
|
1597
|
+
readonly description: "Platform information for the manifest.";
|
|
1598
|
+
};
|
|
1599
|
+
readonly layers: {
|
|
1600
|
+
readonly type: "array";
|
|
1601
|
+
readonly items: {
|
|
1602
|
+
readonly type: "object";
|
|
1603
|
+
readonly properties: {
|
|
1604
|
+
readonly digest: {
|
|
1605
|
+
readonly type: "string";
|
|
1606
|
+
readonly description: "Digest of the layer.";
|
|
1607
|
+
readonly example: "sha256:abcd1234ef567890abcd1234ef567890abcd1234ef567890abcd1234ef567890";
|
|
1608
|
+
};
|
|
1609
|
+
readonly size: {
|
|
1610
|
+
readonly type: "number";
|
|
1611
|
+
readonly format: "float";
|
|
1612
|
+
readonly description: "Size of the layer in bytes.";
|
|
1613
|
+
readonly example: 5678;
|
|
1614
|
+
};
|
|
1615
|
+
};
|
|
1616
|
+
readonly required: readonly ["size"];
|
|
1617
|
+
readonly additionalProperties: false;
|
|
1618
|
+
};
|
|
1619
|
+
readonly description: "Layers for this platform.";
|
|
1620
|
+
};
|
|
1621
|
+
readonly size: {
|
|
1622
|
+
readonly type: "number";
|
|
1623
|
+
readonly format: "float";
|
|
1624
|
+
readonly description: "Total size of this platform manifest in bytes.";
|
|
1625
|
+
readonly example: 12345678;
|
|
1626
|
+
};
|
|
1627
|
+
};
|
|
1628
|
+
readonly required: readonly ["digest"];
|
|
1629
|
+
readonly additionalProperties: false;
|
|
1630
|
+
};
|
|
1631
|
+
readonly description: "Array of manifests for multi-arch images.";
|
|
1136
1632
|
};
|
|
1137
|
-
readonly
|
|
1138
|
-
readonly type: "
|
|
1139
|
-
readonly
|
|
1140
|
-
readonly description: "
|
|
1141
|
-
readonly example:
|
|
1633
|
+
readonly size: {
|
|
1634
|
+
readonly type: "number";
|
|
1635
|
+
readonly format: "float";
|
|
1636
|
+
readonly description: "Total size of the tag in bytes.";
|
|
1637
|
+
readonly example: 123456789;
|
|
1142
1638
|
};
|
|
1143
|
-
readonly
|
|
1639
|
+
readonly region: {
|
|
1144
1640
|
readonly type: "string";
|
|
1145
|
-
readonly
|
|
1146
|
-
readonly
|
|
1147
|
-
readonly example: "email@example.com";
|
|
1641
|
+
readonly description: "Registry region.";
|
|
1642
|
+
readonly example: "northamerica";
|
|
1148
1643
|
};
|
|
1149
|
-
readonly
|
|
1644
|
+
readonly repository: {
|
|
1150
1645
|
readonly type: "string";
|
|
1151
|
-
readonly description: "
|
|
1152
|
-
readonly example: "
|
|
1646
|
+
readonly description: "Repository name.";
|
|
1647
|
+
readonly example: "my-app";
|
|
1153
1648
|
};
|
|
1154
|
-
readonly
|
|
1649
|
+
readonly uri: {
|
|
1155
1650
|
readonly type: "string";
|
|
1156
|
-
readonly description: "
|
|
1157
|
-
readonly example: "
|
|
1651
|
+
readonly description: "Full URI of the tag.";
|
|
1652
|
+
readonly example: "ssds123e-6651-4e5d-9c04-079f6532989b.northamerica.registry.cloudfleet.dev/my-app:latest";
|
|
1158
1653
|
};
|
|
1159
1654
|
};
|
|
1160
|
-
readonly required: readonly ["
|
|
1655
|
+
readonly required: readonly ["name", "digest", "size", "region", "repository", "uri"];
|
|
1161
1656
|
readonly additionalProperties: false;
|
|
1162
1657
|
};
|
|
1163
|
-
export declare const
|
|
1658
|
+
export declare const TicketAttachmentSchema: {
|
|
1164
1659
|
readonly type: "object";
|
|
1165
1660
|
readonly properties: {
|
|
1166
|
-
readonly
|
|
1661
|
+
readonly id: {
|
|
1167
1662
|
readonly type: "string";
|
|
1168
|
-
readonly
|
|
1169
|
-
readonly
|
|
1170
|
-
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,}$";
|
|
1171
|
-
readonly description: "Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.";
|
|
1172
|
-
readonly example: "ACME Corp.";
|
|
1663
|
+
readonly description: "Unique identifier of the attachment (Mongo ObjectId).";
|
|
1664
|
+
readonly example: "60c72b2f9f1b2c001f8e4d3c";
|
|
1173
1665
|
};
|
|
1174
|
-
readonly
|
|
1175
|
-
readonly type: "
|
|
1176
|
-
readonly
|
|
1177
|
-
|
|
1178
|
-
readonly type: "string";
|
|
1179
|
-
readonly description: "Street address, P.O. box, c/o";
|
|
1180
|
-
readonly example: "123 Main St.";
|
|
1181
|
-
};
|
|
1182
|
-
readonly address2: {
|
|
1183
|
-
readonly type: "string";
|
|
1184
|
-
readonly description: "Apartment, suite, unit, building, floor, etc.";
|
|
1185
|
-
readonly example: "Suite 100";
|
|
1186
|
-
};
|
|
1187
|
-
readonly postalCode: {
|
|
1188
|
-
readonly type: "string";
|
|
1189
|
-
readonly description: "Postal code as a string.";
|
|
1190
|
-
readonly example: "94105";
|
|
1191
|
-
};
|
|
1192
|
-
readonly city: {
|
|
1193
|
-
readonly type: "string";
|
|
1194
|
-
readonly description: "City or town name.";
|
|
1195
|
-
readonly example: "San Francisco";
|
|
1196
|
-
};
|
|
1197
|
-
readonly state: {
|
|
1198
|
-
readonly type: "string";
|
|
1199
|
-
readonly description: "State, province, or region name.";
|
|
1200
|
-
readonly example: "CA";
|
|
1201
|
-
};
|
|
1202
|
-
readonly country: {
|
|
1203
|
-
readonly type: "string";
|
|
1204
|
-
readonly description: "Country as a ISO 3166-1 alpha-2 country code.";
|
|
1205
|
-
readonly example: "US";
|
|
1206
|
-
};
|
|
1207
|
-
readonly phone: {
|
|
1208
|
-
readonly type: "string";
|
|
1209
|
-
readonly description: "Phone number as a string.";
|
|
1210
|
-
readonly example: "+1 555 555 5555";
|
|
1211
|
-
};
|
|
1212
|
-
readonly email: {
|
|
1213
|
-
readonly type: "string";
|
|
1214
|
-
readonly format: "email";
|
|
1215
|
-
readonly description: "Email address used for billing as a string.";
|
|
1216
|
-
readonly example: "email@example.com";
|
|
1217
|
-
};
|
|
1218
|
-
readonly first_name: {
|
|
1219
|
-
readonly type: "string";
|
|
1220
|
-
readonly description: "First name of the billing contact person.";
|
|
1221
|
-
readonly example: "John";
|
|
1222
|
-
};
|
|
1223
|
-
readonly last_name: {
|
|
1224
|
-
readonly type: "string";
|
|
1225
|
-
readonly description: "Last name of the billing contact person.";
|
|
1226
|
-
readonly example: "Doe";
|
|
1227
|
-
};
|
|
1228
|
-
};
|
|
1229
|
-
readonly required: readonly ["email", "first_name", "last_name"];
|
|
1230
|
-
readonly additionalProperties: false;
|
|
1231
|
-
readonly description: "Organization contact information and billing address.";
|
|
1666
|
+
readonly filename: {
|
|
1667
|
+
readonly type: "string";
|
|
1668
|
+
readonly description: "Original filename as uploaded.";
|
|
1669
|
+
readonly example: "debug.log";
|
|
1232
1670
|
};
|
|
1233
|
-
readonly
|
|
1671
|
+
readonly content_type: {
|
|
1234
1672
|
readonly type: "string";
|
|
1235
|
-
readonly
|
|
1236
|
-
readonly
|
|
1673
|
+
readonly description: "MIME content type of the attachment.";
|
|
1674
|
+
readonly example: "text/plain";
|
|
1675
|
+
};
|
|
1676
|
+
readonly size: {
|
|
1677
|
+
readonly type: "integer";
|
|
1678
|
+
readonly description: "Size of the attachment in bytes.";
|
|
1679
|
+
readonly example: 12345;
|
|
1237
1680
|
};
|
|
1238
1681
|
};
|
|
1239
|
-
readonly required: readonly ["
|
|
1682
|
+
readonly required: readonly ["id", "filename", "content_type", "size"];
|
|
1240
1683
|
readonly additionalProperties: false;
|
|
1241
1684
|
};
|
|
1242
|
-
export declare const
|
|
1685
|
+
export declare const TicketCreateInputSchema: {
|
|
1243
1686
|
readonly type: "object";
|
|
1244
1687
|
readonly properties: {
|
|
1245
|
-
readonly
|
|
1246
|
-
readonly type: "string";
|
|
1247
|
-
readonly maxLength: 120;
|
|
1248
|
-
readonly minLength: 2;
|
|
1249
|
-
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,}$";
|
|
1250
|
-
readonly description: "Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.";
|
|
1251
|
-
readonly example: "ACME Corp.";
|
|
1252
|
-
};
|
|
1253
|
-
readonly contactInfo: {
|
|
1254
|
-
readonly type: "object";
|
|
1255
|
-
readonly properties: {
|
|
1256
|
-
readonly address1: {
|
|
1257
|
-
readonly type: "string";
|
|
1258
|
-
readonly description: "Street address, P.O. box, c/o";
|
|
1259
|
-
readonly example: "123 Main St.";
|
|
1260
|
-
};
|
|
1261
|
-
readonly address2: {
|
|
1262
|
-
readonly type: "string";
|
|
1263
|
-
readonly description: "Apartment, suite, unit, building, floor, etc.";
|
|
1264
|
-
readonly example: "Suite 100";
|
|
1265
|
-
};
|
|
1266
|
-
readonly postalCode: {
|
|
1267
|
-
readonly type: "string";
|
|
1268
|
-
readonly description: "Postal code as a string.";
|
|
1269
|
-
readonly example: "94105";
|
|
1270
|
-
};
|
|
1271
|
-
readonly city: {
|
|
1272
|
-
readonly type: "string";
|
|
1273
|
-
readonly description: "City or town name.";
|
|
1274
|
-
readonly example: "San Francisco";
|
|
1275
|
-
};
|
|
1276
|
-
readonly state: {
|
|
1277
|
-
readonly type: "string";
|
|
1278
|
-
readonly description: "State, province, or region name.";
|
|
1279
|
-
readonly example: "CA";
|
|
1280
|
-
};
|
|
1281
|
-
readonly country: {
|
|
1282
|
-
readonly type: "string";
|
|
1283
|
-
readonly description: "Country as a ISO 3166-1 alpha-2 country code.";
|
|
1284
|
-
readonly example: "US";
|
|
1285
|
-
};
|
|
1286
|
-
readonly phone: {
|
|
1287
|
-
readonly type: "string";
|
|
1288
|
-
readonly description: "Phone number as a string.";
|
|
1289
|
-
readonly example: "+1 555 555 5555";
|
|
1290
|
-
};
|
|
1291
|
-
readonly email: {
|
|
1292
|
-
readonly type: "string";
|
|
1293
|
-
readonly format: "email";
|
|
1294
|
-
readonly description: "Email address used for billing as a string.";
|
|
1295
|
-
readonly example: "email@example.com";
|
|
1296
|
-
};
|
|
1297
|
-
readonly first_name: {
|
|
1298
|
-
readonly type: "string";
|
|
1299
|
-
readonly description: "First name of the billing contact person.";
|
|
1300
|
-
readonly example: "John";
|
|
1301
|
-
};
|
|
1302
|
-
readonly last_name: {
|
|
1303
|
-
readonly type: "string";
|
|
1304
|
-
readonly description: "Last name of the billing contact person.";
|
|
1305
|
-
readonly example: "Doe";
|
|
1306
|
-
};
|
|
1307
|
-
};
|
|
1308
|
-
readonly required: readonly ["email", "first_name", "last_name"];
|
|
1309
|
-
readonly additionalProperties: false;
|
|
1310
|
-
readonly description: "Organization contact information and billing address.";
|
|
1311
|
-
};
|
|
1312
|
-
readonly id: {
|
|
1688
|
+
readonly category: {
|
|
1313
1689
|
readonly type: "string";
|
|
1314
|
-
readonly
|
|
1315
|
-
readonly
|
|
1316
|
-
readonly
|
|
1690
|
+
readonly description: "Ticket category. Drives auto-assignment and may carry a subcategory in `properties`.";
|
|
1691
|
+
readonly example: "technical";
|
|
1692
|
+
readonly enum: readonly ["billing", "technical", "general"];
|
|
1317
1693
|
};
|
|
1318
|
-
readonly
|
|
1694
|
+
readonly body: {
|
|
1319
1695
|
readonly type: "string";
|
|
1320
|
-
readonly
|
|
1321
|
-
readonly
|
|
1322
|
-
readonly
|
|
1696
|
+
readonly maxLength: 50000;
|
|
1697
|
+
readonly minLength: 1;
|
|
1698
|
+
readonly pattern: "\\S";
|
|
1699
|
+
readonly description: "Initial message body in markdown. There is no separate subject — the first message body is the description.";
|
|
1700
|
+
readonly example: "My cluster cannot reach the registry. Logs attached.";
|
|
1323
1701
|
};
|
|
1324
|
-
readonly
|
|
1702
|
+
readonly properties: {
|
|
1325
1703
|
readonly type: "object";
|
|
1326
|
-
readonly
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
readonly
|
|
1345
|
-
readonly
|
|
1346
|
-
readonly description: "Available number of Pro clusters that can be created.";
|
|
1347
|
-
readonly example: 999;
|
|
1348
|
-
};
|
|
1349
|
-
readonly fleets_max: {
|
|
1350
|
-
readonly type: "integer";
|
|
1351
|
-
readonly minimum: 0;
|
|
1352
|
-
readonly description: "Maximum number of fleets that can be created per cluster.";
|
|
1353
|
-
readonly example: 999;
|
|
1354
|
-
};
|
|
1355
|
-
readonly managed_fleets_cpu_max: {
|
|
1356
|
-
readonly type: "integer";
|
|
1357
|
-
readonly minimum: 0;
|
|
1358
|
-
readonly description: "Maximum number of CPU cores per managed fleet.";
|
|
1359
|
-
readonly example: 999;
|
|
1360
|
-
};
|
|
1361
|
-
readonly cluster_tiers: {
|
|
1362
|
-
readonly type: "array";
|
|
1363
|
-
readonly items: {
|
|
1704
|
+
readonly additionalProperties: true;
|
|
1705
|
+
readonly description: "Free-form key/value bag set by the UI (e.g. `subcategory`, `cluster_id`, `cluster_name`, `region`).";
|
|
1706
|
+
readonly example: {
|
|
1707
|
+
readonly subcategory: "cluster-question";
|
|
1708
|
+
readonly cluster_id: "60c72b2f9f1b2c001f8e4d3a";
|
|
1709
|
+
};
|
|
1710
|
+
};
|
|
1711
|
+
};
|
|
1712
|
+
readonly required: readonly ["category", "body"];
|
|
1713
|
+
readonly additionalProperties: false;
|
|
1714
|
+
};
|
|
1715
|
+
export declare const TicketListResponseSchema: {
|
|
1716
|
+
readonly type: "object";
|
|
1717
|
+
readonly properties: {
|
|
1718
|
+
readonly items: {
|
|
1719
|
+
readonly type: "array";
|
|
1720
|
+
readonly items: {
|
|
1721
|
+
readonly type: "object";
|
|
1722
|
+
readonly properties: {
|
|
1723
|
+
readonly id: {
|
|
1364
1724
|
readonly type: "string";
|
|
1365
|
-
readonly
|
|
1725
|
+
readonly description: "Unique identifier of the ticket (Mongo ObjectId).";
|
|
1726
|
+
readonly example: "60c72b2f9f1b2c001f8e4d3a";
|
|
1366
1727
|
};
|
|
1367
|
-
readonly
|
|
1368
|
-
readonly description: "List of Cloudfleet cluster tiers available for the organization.";
|
|
1369
|
-
};
|
|
1370
|
-
readonly regions: {
|
|
1371
|
-
readonly type: "array";
|
|
1372
|
-
readonly items: {
|
|
1728
|
+
readonly status: {
|
|
1373
1729
|
readonly type: "string";
|
|
1374
|
-
readonly
|
|
1730
|
+
readonly description: "Current state of the ticket.";
|
|
1731
|
+
readonly example: "waiting_on_us";
|
|
1732
|
+
readonly enum: readonly ["waiting_on_us", "waiting_on_user", "closed"];
|
|
1375
1733
|
};
|
|
1376
|
-
readonly
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
readonly
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
|
|
1392
|
-
|
|
1734
|
+
readonly category: {
|
|
1735
|
+
readonly type: "string";
|
|
1736
|
+
readonly description: "Ticket category.";
|
|
1737
|
+
readonly example: "technical";
|
|
1738
|
+
readonly enum: readonly ["billing", "technical", "general"];
|
|
1739
|
+
};
|
|
1740
|
+
readonly summary: {
|
|
1741
|
+
readonly type: "string";
|
|
1742
|
+
readonly description: "First 128 characters of the initial message body, with markdown formatting and newlines stripped. Used for ticket list previews.";
|
|
1743
|
+
readonly example: "My cluster cannot reach the registry. Logs attached.";
|
|
1744
|
+
};
|
|
1745
|
+
readonly closed_at: {
|
|
1746
|
+
readonly type: "string";
|
|
1747
|
+
readonly format: "date-time";
|
|
1748
|
+
readonly nullable: true;
|
|
1749
|
+
readonly description: "Closure timestamp. Null while the ticket is open.";
|
|
1750
|
+
readonly example: "2026-05-18T16:08:14.338Z";
|
|
1751
|
+
};
|
|
1752
|
+
readonly date_created: {
|
|
1753
|
+
readonly type: "string";
|
|
1754
|
+
readonly format: "date-time";
|
|
1755
|
+
readonly description: "Creation date of the ticket. ISO 8601 UTC.";
|
|
1756
|
+
readonly example: "2026-05-11T16:08:14.338Z";
|
|
1757
|
+
};
|
|
1758
|
+
readonly date_updated: {
|
|
1759
|
+
readonly type: "string";
|
|
1760
|
+
readonly format: "date-time";
|
|
1761
|
+
readonly description: "Last update date of the ticket. ISO 8601 UTC.";
|
|
1762
|
+
readonly example: "2026-05-11T16:08:14.338Z";
|
|
1763
|
+
};
|
|
1764
|
+
readonly messages: {
|
|
1765
|
+
readonly type: "array";
|
|
1766
|
+
readonly items: {
|
|
1767
|
+
readonly type: "object";
|
|
1768
|
+
readonly properties: {
|
|
1769
|
+
readonly id: {
|
|
1770
|
+
readonly type: "string";
|
|
1771
|
+
readonly description: "Unique identifier of the message (Mongo ObjectId).";
|
|
1772
|
+
readonly example: "60c72b2f9f1b2c001f8e4d3b";
|
|
1773
|
+
};
|
|
1774
|
+
readonly type: {
|
|
1775
|
+
readonly type: "string";
|
|
1776
|
+
readonly description: "Message type. Internal notes are filtered out of customer-facing responses.";
|
|
1777
|
+
readonly example: "customer_reply";
|
|
1778
|
+
readonly enum: readonly ["customer_reply", "agent_reply"];
|
|
1779
|
+
};
|
|
1780
|
+
readonly body: {
|
|
1781
|
+
readonly type: "string";
|
|
1782
|
+
readonly description: "Message body in markdown.";
|
|
1783
|
+
readonly example: "Thanks — that resolved it on my side.";
|
|
1784
|
+
};
|
|
1785
|
+
readonly author_first_name: {
|
|
1786
|
+
readonly type: "string";
|
|
1787
|
+
readonly nullable: true;
|
|
1788
|
+
readonly description: "First name of the author. Null when not provided.";
|
|
1789
|
+
readonly example: "Jane";
|
|
1790
|
+
};
|
|
1791
|
+
readonly author_last_name: {
|
|
1792
|
+
readonly type: "string";
|
|
1793
|
+
readonly nullable: true;
|
|
1794
|
+
readonly description: "Last name of the author. Null when not provided.";
|
|
1795
|
+
readonly example: "Doe";
|
|
1796
|
+
};
|
|
1797
|
+
readonly attachments: {
|
|
1798
|
+
readonly type: "array";
|
|
1799
|
+
readonly items: {
|
|
1800
|
+
readonly type: "object";
|
|
1801
|
+
readonly properties: {
|
|
1802
|
+
readonly id: {
|
|
1803
|
+
readonly type: "string";
|
|
1804
|
+
readonly description: "Unique identifier of the attachment (Mongo ObjectId).";
|
|
1805
|
+
readonly example: "60c72b2f9f1b2c001f8e4d3c";
|
|
1806
|
+
};
|
|
1807
|
+
readonly filename: {
|
|
1808
|
+
readonly type: "string";
|
|
1809
|
+
readonly description: "Original filename as uploaded.";
|
|
1810
|
+
readonly example: "debug.log";
|
|
1811
|
+
};
|
|
1812
|
+
readonly content_type: {
|
|
1813
|
+
readonly type: "string";
|
|
1814
|
+
readonly description: "MIME content type of the attachment.";
|
|
1815
|
+
readonly example: "text/plain";
|
|
1816
|
+
};
|
|
1817
|
+
readonly size: {
|
|
1818
|
+
readonly type: "integer";
|
|
1819
|
+
readonly description: "Size of the attachment in bytes.";
|
|
1820
|
+
readonly example: 12345;
|
|
1821
|
+
};
|
|
1822
|
+
};
|
|
1823
|
+
readonly required: readonly ["id", "filename", "content_type", "size"];
|
|
1824
|
+
readonly additionalProperties: false;
|
|
1825
|
+
};
|
|
1826
|
+
readonly description: "Attachments associated with this message.";
|
|
1827
|
+
readonly example: readonly [];
|
|
1828
|
+
};
|
|
1829
|
+
readonly date_created: {
|
|
1830
|
+
readonly type: "string";
|
|
1831
|
+
readonly format: "date-time";
|
|
1832
|
+
readonly description: "Creation date of the message. ISO 8601 UTC.";
|
|
1833
|
+
readonly example: "2026-05-11T16:08:14.338Z";
|
|
1834
|
+
};
|
|
1393
1835
|
};
|
|
1836
|
+
readonly required: readonly ["id", "type", "body", "date_created"];
|
|
1837
|
+
readonly additionalProperties: false;
|
|
1394
1838
|
};
|
|
1395
|
-
readonly
|
|
1396
|
-
readonly additionalProperties: false;
|
|
1839
|
+
readonly description: "Messages on the ticket in chronological order. Internal notes are excluded. Returned by the detail endpoint only.";
|
|
1397
1840
|
};
|
|
1398
|
-
readonly minItems: 1;
|
|
1399
|
-
readonly description: "List of CFKE control plane versions available for the organization.";
|
|
1400
1841
|
};
|
|
1842
|
+
readonly required: readonly ["id", "status", "category", "summary", "date_created", "date_updated"];
|
|
1843
|
+
readonly additionalProperties: false;
|
|
1401
1844
|
};
|
|
1402
|
-
readonly
|
|
1403
|
-
readonly additionalProperties: false;
|
|
1404
|
-
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.";
|
|
1405
|
-
};
|
|
1406
|
-
readonly pending_actions: {
|
|
1407
|
-
readonly type: "array";
|
|
1408
|
-
readonly items: {
|
|
1409
|
-
readonly type: "string";
|
|
1410
|
-
readonly example: "signup-payment-method";
|
|
1411
|
-
readonly enum: readonly ["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"];
|
|
1412
|
-
};
|
|
1413
|
-
readonly description: "List of pending actions that the user needs to complete. Used in Cloudfleet console to guide the user through the onboarding process.";
|
|
1845
|
+
readonly description: "Tickets for the organization, ordered newest first. Messages are omitted from list responses.";
|
|
1414
1846
|
};
|
|
1415
|
-
|
|
1847
|
+
};
|
|
1848
|
+
readonly required: readonly ["items"];
|
|
1849
|
+
readonly additionalProperties: false;
|
|
1850
|
+
};
|
|
1851
|
+
export declare const TicketMessageInputSchema: {
|
|
1852
|
+
readonly type: "object";
|
|
1853
|
+
readonly properties: {
|
|
1854
|
+
readonly body: {
|
|
1416
1855
|
readonly type: "string";
|
|
1417
|
-
readonly
|
|
1418
|
-
readonly
|
|
1856
|
+
readonly maxLength: 50000;
|
|
1857
|
+
readonly minLength: 1;
|
|
1858
|
+
readonly pattern: "\\S";
|
|
1859
|
+
readonly description: "Reply body in markdown.";
|
|
1860
|
+
readonly example: "Thanks — that resolved it on my side.";
|
|
1419
1861
|
};
|
|
1420
1862
|
};
|
|
1421
|
-
readonly required: readonly ["
|
|
1863
|
+
readonly required: readonly ["body"];
|
|
1422
1864
|
readonly additionalProperties: false;
|
|
1423
1865
|
};
|
|
1424
|
-
export declare const
|
|
1866
|
+
export declare const TicketMessageSchema: {
|
|
1425
1867
|
readonly type: "object";
|
|
1426
1868
|
readonly properties: {
|
|
1427
|
-
readonly
|
|
1869
|
+
readonly id: {
|
|
1428
1870
|
readonly type: "string";
|
|
1429
|
-
readonly
|
|
1430
|
-
readonly
|
|
1431
|
-
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,}$";
|
|
1432
|
-
readonly description: "Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.";
|
|
1433
|
-
readonly example: "ACME Corp.";
|
|
1871
|
+
readonly description: "Unique identifier of the message (Mongo ObjectId).";
|
|
1872
|
+
readonly example: "60c72b2f9f1b2c001f8e4d3b";
|
|
1434
1873
|
};
|
|
1435
|
-
readonly
|
|
1436
|
-
readonly type: "
|
|
1437
|
-
readonly
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
readonly
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
readonly
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
readonly
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
readonly
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
readonly description: "First name of the billing contact person.";
|
|
1482
|
-
readonly example: "John";
|
|
1483
|
-
};
|
|
1484
|
-
readonly last_name: {
|
|
1485
|
-
readonly type: "string";
|
|
1486
|
-
readonly description: "Last name of the billing contact person.";
|
|
1487
|
-
readonly example: "Doe";
|
|
1874
|
+
readonly type: {
|
|
1875
|
+
readonly type: "string";
|
|
1876
|
+
readonly description: "Message type. Internal notes are filtered out of customer-facing responses.";
|
|
1877
|
+
readonly example: "customer_reply";
|
|
1878
|
+
readonly enum: readonly ["customer_reply", "agent_reply"];
|
|
1879
|
+
};
|
|
1880
|
+
readonly body: {
|
|
1881
|
+
readonly type: "string";
|
|
1882
|
+
readonly description: "Message body in markdown.";
|
|
1883
|
+
readonly example: "Thanks — that resolved it on my side.";
|
|
1884
|
+
};
|
|
1885
|
+
readonly author_first_name: {
|
|
1886
|
+
readonly type: "string";
|
|
1887
|
+
readonly description: "First name of the author. Null when not provided.";
|
|
1888
|
+
readonly example: "Jane";
|
|
1889
|
+
};
|
|
1890
|
+
readonly author_last_name: {
|
|
1891
|
+
readonly type: "string";
|
|
1892
|
+
readonly description: "Last name of the author. Null when not provided.";
|
|
1893
|
+
readonly example: "Doe";
|
|
1894
|
+
};
|
|
1895
|
+
readonly attachments: {
|
|
1896
|
+
readonly type: "array";
|
|
1897
|
+
readonly items: {
|
|
1898
|
+
readonly type: "object";
|
|
1899
|
+
readonly properties: {
|
|
1900
|
+
readonly id: {
|
|
1901
|
+
readonly type: "string";
|
|
1902
|
+
readonly description: "Unique identifier of the attachment (Mongo ObjectId).";
|
|
1903
|
+
readonly example: "60c72b2f9f1b2c001f8e4d3c";
|
|
1904
|
+
};
|
|
1905
|
+
readonly filename: {
|
|
1906
|
+
readonly type: "string";
|
|
1907
|
+
readonly description: "Original filename as uploaded.";
|
|
1908
|
+
readonly example: "debug.log";
|
|
1909
|
+
};
|
|
1910
|
+
readonly content_type: {
|
|
1911
|
+
readonly type: "string";
|
|
1912
|
+
readonly description: "MIME content type of the attachment.";
|
|
1913
|
+
readonly example: "text/plain";
|
|
1914
|
+
};
|
|
1915
|
+
readonly size: {
|
|
1916
|
+
readonly type: "integer";
|
|
1917
|
+
readonly description: "Size of the attachment in bytes.";
|
|
1918
|
+
readonly example: 12345;
|
|
1919
|
+
};
|
|
1488
1920
|
};
|
|
1921
|
+
readonly required: readonly ["id", "filename", "content_type", "size"];
|
|
1922
|
+
readonly additionalProperties: false;
|
|
1489
1923
|
};
|
|
1490
|
-
readonly
|
|
1491
|
-
readonly
|
|
1492
|
-
|
|
1924
|
+
readonly description: "Attachments associated with this message.";
|
|
1925
|
+
readonly example: readonly [];
|
|
1926
|
+
};
|
|
1927
|
+
readonly date_created: {
|
|
1928
|
+
readonly type: "string";
|
|
1929
|
+
readonly format: "date-time";
|
|
1930
|
+
readonly description: "Creation date of the message. ISO 8601 UTC.";
|
|
1931
|
+
readonly example: "2026-05-11T16:08:14.338Z";
|
|
1493
1932
|
};
|
|
1494
1933
|
};
|
|
1495
|
-
readonly required: readonly ["
|
|
1934
|
+
readonly required: readonly ["id", "type", "body", "date_created"];
|
|
1496
1935
|
readonly additionalProperties: false;
|
|
1497
1936
|
};
|
|
1498
|
-
export declare const
|
|
1937
|
+
export declare const TicketSchema: {
|
|
1499
1938
|
readonly type: "object";
|
|
1500
1939
|
readonly properties: {
|
|
1501
1940
|
readonly id: {
|
|
1502
1941
|
readonly type: "string";
|
|
1503
|
-
readonly
|
|
1504
|
-
readonly
|
|
1505
|
-
readonly example: "e94d30ec-a2dd-4dcb-832c-ac2be144ba91";
|
|
1942
|
+
readonly description: "Unique identifier of the ticket (Mongo ObjectId).";
|
|
1943
|
+
readonly example: "60c72b2f9f1b2c001f8e4d3a";
|
|
1506
1944
|
};
|
|
1507
|
-
readonly
|
|
1508
|
-
readonly type: "
|
|
1509
|
-
readonly description: "
|
|
1510
|
-
readonly example:
|
|
1945
|
+
readonly status: {
|
|
1946
|
+
readonly type: "string";
|
|
1947
|
+
readonly description: "Current state of the ticket.";
|
|
1948
|
+
readonly example: "waiting_on_us";
|
|
1949
|
+
readonly enum: readonly ["waiting_on_us", "waiting_on_user", "closed"];
|
|
1511
1950
|
};
|
|
1512
|
-
readonly
|
|
1951
|
+
readonly category: {
|
|
1513
1952
|
readonly type: "string";
|
|
1514
|
-
readonly
|
|
1515
|
-
readonly
|
|
1516
|
-
readonly
|
|
1517
|
-
readonly enum: readonly ["card"];
|
|
1953
|
+
readonly description: "Ticket category.";
|
|
1954
|
+
readonly example: "technical";
|
|
1955
|
+
readonly enum: readonly ["billing", "technical", "general"];
|
|
1518
1956
|
};
|
|
1519
|
-
readonly
|
|
1957
|
+
readonly summary: {
|
|
1520
1958
|
readonly type: "string";
|
|
1521
|
-
readonly
|
|
1522
|
-
readonly
|
|
1523
|
-
readonly example: "4242";
|
|
1959
|
+
readonly description: "First 128 characters of the initial message body, with markdown formatting and newlines stripped. Used for ticket list previews.";
|
|
1960
|
+
readonly example: "My cluster cannot reach the registry. Logs attached.";
|
|
1524
1961
|
};
|
|
1525
|
-
readonly
|
|
1526
|
-
readonly type: "
|
|
1527
|
-
readonly
|
|
1528
|
-
readonly
|
|
1529
|
-
readonly
|
|
1530
|
-
readonly description: "Two-digit number representing the card's expiration month.";
|
|
1531
|
-
readonly example: "12";
|
|
1962
|
+
readonly closed_at: {
|
|
1963
|
+
readonly type: "string";
|
|
1964
|
+
readonly format: "date-time";
|
|
1965
|
+
readonly description: "Closure timestamp. Null while the ticket is open.";
|
|
1966
|
+
readonly example: "2026-05-18T16:08:14.338Z";
|
|
1532
1967
|
};
|
|
1533
|
-
readonly
|
|
1534
|
-
readonly type: "
|
|
1535
|
-
readonly
|
|
1536
|
-
readonly
|
|
1537
|
-
readonly
|
|
1538
|
-
readonly example: "2028";
|
|
1968
|
+
readonly date_created: {
|
|
1969
|
+
readonly type: "string";
|
|
1970
|
+
readonly format: "date-time";
|
|
1971
|
+
readonly description: "Creation date of the ticket. ISO 8601 UTC.";
|
|
1972
|
+
readonly example: "2026-05-11T16:08:14.338Z";
|
|
1539
1973
|
};
|
|
1540
|
-
readonly
|
|
1974
|
+
readonly date_updated: {
|
|
1541
1975
|
readonly type: "string";
|
|
1542
|
-
readonly
|
|
1543
|
-
readonly description: "
|
|
1544
|
-
readonly example: "
|
|
1545
|
-
|
|
1976
|
+
readonly format: "date-time";
|
|
1977
|
+
readonly description: "Last update date of the ticket. ISO 8601 UTC.";
|
|
1978
|
+
readonly example: "2026-05-11T16:08:14.338Z";
|
|
1979
|
+
};
|
|
1980
|
+
readonly messages: {
|
|
1981
|
+
readonly type: "array";
|
|
1982
|
+
readonly items: {
|
|
1983
|
+
readonly type: "object";
|
|
1984
|
+
readonly properties: {
|
|
1985
|
+
readonly id: {
|
|
1986
|
+
readonly type: "string";
|
|
1987
|
+
readonly description: "Unique identifier of the message (Mongo ObjectId).";
|
|
1988
|
+
readonly example: "60c72b2f9f1b2c001f8e4d3b";
|
|
1989
|
+
};
|
|
1990
|
+
readonly type: {
|
|
1991
|
+
readonly type: "string";
|
|
1992
|
+
readonly description: "Message type. Internal notes are filtered out of customer-facing responses.";
|
|
1993
|
+
readonly example: "customer_reply";
|
|
1994
|
+
readonly enum: readonly ["customer_reply", "agent_reply"];
|
|
1995
|
+
};
|
|
1996
|
+
readonly body: {
|
|
1997
|
+
readonly type: "string";
|
|
1998
|
+
readonly description: "Message body in markdown.";
|
|
1999
|
+
readonly example: "Thanks — that resolved it on my side.";
|
|
2000
|
+
};
|
|
2001
|
+
readonly author_first_name: {
|
|
2002
|
+
readonly type: "string";
|
|
2003
|
+
readonly description: "First name of the author. Null when not provided.";
|
|
2004
|
+
readonly example: "Jane";
|
|
2005
|
+
};
|
|
2006
|
+
readonly author_last_name: {
|
|
2007
|
+
readonly type: "string";
|
|
2008
|
+
readonly description: "Last name of the author. Null when not provided.";
|
|
2009
|
+
readonly example: "Doe";
|
|
2010
|
+
};
|
|
2011
|
+
readonly attachments: {
|
|
2012
|
+
readonly type: "array";
|
|
2013
|
+
readonly items: {
|
|
2014
|
+
readonly type: "object";
|
|
2015
|
+
readonly properties: {
|
|
2016
|
+
readonly id: {
|
|
2017
|
+
readonly type: "string";
|
|
2018
|
+
readonly description: "Unique identifier of the attachment (Mongo ObjectId).";
|
|
2019
|
+
readonly example: "60c72b2f9f1b2c001f8e4d3c";
|
|
2020
|
+
};
|
|
2021
|
+
readonly filename: {
|
|
2022
|
+
readonly type: "string";
|
|
2023
|
+
readonly description: "Original filename as uploaded.";
|
|
2024
|
+
readonly example: "debug.log";
|
|
2025
|
+
};
|
|
2026
|
+
readonly content_type: {
|
|
2027
|
+
readonly type: "string";
|
|
2028
|
+
readonly description: "MIME content type of the attachment.";
|
|
2029
|
+
readonly example: "text/plain";
|
|
2030
|
+
};
|
|
2031
|
+
readonly size: {
|
|
2032
|
+
readonly type: "integer";
|
|
2033
|
+
readonly description: "Size of the attachment in bytes.";
|
|
2034
|
+
readonly example: 12345;
|
|
2035
|
+
};
|
|
2036
|
+
};
|
|
2037
|
+
readonly required: readonly ["id", "filename", "content_type", "size"];
|
|
2038
|
+
readonly additionalProperties: false;
|
|
2039
|
+
};
|
|
2040
|
+
readonly description: "Attachments associated with this message.";
|
|
2041
|
+
readonly example: readonly [];
|
|
2042
|
+
};
|
|
2043
|
+
readonly date_created: {
|
|
2044
|
+
readonly type: "string";
|
|
2045
|
+
readonly format: "date-time";
|
|
2046
|
+
readonly description: "Creation date of the message. ISO 8601 UTC.";
|
|
2047
|
+
readonly example: "2026-05-11T16:08:14.338Z";
|
|
2048
|
+
};
|
|
2049
|
+
};
|
|
2050
|
+
readonly required: readonly ["id", "type", "body", "date_created"];
|
|
2051
|
+
readonly additionalProperties: false;
|
|
2052
|
+
};
|
|
2053
|
+
readonly description: "Messages on the ticket in chronological order. Internal notes are excluded. Returned by the detail endpoint only.";
|
|
1546
2054
|
};
|
|
1547
2055
|
};
|
|
1548
|
-
readonly required: readonly ["id", "
|
|
2056
|
+
readonly required: readonly ["id", "status", "category", "summary", "date_created", "date_updated"];
|
|
1549
2057
|
readonly additionalProperties: false;
|
|
1550
2058
|
};
|
|
1551
2059
|
export declare const TokenCreateInputSchema: {
|
|
@@ -1626,32 +2134,138 @@ export declare const TokenUpdateInputSchema: {
|
|
|
1626
2134
|
};
|
|
1627
2135
|
readonly additionalProperties: false;
|
|
1628
2136
|
};
|
|
2137
|
+
export declare const UsageFacetsSchema: {
|
|
2138
|
+
readonly type: "object";
|
|
2139
|
+
readonly properties: {
|
|
2140
|
+
readonly cluster_id: {
|
|
2141
|
+
readonly type: "array";
|
|
2142
|
+
readonly items: {
|
|
2143
|
+
readonly type: "string";
|
|
2144
|
+
};
|
|
2145
|
+
readonly description: "List of unique cluster IDs";
|
|
2146
|
+
readonly example: readonly ["6b5439b1-923a-4f2b-a371-d554e5ea23fa"];
|
|
2147
|
+
};
|
|
2148
|
+
readonly product: {
|
|
2149
|
+
readonly type: "array";
|
|
2150
|
+
readonly items: {
|
|
2151
|
+
readonly type: "string";
|
|
2152
|
+
};
|
|
2153
|
+
readonly description: "List of unique products";
|
|
2154
|
+
readonly example: readonly ["cfke_controlplane", "cfke_connected_nodes"];
|
|
2155
|
+
};
|
|
2156
|
+
};
|
|
2157
|
+
readonly additionalProperties: false;
|
|
2158
|
+
};
|
|
2159
|
+
export declare const UsageResponseSchema: {
|
|
2160
|
+
readonly type: "object";
|
|
2161
|
+
readonly properties: {
|
|
2162
|
+
readonly data: {
|
|
2163
|
+
readonly type: "array";
|
|
2164
|
+
readonly items: {
|
|
2165
|
+
readonly type: "object";
|
|
2166
|
+
readonly properties: {
|
|
2167
|
+
readonly hour: {
|
|
2168
|
+
readonly type: "string";
|
|
2169
|
+
readonly description: "Hour of the usage";
|
|
2170
|
+
readonly example: "2019-01-01T00:00:00.000Z";
|
|
2171
|
+
};
|
|
2172
|
+
readonly cluster_id: {
|
|
2173
|
+
readonly type: "string";
|
|
2174
|
+
readonly description: "Unique identifier of the kubernetes cluster. UUID v4 string in canonical form";
|
|
2175
|
+
readonly example: "6b5439b1-923a-4f2b-a371-d554e5ea23fa";
|
|
2176
|
+
};
|
|
2177
|
+
readonly product: {
|
|
2178
|
+
readonly type: "string";
|
|
2179
|
+
readonly description: "The product the usage is associated with";
|
|
2180
|
+
readonly example: "cfke_controlplane";
|
|
2181
|
+
};
|
|
2182
|
+
readonly value: {
|
|
2183
|
+
readonly type: "number";
|
|
2184
|
+
readonly format: "float";
|
|
2185
|
+
readonly description: "Consumption";
|
|
2186
|
+
readonly example: 4;
|
|
2187
|
+
};
|
|
2188
|
+
readonly price: {
|
|
2189
|
+
readonly type: "number";
|
|
2190
|
+
readonly format: "float";
|
|
2191
|
+
readonly description: "Price per unit";
|
|
2192
|
+
readonly example: 0.01;
|
|
2193
|
+
};
|
|
2194
|
+
readonly total: {
|
|
2195
|
+
readonly type: "number";
|
|
2196
|
+
readonly format: "float";
|
|
2197
|
+
readonly description: "Total cost";
|
|
2198
|
+
};
|
|
2199
|
+
};
|
|
2200
|
+
readonly required: readonly ["hour", "cluster_id", "product", "value", "price", "total"];
|
|
2201
|
+
readonly additionalProperties: false;
|
|
2202
|
+
};
|
|
2203
|
+
readonly description: "Usage data";
|
|
2204
|
+
};
|
|
2205
|
+
readonly facets: {
|
|
2206
|
+
readonly type: "object";
|
|
2207
|
+
readonly properties: {
|
|
2208
|
+
readonly cluster_id: {
|
|
2209
|
+
readonly type: "array";
|
|
2210
|
+
readonly items: {
|
|
2211
|
+
readonly type: "string";
|
|
2212
|
+
};
|
|
2213
|
+
readonly description: "List of unique cluster IDs";
|
|
2214
|
+
readonly example: readonly ["6b5439b1-923a-4f2b-a371-d554e5ea23fa"];
|
|
2215
|
+
};
|
|
2216
|
+
readonly product: {
|
|
2217
|
+
readonly type: "array";
|
|
2218
|
+
readonly items: {
|
|
2219
|
+
readonly type: "string";
|
|
2220
|
+
};
|
|
2221
|
+
readonly description: "List of unique products";
|
|
2222
|
+
readonly example: readonly ["cfke_controlplane", "cfke_connected_nodes"];
|
|
2223
|
+
};
|
|
2224
|
+
};
|
|
2225
|
+
readonly additionalProperties: false;
|
|
2226
|
+
readonly description: "Facets for filtering";
|
|
2227
|
+
};
|
|
2228
|
+
};
|
|
2229
|
+
readonly required: readonly ["data", "facets"];
|
|
2230
|
+
readonly additionalProperties: false;
|
|
2231
|
+
};
|
|
1629
2232
|
export declare const UsageSchema: {
|
|
1630
2233
|
readonly type: "object";
|
|
1631
2234
|
readonly properties: {
|
|
1632
|
-
readonly
|
|
2235
|
+
readonly hour: {
|
|
1633
2236
|
readonly type: "string";
|
|
1634
|
-
readonly
|
|
1635
|
-
readonly
|
|
1636
|
-
readonly example: "8897e84c-2ba1-42fa-9d35-964c80a4ff0f";
|
|
2237
|
+
readonly description: "Hour of the usage";
|
|
2238
|
+
readonly example: "2019-01-01T00:00:00.000Z";
|
|
1637
2239
|
};
|
|
1638
|
-
readonly
|
|
2240
|
+
readonly cluster_id: {
|
|
1639
2241
|
readonly type: "string";
|
|
1640
|
-
readonly
|
|
1641
|
-
readonly
|
|
1642
|
-
readonly example: "415026b6-f00f-44f8-968d-fc6ef4d0fc6d";
|
|
2242
|
+
readonly description: "Unique identifier of the kubernetes cluster. UUID v4 string in canonical form";
|
|
2243
|
+
readonly example: "6b5439b1-923a-4f2b-a371-d554e5ea23fa";
|
|
1643
2244
|
};
|
|
1644
|
-
readonly
|
|
2245
|
+
readonly product: {
|
|
1645
2246
|
readonly type: "string";
|
|
1646
|
-
readonly description: "
|
|
1647
|
-
readonly example: "
|
|
2247
|
+
readonly description: "The product the usage is associated with";
|
|
2248
|
+
readonly example: "cfke_controlplane";
|
|
2249
|
+
};
|
|
2250
|
+
readonly value: {
|
|
2251
|
+
readonly type: "number";
|
|
2252
|
+
readonly format: "float";
|
|
2253
|
+
readonly description: "Consumption";
|
|
2254
|
+
readonly example: 4;
|
|
2255
|
+
};
|
|
2256
|
+
readonly price: {
|
|
2257
|
+
readonly type: "number";
|
|
2258
|
+
readonly format: "float";
|
|
2259
|
+
readonly description: "Price per unit";
|
|
2260
|
+
readonly example: 0.01;
|
|
1648
2261
|
};
|
|
1649
|
-
readonly
|
|
2262
|
+
readonly total: {
|
|
1650
2263
|
readonly type: "number";
|
|
1651
2264
|
readonly format: "float";
|
|
2265
|
+
readonly description: "Total cost";
|
|
1652
2266
|
};
|
|
1653
2267
|
};
|
|
1654
|
-
readonly required: readonly ["
|
|
2268
|
+
readonly required: readonly ["hour", "cluster_id", "product", "value", "price", "total"];
|
|
1655
2269
|
readonly additionalProperties: false;
|
|
1656
2270
|
};
|
|
1657
2271
|
export declare const UserCreateInputSchema: {
|
|
@@ -1686,7 +2300,7 @@ export declare const UserCreateInputSchema: {
|
|
|
1686
2300
|
readonly password: {
|
|
1687
2301
|
readonly type: "string";
|
|
1688
2302
|
readonly minLength: 8;
|
|
1689
|
-
readonly description: "User password. Must be at least 8 characters long
|
|
2303
|
+
readonly description: "User password. Must be at least 8 characters long.";
|
|
1690
2304
|
};
|
|
1691
2305
|
readonly status: {
|
|
1692
2306
|
readonly type: "string";
|
|
@@ -1751,28 +2365,6 @@ export declare const UserSchema: {
|
|
|
1751
2365
|
readonly description: "Creation date of the user. ISO 8601 date string in UTC timezone";
|
|
1752
2366
|
readonly example: "2023-11-02T16:08:14.338Z";
|
|
1753
2367
|
};
|
|
1754
|
-
readonly cluster_permissions: {
|
|
1755
|
-
readonly type: "array";
|
|
1756
|
-
readonly items: {
|
|
1757
|
-
readonly type: "object";
|
|
1758
|
-
readonly properties: {
|
|
1759
|
-
readonly cluster_id: {
|
|
1760
|
-
readonly type: "string";
|
|
1761
|
-
readonly format: "uuid";
|
|
1762
|
-
readonly description: "Unique identifier of the cluster. UUID v4 string in canonical form";
|
|
1763
|
-
readonly example: "035ce46d-44d8-4e58-a8a2-b0192d1c27df";
|
|
1764
|
-
};
|
|
1765
|
-
readonly permissions: {
|
|
1766
|
-
readonly type: "string";
|
|
1767
|
-
readonly description: "User permissions to access the cluster. Can be `readwrite` or `readonly`.";
|
|
1768
|
-
readonly example: "readwrite";
|
|
1769
|
-
readonly enum: readonly ["readwrite", "readonly"];
|
|
1770
|
-
};
|
|
1771
|
-
};
|
|
1772
|
-
readonly required: readonly ["cluster_id", "permissions"];
|
|
1773
|
-
readonly additionalProperties: false;
|
|
1774
|
-
};
|
|
1775
|
-
};
|
|
1776
2368
|
};
|
|
1777
2369
|
readonly required: readonly ["email", "first_name", "last_name", "role", "status", "id", "date_created"];
|
|
1778
2370
|
readonly additionalProperties: false;
|