@cloudfleet/sdk 0.0.1-523e444 → 0.0.1-5753ad1

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.
@@ -285,7 +285,7 @@ export declare const ClusterCreateInputSchema: {
285
285
  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-]+)*))?$";
286
286
  readonly description: "Version of the kubernetes cluster.";
287
287
  readonly default: "1.x.x-cfke.x";
288
- readonly example: "1.29.x-cfke.x";
288
+ readonly example: "1.33.x-cfke.x";
289
289
  };
290
290
  };
291
291
  readonly required: readonly ["name", "tier"];
@@ -321,7 +321,7 @@ export declare const ClusterJoinInformationSchema: {
321
321
  readonly kubernetes: {
322
322
  readonly type: "string";
323
323
  readonly description: "Kubernetes version of the cluster.";
324
- readonly example: "1.29.3";
324
+ readonly example: "1.33.7";
325
325
  };
326
326
  readonly tailscale: {
327
327
  readonly type: "string";
@@ -399,7 +399,7 @@ export declare const ClusterSchema: {
399
399
  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-]+)*))?$";
400
400
  readonly description: "Version of the kubernetes cluster.";
401
401
  readonly default: "1.x.x-cfke.x";
402
- readonly example: "1.29.x-cfke.x";
402
+ readonly example: "1.33.x-cfke.x";
403
403
  };
404
404
  readonly id: {
405
405
  readonly type: "string";
@@ -432,7 +432,7 @@ export declare const ClusterSchema: {
432
432
  readonly version_current: {
433
433
  readonly type: "string";
434
434
  readonly description: "Current version of the cluster.";
435
- readonly example: "1.29.3-cfke.52";
435
+ readonly example: "1.33.7-cfke.264";
436
436
  };
437
437
  readonly created_at: {
438
438
  readonly type: "string";
@@ -474,7 +474,7 @@ export declare const ClusterUpdateInputSchema: {
474
474
  readonly type: "string";
475
475
  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-]+)*))?$";
476
476
  readonly description: "Version of the kubernetes cluster.";
477
- readonly example: "1.29.x-cfke.x";
477
+ readonly example: "1.33.x-cfke.x";
478
478
  };
479
479
  };
480
480
  readonly required: readonly ["tier"];
@@ -978,12 +978,12 @@ export declare const OrganizationSchema: {
978
978
  readonly id: {
979
979
  readonly type: "string";
980
980
  readonly description: "Id of the control plane version. Used in API calls.";
981
- readonly example: "1.29.x-cfke.x";
981
+ readonly example: "1.33.x-cfke.x";
982
982
  };
983
983
  readonly label: {
984
984
  readonly type: "string";
985
985
  readonly description: "Label of the control plane version. Used in frontent UI.";
986
- readonly example: "1.29.x (Always latest 1.29 patch version)";
986
+ readonly example: "1.33.x (Always latest 1.33 patch version)";
987
987
  };
988
988
  };
989
989
  readonly required: readonly ["id", "label"];
@@ -1059,6 +1059,81 @@ export declare const PaymentMethodSchema: {
1059
1059
  readonly required: readonly ["id", "setup", "type", "last4", "exp_month", "exp_year", "brand"];
1060
1060
  readonly additionalProperties: false;
1061
1061
  };
1062
+ export declare const PlatformQuotaSchema: {
1063
+ readonly type: "object";
1064
+ readonly properties: {
1065
+ readonly basic_clusters_max: {
1066
+ readonly type: "integer";
1067
+ readonly minimum: 0;
1068
+ readonly description: "Maximum number of Basic clusters that can be created.";
1069
+ readonly example: 999;
1070
+ };
1071
+ readonly basic_clusters_available: {
1072
+ readonly type: "integer";
1073
+ readonly description: "Available number of Basic clusters that can be created.";
1074
+ readonly example: 999;
1075
+ };
1076
+ readonly pro_clusters_max: {
1077
+ readonly type: "integer";
1078
+ readonly minimum: 0;
1079
+ readonly description: "Maximum number of Pro clusters that can be created.";
1080
+ readonly example: 999;
1081
+ };
1082
+ readonly pro_clusters_available: {
1083
+ readonly type: "integer";
1084
+ readonly description: "Available number of Pro clusters that can be created.";
1085
+ readonly example: 999;
1086
+ };
1087
+ readonly fleets_max: {
1088
+ readonly type: "integer";
1089
+ readonly minimum: 0;
1090
+ readonly description: "Maximum number of fleets that can be created per cluster.";
1091
+ readonly example: 999;
1092
+ };
1093
+ readonly cluster_tiers: {
1094
+ readonly type: "array";
1095
+ readonly items: {
1096
+ readonly type: "string";
1097
+ readonly example: "basic";
1098
+ };
1099
+ readonly minItems: 0;
1100
+ readonly description: "List of Cloudfleet cluster tiers available for the organization.";
1101
+ };
1102
+ readonly regions: {
1103
+ readonly type: "array";
1104
+ readonly items: {
1105
+ readonly type: "string";
1106
+ readonly example: "northamerica-central-1";
1107
+ };
1108
+ readonly minItems: 1;
1109
+ readonly description: "List of Cloudfleet control plane regions available for the organization.";
1110
+ };
1111
+ readonly versions: {
1112
+ readonly type: "array";
1113
+ readonly items: {
1114
+ readonly type: "object";
1115
+ readonly properties: {
1116
+ readonly id: {
1117
+ readonly type: "string";
1118
+ readonly description: "Id of the control plane version. Used in API calls.";
1119
+ readonly example: "1.33.x-cfke.x";
1120
+ };
1121
+ readonly label: {
1122
+ readonly type: "string";
1123
+ readonly description: "Label of the control plane version. Used in frontent UI.";
1124
+ readonly example: "1.33.x (Always latest 1.33 patch version)";
1125
+ };
1126
+ };
1127
+ readonly required: readonly ["id", "label"];
1128
+ readonly additionalProperties: false;
1129
+ };
1130
+ readonly minItems: 1;
1131
+ readonly description: "List of CFKE control plane versions available for the organization.";
1132
+ };
1133
+ };
1134
+ readonly required: readonly ["basic_clusters_max", "basic_clusters_available", "pro_clusters_max", "pro_clusters_available", "fleets_max", "cluster_tiers", "regions", "versions"];
1135
+ readonly additionalProperties: false;
1136
+ };
1062
1137
  export declare const TokenCreateInputSchema: {
1063
1138
  readonly type: "object";
1064
1139
  readonly properties: {
@@ -1137,6 +1212,101 @@ export declare const TokenUpdateInputSchema: {
1137
1212
  };
1138
1213
  readonly additionalProperties: false;
1139
1214
  };
1215
+ export declare const UsageFacetsSchema: {
1216
+ readonly type: "object";
1217
+ readonly properties: {
1218
+ readonly cluster_id: {
1219
+ readonly type: "array";
1220
+ readonly items: {
1221
+ readonly type: "string";
1222
+ };
1223
+ readonly description: "List of unique cluster IDs";
1224
+ readonly example: readonly ["6b5439b1-923a-4f2b-a371-d554e5ea23fa"];
1225
+ };
1226
+ readonly product: {
1227
+ readonly type: "array";
1228
+ readonly items: {
1229
+ readonly type: "string";
1230
+ };
1231
+ readonly description: "List of unique products";
1232
+ readonly example: readonly ["cfke_controlplane", "cfke_connected_nodes"];
1233
+ };
1234
+ };
1235
+ readonly additionalProperties: false;
1236
+ };
1237
+ export declare const UsageResponseSchema: {
1238
+ readonly type: "object";
1239
+ readonly properties: {
1240
+ readonly data: {
1241
+ readonly type: "array";
1242
+ readonly items: {
1243
+ readonly type: "object";
1244
+ readonly properties: {
1245
+ readonly hour: {
1246
+ readonly type: "string";
1247
+ readonly description: "Hour of the usage";
1248
+ readonly example: "2019-01-01T00:00:00.000Z";
1249
+ };
1250
+ readonly cluster_id: {
1251
+ readonly type: "string";
1252
+ readonly description: "Unique identifier of the kubernetes cluster. UUID v4 string in canonical form";
1253
+ readonly example: "6b5439b1-923a-4f2b-a371-d554e5ea23fa";
1254
+ };
1255
+ readonly product: {
1256
+ readonly type: "string";
1257
+ readonly description: "The product the usage is associated with";
1258
+ readonly example: "cfke_controlplane";
1259
+ };
1260
+ readonly value: {
1261
+ readonly type: "number";
1262
+ readonly format: "float";
1263
+ readonly description: "Consumption";
1264
+ readonly example: 4;
1265
+ };
1266
+ readonly price: {
1267
+ readonly type: "number";
1268
+ readonly format: "float";
1269
+ readonly description: "Price per unit";
1270
+ readonly example: 0.01;
1271
+ };
1272
+ readonly total: {
1273
+ readonly type: "number";
1274
+ readonly format: "float";
1275
+ readonly description: "Total cost";
1276
+ };
1277
+ };
1278
+ readonly required: readonly ["hour", "cluster_id", "product", "value", "price", "total"];
1279
+ readonly additionalProperties: false;
1280
+ };
1281
+ readonly description: "Usage data";
1282
+ };
1283
+ readonly facets: {
1284
+ readonly type: "object";
1285
+ readonly properties: {
1286
+ readonly cluster_id: {
1287
+ readonly type: "array";
1288
+ readonly items: {
1289
+ readonly type: "string";
1290
+ };
1291
+ readonly description: "List of unique cluster IDs";
1292
+ readonly example: readonly ["6b5439b1-923a-4f2b-a371-d554e5ea23fa"];
1293
+ };
1294
+ readonly product: {
1295
+ readonly type: "array";
1296
+ readonly items: {
1297
+ readonly type: "string";
1298
+ };
1299
+ readonly description: "List of unique products";
1300
+ readonly example: readonly ["cfke_controlplane", "cfke_connected_nodes"];
1301
+ };
1302
+ };
1303
+ readonly additionalProperties: false;
1304
+ readonly description: "Facets for filtering";
1305
+ };
1306
+ };
1307
+ readonly required: readonly ["data", "facets"];
1308
+ readonly additionalProperties: false;
1309
+ };
1140
1310
  export declare const UsageSchema: {
1141
1311
  readonly type: "object";
1142
1312
  readonly properties: {
@@ -1147,78 +1317,33 @@ export declare const UsageSchema: {
1147
1317
  };
1148
1318
  readonly cluster_id: {
1149
1319
  readonly type: "string";
1150
- readonly format: "uuid";
1151
1320
  readonly description: "Unique identifier of the kubernetes cluster. UUID v4 string in canonical form";
1152
1321
  readonly example: "6b5439b1-923a-4f2b-a371-d554e5ea23fa";
1153
1322
  };
1154
- readonly cluster_tier: {
1155
- readonly type: "string";
1156
- readonly description: "Tier of the cluster.";
1157
- readonly example: "pro";
1158
- readonly enum: readonly ["basic", "pro", ""];
1159
- };
1160
1323
  readonly product: {
1161
1324
  readonly type: "string";
1162
1325
  readonly description: "The product the usage is associated with";
1163
1326
  readonly example: "cfke_controlplane";
1164
- readonly enum: readonly ["cfke_controlplane", "cfke_connected_nodes", "infra_compute", "infra_storage", "infra_loadbalancing", "infra_traffic", "cfcr_storage"];
1165
1327
  };
1166
- readonly node_name: {
1167
- readonly type: "string";
1168
- readonly description: "Name of the Kubernetes node";
1169
- readonly example: "flexible-moth-956037384";
1170
- };
1171
- readonly sku: {
1172
- readonly type: "string";
1173
- readonly description: "SKU of the Kubernetes node";
1174
- readonly example: "GCP-NORTHAMERICA-NORTHEAST1-A-G1-SMALL-SPOT";
1175
- };
1176
- readonly cpu: {
1177
- readonly anyOf: readonly [{
1178
- readonly type: "number";
1179
- readonly format: "float";
1180
- readonly description: "CPU core count of the node";
1181
- readonly example: 4;
1182
- }, {
1183
- readonly type: "string";
1184
- readonly enum: readonly [""];
1185
- }];
1328
+ readonly value: {
1329
+ readonly type: "number";
1330
+ readonly format: "float";
1331
+ readonly description: "Consumption";
1332
+ readonly example: 4;
1186
1333
  };
1187
1334
  readonly price: {
1188
- readonly anyOf: readonly [{
1189
- readonly type: "number";
1190
- readonly format: "float";
1191
- readonly description: "Price";
1192
- readonly example: 4;
1193
- }, {
1194
- readonly type: "string";
1195
- readonly enum: readonly [""];
1196
- }];
1197
- };
1198
- readonly value: {
1199
- readonly anyOf: readonly [{
1200
- readonly type: "number";
1201
- readonly format: "float";
1202
- readonly description: "Value";
1203
- readonly example: 4;
1204
- }, {
1205
- readonly type: "string";
1206
- readonly enum: readonly [""];
1207
- }];
1335
+ readonly type: "number";
1336
+ readonly format: "float";
1337
+ readonly description: "Price per unit";
1338
+ readonly example: 0.01;
1208
1339
  };
1209
1340
  readonly total: {
1210
- readonly anyOf: readonly [{
1211
- readonly type: "number";
1212
- readonly format: "float";
1213
- readonly description: "Total";
1214
- readonly example: 4;
1215
- }, {
1216
- readonly type: "string";
1217
- readonly enum: readonly [""];
1218
- }];
1341
+ readonly type: "number";
1342
+ readonly format: "float";
1343
+ readonly description: "Total cost";
1219
1344
  };
1220
1345
  };
1221
- readonly required: readonly ["cluster_id", "cluster_tier", "product", "node_name", "sku", "cpu", "price", "value", "total"];
1346
+ readonly required: readonly ["hour", "cluster_id", "product", "value", "price", "total"];
1222
1347
  readonly additionalProperties: false;
1223
1348
  };
1224
1349
  export declare const UserCreateInputSchema: {
@@ -1 +1 @@
1
- {"version":3,"file":"schemas.gen.d.ts","sourceRoot":"","sources":["../src/schemas.gen.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"schemas.gen.d.ts","sourceRoot":"","sources":["../src/schemas.gen.ts"],"names":[],"mappings":"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"}