@alienplatform/core 1.7.1 → 1.9.0

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.
Files changed (88) hide show
  1. package/.turbo/turbo-build.log +12 -11
  2. package/dist/index.d.ts +783 -100
  3. package/dist/index.d.ts.map +1 -1
  4. package/dist/index.js +199 -33
  5. package/dist/index.js.map +1 -1
  6. package/dist/stack.js +579 -44
  7. package/dist/stack.js.map +1 -1
  8. package/dist/tests/index.js +1 -1
  9. package/package.json +1 -1
  10. package/src/__tests__/__snapshots__/stack.test.ts.snap +10 -4
  11. package/src/__tests__/error.test.ts +1 -1
  12. package/src/__tests__/stack.test.ts +184 -2
  13. package/src/compute-cluster.ts +211 -0
  14. package/src/container.ts +38 -26
  15. package/src/daemon.ts +79 -0
  16. package/src/generated/index.ts +42 -2
  17. package/src/generated/schemas/architecture.json +1 -0
  18. package/src/generated/schemas/capacityGroup.json +1 -0
  19. package/src/generated/schemas/capacityGroupScalePolicy.json +1 -0
  20. package/src/generated/schemas/computeChoiceRange.json +1 -0
  21. package/src/generated/schemas/computeCluster.json +1 -0
  22. package/src/generated/schemas/computePoolSelection.json +1 -0
  23. package/src/generated/schemas/computeSettings.json +1 -0
  24. package/src/generated/schemas/container.json +1 -1
  25. package/src/generated/schemas/containerOutputs.json +1 -1
  26. package/src/generated/schemas/containerPort.json +1 -1
  27. package/src/generated/schemas/daemon.json +1 -1
  28. package/src/generated/schemas/daemonOutputs.json +1 -1
  29. package/src/generated/schemas/daemonRuntime.json +1 -0
  30. package/src/generated/schemas/daemonRuntimeMount.json +1 -0
  31. package/src/generated/schemas/exposeProtocol.json +1 -1
  32. package/src/generated/schemas/gpuSpec.json +1 -0
  33. package/src/generated/schemas/machineProfile.json +1 -0
  34. package/src/generated/schemas/publicEndpoint.json +1 -0
  35. package/src/generated/schemas/publicEndpointOutput.json +1 -0
  36. package/src/generated/schemas/stack.json +1 -1
  37. package/src/generated/schemas/stackImportRequest.json +1 -1
  38. package/src/generated/schemas/stackImportResponse.json +1 -1
  39. package/src/generated/schemas/stackInputDefaultValue.json +1 -0
  40. package/src/generated/schemas/stackInputDefinition.json +1 -0
  41. package/src/generated/schemas/stackInputEnvironmentMapping.json +1 -0
  42. package/src/generated/schemas/stackInputEnvironmentVariableType.json +1 -0
  43. package/src/generated/schemas/stackInputKind.json +1 -0
  44. package/src/generated/schemas/stackInputProvider.json +1 -0
  45. package/src/generated/schemas/stackInputValidation.json +1 -0
  46. package/src/generated/schemas/stackSettings.json +1 -1
  47. package/src/generated/schemas/worker.json +1 -1
  48. package/src/generated/schemas/workerOutputs.json +1 -1
  49. package/src/generated/schemas/workerPublicEndpoint.json +1 -0
  50. package/src/generated/zod/architecture-schema.ts +13 -0
  51. package/src/generated/zod/capacity-group-scale-policy-schema.ts +27 -0
  52. package/src/generated/zod/capacity-group-schema.ts +27 -0
  53. package/src/generated/zod/compute-choice-range-schema.ts +17 -0
  54. package/src/generated/zod/compute-cluster-schema.ts +20 -0
  55. package/src/generated/zod/compute-pool-selection-schema.ts +22 -0
  56. package/src/generated/zod/compute-settings-schema.ts +18 -0
  57. package/src/generated/zod/container-outputs-schema.ts +5 -6
  58. package/src/generated/zod/container-port-schema.ts +1 -5
  59. package/src/generated/zod/container-schema.ts +7 -3
  60. package/src/generated/zod/daemon-outputs-schema.ts +4 -0
  61. package/src/generated/zod/daemon-runtime-mount-schema.ts +14 -0
  62. package/src/generated/zod/daemon-runtime-schema.ts +19 -0
  63. package/src/generated/zod/daemon-schema.ts +14 -2
  64. package/src/generated/zod/expose-protocol-schema.ts +2 -2
  65. package/src/generated/zod/gpu-spec-schema.ts +16 -0
  66. package/src/generated/zod/index.ts +42 -2
  67. package/src/generated/zod/machine-profile-schema.ts +25 -0
  68. package/src/generated/zod/public-endpoint-output-schema.ts +21 -0
  69. package/src/generated/zod/public-endpoint-schema.ts +22 -0
  70. package/src/generated/zod/stack-import-request-schema.ts +3 -0
  71. package/src/generated/zod/stack-input-default-value-schema.ts +25 -0
  72. package/src/generated/zod/stack-input-definition-schema.ts +43 -0
  73. package/src/generated/zod/stack-input-environment-mapping-schema.ts +20 -0
  74. package/src/generated/zod/stack-input-environment-variable-type-schema.ts +13 -0
  75. package/src/generated/zod/stack-input-kind-schema.ts +13 -0
  76. package/src/generated/zod/stack-input-provider-schema.ts +13 -0
  77. package/src/generated/zod/stack-input-validation-schema.ts +23 -0
  78. package/src/generated/zod/stack-schema.ts +4 -0
  79. package/src/generated/zod/stack-settings-schema.ts +5 -1
  80. package/src/generated/zod/worker-outputs-schema.ts +4 -5
  81. package/src/generated/zod/worker-public-endpoint-schema.ts +17 -0
  82. package/src/generated/zod/worker-schema.ts +4 -4
  83. package/src/index.ts +9 -0
  84. package/src/input.ts +380 -0
  85. package/src/stack.ts +19 -0
  86. package/src/worker.ts +24 -14
  87. package/src/generated/schemas/ingress.json +0 -1
  88. package/src/generated/zod/ingress-schema.ts +0 -13
package/dist/index.d.ts CHANGED
@@ -3225,15 +3225,95 @@ type BuildOutputs = z$2.infer<typeof BuildOutputsSchema>;
3225
3225
  * @description Status of a build execution.
3226
3226
  */
3227
3227
  declare const BuildStatusSchema: z$2.ZodEnum<{
3228
- SUCCEEDED: "SUCCEEDED";
3229
- FAILED: "FAILED";
3230
3228
  QUEUED: "QUEUED";
3231
3229
  RUNNING: "RUNNING";
3230
+ SUCCEEDED: "SUCCEEDED";
3231
+ FAILED: "FAILED";
3232
3232
  CANCELLED: "CANCELLED";
3233
3233
  TIMED_OUT: "TIMED_OUT";
3234
3234
  }>;
3235
3235
  type BuildStatus = z$2.infer<typeof BuildStatusSchema>;
3236
3236
  //#endregion
3237
+ //#region src/generated/zod/capacity-group-scale-policy-schema.d.ts
3238
+ /**
3239
+ * @description Source-declared scale policy for a capacity group.
3240
+ */
3241
+ declare const CapacityGroupScalePolicySchema: z$2.ZodUnion<readonly [z$2.ZodObject<{
3242
+ machines: z$2.ZodObject<{
3243
+ default: z$2.ZodInt;
3244
+ max: z$2.ZodInt;
3245
+ min: z$2.ZodInt;
3246
+ }, z$2.core.$strip>;
3247
+ type: z$2.ZodEnum<{
3248
+ fixed: "fixed";
3249
+ }>;
3250
+ }, z$2.core.$strip>, z$2.ZodObject<{
3251
+ max: z$2.ZodObject<{
3252
+ default: z$2.ZodInt;
3253
+ max: z$2.ZodInt;
3254
+ min: z$2.ZodInt;
3255
+ }, z$2.core.$strip>;
3256
+ min: z$2.ZodObject<{
3257
+ default: z$2.ZodInt;
3258
+ max: z$2.ZodInt;
3259
+ min: z$2.ZodInt;
3260
+ }, z$2.core.$strip>;
3261
+ type: z$2.ZodEnum<{
3262
+ autoscale: "autoscale";
3263
+ }>;
3264
+ }, z$2.core.$strip>]>;
3265
+ type CapacityGroupScalePolicy = z$2.infer<typeof CapacityGroupScalePolicySchema>;
3266
+ //#endregion
3267
+ //#region src/generated/zod/capacity-group-schema.d.ts
3268
+ /**
3269
+ * @description Capacity group definition.\n\nA capacity group represents machines with identical hardware profiles.\nEach group becomes a separate Auto Scaling Group (AWS), Managed Instance Group (GCP),\nor VM Scale Set (Azure).
3270
+ */
3271
+ declare const CapacityGroupSchema: z$2.ZodObject<{
3272
+ groupId: z$2.ZodString;
3273
+ instanceType: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
3274
+ maxSize: z$2.ZodInt;
3275
+ minSize: z$2.ZodInt;
3276
+ nestedVirtualization: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodBoolean>>;
3277
+ profile: z$2.ZodOptional<z$2.ZodUnion<readonly [z$2.ZodObject<{
3278
+ architecture: z$2.ZodOptional<z$2.ZodUnion<readonly [z$2.ZodEnum<{
3279
+ arm64: "arm64";
3280
+ x86_64: "x86_64";
3281
+ }>, z$2.ZodNull]>>;
3282
+ cpu: z$2.ZodString;
3283
+ ephemeralStorageBytes: z$2.ZodInt;
3284
+ gpu: z$2.ZodOptional<z$2.ZodUnion<readonly [z$2.ZodObject<{
3285
+ count: z$2.ZodInt;
3286
+ type: z$2.ZodString;
3287
+ }, z$2.core.$strip>, z$2.ZodNull]>>;
3288
+ memoryBytes: z$2.ZodInt;
3289
+ }, z$2.core.$strip>, z$2.ZodNull]>>;
3290
+ scalePolicy: z$2.ZodOptional<z$2.ZodUnion<readonly [z$2.ZodUnion<readonly [z$2.ZodObject<{
3291
+ machines: z$2.ZodObject<{
3292
+ default: z$2.ZodInt;
3293
+ max: z$2.ZodInt;
3294
+ min: z$2.ZodInt;
3295
+ }, z$2.core.$strip>;
3296
+ type: z$2.ZodEnum<{
3297
+ fixed: "fixed";
3298
+ }>;
3299
+ }, z$2.core.$strip>, z$2.ZodObject<{
3300
+ max: z$2.ZodObject<{
3301
+ default: z$2.ZodInt;
3302
+ max: z$2.ZodInt;
3303
+ min: z$2.ZodInt;
3304
+ }, z$2.core.$strip>;
3305
+ min: z$2.ZodObject<{
3306
+ default: z$2.ZodInt;
3307
+ max: z$2.ZodInt;
3308
+ min: z$2.ZodInt;
3309
+ }, z$2.core.$strip>;
3310
+ type: z$2.ZodEnum<{
3311
+ autoscale: "autoscale";
3312
+ }>;
3313
+ }, z$2.core.$strip>]>, z$2.ZodNull]>>;
3314
+ }, z$2.core.$strip>;
3315
+ type CapacityGroup = z$2.infer<typeof CapacityGroupSchema>;
3316
+ //#endregion
3237
3317
  //#region src/generated/zod/command-response-schema.d.ts
3238
3318
  /**
3239
3319
  * @description Command response from deployment
@@ -3296,11 +3376,11 @@ type CommandResponse = z$2.infer<typeof CommandResponseSchema>;
3296
3376
  * @description Command states in the Commands protocol lifecycle
3297
3377
  */
3298
3378
  declare const CommandStateSchema: z$2.ZodEnum<{
3379
+ SUCCEEDED: "SUCCEEDED";
3380
+ FAILED: "FAILED";
3299
3381
  PENDING_UPLOAD: "PENDING_UPLOAD";
3300
3382
  PENDING: "PENDING";
3301
3383
  DISPATCHED: "DISPATCHED";
3302
- SUCCEEDED: "SUCCEEDED";
3303
- FAILED: "FAILED";
3304
3384
  EXPIRED: "EXPIRED";
3305
3385
  }>;
3306
3386
  type CommandState = z$2.infer<typeof CommandStateSchema>;
@@ -3364,11 +3444,11 @@ declare const CommandStatusResponseSchema: z$2.ZodObject<{
3364
3444
  }>;
3365
3445
  }, z$2.core.$strip>]>, z$2.ZodNull]>>;
3366
3446
  state: z$2.ZodEnum<{
3447
+ SUCCEEDED: "SUCCEEDED";
3448
+ FAILED: "FAILED";
3367
3449
  PENDING_UPLOAD: "PENDING_UPLOAD";
3368
3450
  PENDING: "PENDING";
3369
3451
  DISPATCHED: "DISPATCHED";
3370
- SUCCEEDED: "SUCCEEDED";
3371
- FAILED: "FAILED";
3372
3452
  EXPIRED: "EXPIRED";
3373
3453
  }>;
3374
3454
  }, z$2.core.$strip>;
@@ -3432,6 +3512,17 @@ declare const ComputeCapacityRecommendationSchema: z$2.ZodObject<{
3432
3512
  }, z$2.core.$strip>;
3433
3513
  type ComputeCapacityRecommendation = z$2.infer<typeof ComputeCapacityRecommendationSchema>;
3434
3514
  //#endregion
3515
+ //#region src/generated/zod/compute-choice-range-schema.d.ts
3516
+ /**
3517
+ * @description Allowed range and default for a count selected by the installer.
3518
+ */
3519
+ declare const ComputeChoiceRangeSchema: z$2.ZodObject<{
3520
+ default: z$2.ZodInt;
3521
+ max: z$2.ZodInt;
3522
+ min: z$2.ZodInt;
3523
+ }, z$2.core.$strip>;
3524
+ type ComputeChoiceRange$1 = z$2.infer<typeof ComputeChoiceRangeSchema>;
3525
+ //#endregion
3435
3526
  //#region src/generated/zod/compute-cluster-heartbeat-data-schema.d.ts
3436
3527
  declare const ComputeClusterHeartbeatDataSchema: z$2.ZodUnion<readonly [z$2.ZodIntersection<z$2.ZodLazy<z$2.ZodObject<{
3437
3528
  backendClusterId: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
@@ -3889,6 +3980,60 @@ declare const ComputeClusterHeartbeatStatusSchema: z$2.ZodObject<{
3889
3980
  }, z$2.core.$strip>;
3890
3981
  type ComputeClusterHeartbeatStatus = z$2.infer<typeof ComputeClusterHeartbeatStatusSchema>;
3891
3982
  //#endregion
3983
+ //#region src/generated/zod/compute-cluster-schema.d.ts
3984
+ /**
3985
+ * @description ComputeCluster resource for running long-running container workloads.\n\nA ComputeCluster provides the setup-owned machine boundary for containers.\nAlien may manage the worker fleet inside that boundary when setup grants\n`compute-cluster/management`.\n\n## Architecture\n\n- **Setup** creates cloud resources: ASGs/MIGs/VMSSs, IAM roles, security groups\n- **Alien** manages allowed fleet operations: machine count and runtime\n machine image rollout\n- A node agent runs on each machine from the selected runtime image channel\n\n## Example\n\n```rust\nuse alien_core::{CapacityGroup, ComputeCluster, MachineProfile};\n\nlet cluster = ComputeCluster::new(\"compute\".to_string())\n .capacity_group(CapacityGroup {\n group_id: \"general\".to_string(),\n instance_type: None,\n profile: Some(MachineProfile {\n cpu: \"4.0\".to_string(),\n memory_bytes: 16 * 1024 * 1024 * 1024,\n ephemeral_storage_bytes: 20 * 1024 * 1024 * 1024,\n architecture: None,\n gpu: None,\n }),\n min_size: 1,\n max_size: 5,\n scale_policy: None,\n nested_virtualization: None,\n })\n .build();\n```
3986
+ */
3987
+ declare const ComputeClusterSchema: z$2.ZodObject<{
3988
+ capacityGroups: z$2.ZodArray<z$2.ZodObject<{
3989
+ groupId: z$2.ZodString;
3990
+ instanceType: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
3991
+ maxSize: z$2.ZodInt;
3992
+ minSize: z$2.ZodInt;
3993
+ nestedVirtualization: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodBoolean>>;
3994
+ profile: z$2.ZodOptional<z$2.ZodUnion<readonly [z$2.ZodObject<{
3995
+ architecture: z$2.ZodOptional<z$2.ZodUnion<readonly [z$2.ZodEnum<{
3996
+ arm64: "arm64";
3997
+ x86_64: "x86_64";
3998
+ }>, z$2.ZodNull]>>;
3999
+ cpu: z$2.ZodString;
4000
+ ephemeralStorageBytes: z$2.ZodInt;
4001
+ gpu: z$2.ZodOptional<z$2.ZodUnion<readonly [z$2.ZodObject<{
4002
+ count: z$2.ZodInt;
4003
+ type: z$2.ZodString;
4004
+ }, z$2.core.$strip>, z$2.ZodNull]>>;
4005
+ memoryBytes: z$2.ZodInt;
4006
+ }, z$2.core.$strip>, z$2.ZodNull]>>;
4007
+ scalePolicy: z$2.ZodOptional<z$2.ZodUnion<readonly [z$2.ZodUnion<readonly [z$2.ZodObject<{
4008
+ machines: z$2.ZodObject<{
4009
+ default: z$2.ZodInt;
4010
+ max: z$2.ZodInt;
4011
+ min: z$2.ZodInt;
4012
+ }, z$2.core.$strip>;
4013
+ type: z$2.ZodEnum<{
4014
+ fixed: "fixed";
4015
+ }>;
4016
+ }, z$2.core.$strip>, z$2.ZodObject<{
4017
+ max: z$2.ZodObject<{
4018
+ default: z$2.ZodInt;
4019
+ max: z$2.ZodInt;
4020
+ min: z$2.ZodInt;
4021
+ }, z$2.core.$strip>;
4022
+ min: z$2.ZodObject<{
4023
+ default: z$2.ZodInt;
4024
+ max: z$2.ZodInt;
4025
+ min: z$2.ZodInt;
4026
+ }, z$2.core.$strip>;
4027
+ type: z$2.ZodEnum<{
4028
+ autoscale: "autoscale";
4029
+ }>;
4030
+ }, z$2.core.$strip>]>, z$2.ZodNull]>>;
4031
+ }, z$2.core.$strip>>;
4032
+ containerCidr: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
4033
+ id: z$2.ZodString;
4034
+ }, z$2.core.$strip>;
4035
+ type ComputeCluster$1 = z$2.infer<typeof ComputeClusterSchema>;
4036
+ //#endregion
3892
4037
  //#region src/generated/zod/compute-type-schema.d.ts
3893
4038
  /**
3894
4039
  * @description Compute type for build resources.
@@ -4062,8 +4207,8 @@ declare const ContainerHeartbeatDataSchema: z$2.ZodUnion<readonly [z$2.ZodInters
4062
4207
  }, z$2.core.$strip>;
4063
4208
  schedulingMode: z$2.ZodEnum<{
4064
4209
  stateful: "stateful";
4065
- daemon: "daemon";
4066
4210
  replicated: "replicated";
4211
+ daemon: "daemon";
4067
4212
  }>;
4068
4213
  status: z$2.ZodObject<{
4069
4214
  collectionIssues: z$2.ZodArray<z$2.ZodObject<{
@@ -4286,9 +4431,9 @@ declare const ContainerHeartbeatDataSchema: z$2.ZodUnion<readonly [z$2.ZodInters
4286
4431
  value: z$2.ZodNumber;
4287
4432
  }, z$2.core.$strip>, z$2.ZodNull]>>;
4288
4433
  kind: z$2.ZodEnum<{
4434
+ daemon: "daemon";
4289
4435
  container: "container";
4290
4436
  process: "process";
4291
- daemon: "daemon";
4292
4437
  }>;
4293
4438
  memory: z$2.ZodOptional<z$2.ZodUnion<readonly [z$2.ZodObject<{
4294
4439
  unit: z$2.ZodEnum<{
@@ -4407,11 +4552,16 @@ declare const ContainerOutputsSchema: z$2.ZodObject<{
4407
4552
  currentReplicas: z$2.ZodInt;
4408
4553
  desiredReplicas: z$2.ZodInt;
4409
4554
  internalDns: z$2.ZodString;
4410
- loadBalancerEndpoint: z$2.ZodOptional<z$2.ZodUnion<readonly [z$2.ZodObject<{
4411
- dnsName: z$2.ZodString;
4412
- hostedZoneId: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
4413
- }, z$2.core.$strip>, z$2.ZodNull]>>;
4414
4555
  name: z$2.ZodString;
4556
+ publicEndpoints: z$2.ZodOptional<z$2.ZodObject<{}, z$2.core.$catchall<z$2.ZodLazy<z$2.ZodObject<{
4557
+ host: z$2.ZodString;
4558
+ loadBalancerEndpoint: z$2.ZodOptional<z$2.ZodUnion<readonly [z$2.ZodObject<{
4559
+ dnsName: z$2.ZodString;
4560
+ hostedZoneId: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
4561
+ }, z$2.core.$strip>, z$2.ZodNull]>>;
4562
+ url: z$2.ZodString;
4563
+ wildcardHost: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
4564
+ }, z$2.core.$strip>>>>>;
4415
4565
  replicas: z$2.ZodArray<z$2.ZodObject<{
4416
4566
  containerIp: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
4417
4567
  healthy: z$2.ZodBoolean;
@@ -4425,7 +4575,6 @@ declare const ContainerOutputsSchema: z$2.ZodObject<{
4425
4575
  stopped: "stopped";
4426
4576
  failing: "failing";
4427
4577
  }>;
4428
- url: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
4429
4578
  }, z$2.core.$strip>;
4430
4579
  type ContainerOutputs = z$2.infer<typeof ContainerOutputsSchema>;
4431
4580
  //#endregion
@@ -4434,17 +4583,13 @@ type ContainerOutputs = z$2.infer<typeof ContainerOutputsSchema>;
4434
4583
  * @description Container port configuration.
4435
4584
  */
4436
4585
  declare const ContainerPortSchema: z$2.ZodObject<{
4437
- expose: z$2.ZodOptional<z$2.ZodUnion<readonly [z$2.ZodEnum<{
4438
- http: "http";
4439
- tcp: "tcp";
4440
- }>, z$2.ZodNull]>>;
4441
4586
  port: z$2.ZodInt;
4442
4587
  }, z$2.core.$strip>;
4443
4588
  type ContainerPort = z$2.infer<typeof ContainerPortSchema>;
4444
4589
  //#endregion
4445
4590
  //#region src/generated/zod/container-schema.d.ts
4446
4591
  /**
4447
- * @description Container resource for running long-running container workloads.\n\nA Container defines a deployable unit that runs on a ComputeCluster.\nThe managed container backend handles scheduling replicas across machines,\nautoscaling based on various metrics, and service discovery.\n\n## Example\n\n```rust\nuse alien_core::{Container, ContainerCode, ResourceSpec, ContainerAutoscaling, ContainerPort, ExposeProtocol};\n\nlet container = Container::new(\"api\".to_string())\n .cluster(\"compute\".to_string())\n .code(ContainerCode::Image {\n image: \"myapp:latest\".to_string(),\n })\n .cpu(ResourceSpec { min: \"0.5\".to_string(), desired: \"1\".to_string() })\n .memory(ResourceSpec { min: \"512Mi\".to_string(), desired: \"1Gi\".to_string() })\n .port(8080)\n .expose_port(8080, ExposeProtocol::Http)\n .autoscaling(ContainerAutoscaling {\n min: 2,\n desired: 3,\n max: 10,\n target_cpu_percent: Some(70.0),\n target_memory_percent: None,\n target_http_in_flight_per_replica: Some(100),\n max_http_p95_latency_ms: None,\n })\n .permissions(\"container-execution\".to_string())\n .build();\n```
4592
+ * @description Container resource for running long-running container workloads.\n\nA Container defines a deployable unit that runs on a ComputeCluster.\nThe managed container backend handles scheduling replicas across machines,\nautoscaling based on various metrics, and service discovery.\n\n## Example\n\n```rust\nuse alien_core::{Container, ContainerCode, ResourceSpec, ContainerAutoscaling, PublicEndpoint, ExposeProtocol};\n\nlet container = Container::new(\"api\".to_string())\n .cluster(\"compute\".to_string())\n .code(ContainerCode::Image {\n image: \"myapp:latest\".to_string(),\n })\n .cpu(ResourceSpec { min: \"0.5\".to_string(), desired: \"1\".to_string() })\n .memory(ResourceSpec { min: \"512Mi\".to_string(), desired: \"1Gi\".to_string() })\n .port(8080)\n .public_endpoint(PublicEndpoint {\n name: \"api\".to_string(),\n port: 8080,\n protocol: ExposeProtocol::Http,\n host_label: None,\n wildcard_subdomains: false,\n })\n .autoscaling(ContainerAutoscaling {\n min: 2,\n desired: 3,\n max: 10,\n target_cpu_percent: Some(70.0),\n target_memory_percent: None,\n target_http_in_flight_per_replica: Some(100),\n max_http_p95_latency_ms: None,\n })\n .permissions(\"container-execution\".to_string())\n .build();\n```
4448
4593
  */
4449
4594
  declare const ContainerSchema: z$2.ZodObject<{
4450
4595
  autoscaling: z$2.ZodOptional<z$2.ZodUnion<readonly [z$2.ZodObject<{
@@ -4520,11 +4665,17 @@ declare const ContainerSchema: z$2.ZodObject<{
4520
4665
  }, z$2.core.$strip>, z$2.ZodNull]>>;
4521
4666
  pool: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
4522
4667
  ports: z$2.ZodArray<z$2.ZodObject<{
4523
- expose: z$2.ZodOptional<z$2.ZodUnion<readonly [z$2.ZodEnum<{
4668
+ port: z$2.ZodInt;
4669
+ }, z$2.core.$strip>>;
4670
+ publicEndpoints: z$2.ZodArray<z$2.ZodObject<{
4671
+ hostLabel: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
4672
+ name: z$2.ZodString;
4673
+ port: z$2.ZodInt;
4674
+ protocol: z$2.ZodEnum<{
4524
4675
  http: "http";
4525
4676
  tcp: "tcp";
4526
- }>, z$2.ZodNull]>>;
4527
- port: z$2.ZodInt;
4677
+ }>;
4678
+ wildcardSubdomains: z$2.ZodOptional<z$2.ZodBoolean>;
4528
4679
  }, z$2.core.$strip>>;
4529
4680
  replicas: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodInt>>;
4530
4681
  stateful: z$2.ZodOptional<z$2.ZodBoolean>;
@@ -4603,11 +4754,11 @@ declare const CreateCommandResponseSchema: z$2.ZodObject<{
4603
4754
  inlineAllowedUpTo: z$2.ZodInt;
4604
4755
  next: z$2.ZodString;
4605
4756
  state: z$2.ZodEnum<{
4757
+ SUCCEEDED: "SUCCEEDED";
4758
+ FAILED: "FAILED";
4606
4759
  PENDING_UPLOAD: "PENDING_UPLOAD";
4607
4760
  PENDING: "PENDING";
4608
4761
  DISPATCHED: "DISPATCHED";
4609
- SUCCEEDED: "SUCCEEDED";
4610
- FAILED: "FAILED";
4611
4762
  EXPIRED: "EXPIRED";
4612
4763
  }>;
4613
4764
  storageUpload: z$2.ZodOptional<z$2.ZodUnion<readonly [z$2.ZodObject<{
@@ -5207,9 +5358,9 @@ declare const DaemonHeartbeatDataSchema: z$2.ZodUnion<readonly [z$2.ZodIntersect
5207
5358
  value: z$2.ZodNumber;
5208
5359
  }, z$2.core.$strip>, z$2.ZodNull]>>;
5209
5360
  kind: z$2.ZodEnum<{
5361
+ daemon: "daemon";
5210
5362
  container: "container";
5211
5363
  process: "process";
5212
- daemon: "daemon";
5213
5364
  }>;
5214
5365
  memory: z$2.ZodOptional<z$2.ZodUnion<readonly [z$2.ZodObject<{
5215
5366
  unit: z$2.ZodEnum<{
@@ -5300,10 +5451,33 @@ type DaemonHeartbeatData = z$2.infer<typeof DaemonHeartbeatDataSchema>;
5300
5451
  //#region src/generated/zod/daemon-outputs-schema.d.ts
5301
5452
  declare const DaemonOutputsSchema: z$2.ZodObject<{
5302
5453
  daemonName: z$2.ZodString;
5454
+ publicEndpoints: z$2.ZodOptional<z$2.ZodObject<{}, z$2.core.$catchall<z$2.ZodLazy<z$2.ZodObject<{
5455
+ host: z$2.ZodString;
5456
+ loadBalancerEndpoint: z$2.ZodOptional<z$2.ZodUnion<readonly [z$2.ZodObject<{
5457
+ dnsName: z$2.ZodString;
5458
+ hostedZoneId: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
5459
+ }, z$2.core.$strip>, z$2.ZodNull]>>;
5460
+ url: z$2.ZodString;
5461
+ wildcardHost: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
5462
+ }, z$2.core.$strip>>>>>;
5303
5463
  running: z$2.ZodBoolean;
5304
5464
  }, z$2.core.$strip>;
5305
5465
  type DaemonOutputs = z$2.infer<typeof DaemonOutputsSchema>;
5306
5466
  //#endregion
5467
+ //#region src/generated/zod/daemon-runtime-schema.d.ts
5468
+ declare const DaemonRuntimeSchema: z$2.ZodObject<{
5469
+ mounts: z$2.ZodOptional<z$2.ZodArray<z$2.ZodObject<{
5470
+ options: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
5471
+ source: z$2.ZodString;
5472
+ target: z$2.ZodString;
5473
+ }, z$2.core.$strip>>>;
5474
+ networkMode: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
5475
+ pidNamespace: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
5476
+ privileged: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodBoolean>>;
5477
+ user: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
5478
+ }, z$2.core.$strip>;
5479
+ type DaemonRuntime = z$2.infer<typeof DaemonRuntimeSchema>;
5480
+ //#endregion
5307
5481
  //#region src/generated/zod/daemon-schema.d.ts
5308
5482
  declare const DaemonSchema: z$2.ZodObject<{
5309
5483
  cluster: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
@@ -5343,6 +5517,13 @@ declare const DaemonSchema: z$2.ZodObject<{
5343
5517
  min: z$2.ZodString;
5344
5518
  }, z$2.core.$strip>>;
5345
5519
  environment: z$2.ZodOptional<z$2.ZodObject<{}, z$2.core.$catchall<z$2.ZodString>>>;
5520
+ healthCheck: z$2.ZodOptional<z$2.ZodUnion<readonly [z$2.ZodObject<{
5521
+ failureThreshold: z$2.ZodOptional<z$2.ZodInt>;
5522
+ method: z$2.ZodOptional<z$2.ZodString>;
5523
+ path: z$2.ZodOptional<z$2.ZodString>;
5524
+ port: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodInt>>;
5525
+ timeoutSeconds: z$2.ZodOptional<z$2.ZodInt>;
5526
+ }, z$2.core.$strip>, z$2.ZodNull]>>;
5346
5527
  id: z$2.ZodString;
5347
5528
  links: z$2.ZodArray<z$2.ZodObject<{
5348
5529
  id: z$2.ZodString;
@@ -5354,6 +5535,27 @@ declare const DaemonSchema: z$2.ZodObject<{
5354
5535
  }, z$2.core.$strip>>;
5355
5536
  permissions: z$2.ZodString;
5356
5537
  pool: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
5538
+ publicEndpoints: z$2.ZodArray<z$2.ZodObject<{
5539
+ hostLabel: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
5540
+ name: z$2.ZodString;
5541
+ port: z$2.ZodInt;
5542
+ protocol: z$2.ZodEnum<{
5543
+ http: "http";
5544
+ tcp: "tcp";
5545
+ }>;
5546
+ wildcardSubdomains: z$2.ZodOptional<z$2.ZodBoolean>;
5547
+ }, z$2.core.$strip>>;
5548
+ runtime: z$2.ZodOptional<z$2.ZodUnion<readonly [z$2.ZodObject<{
5549
+ mounts: z$2.ZodOptional<z$2.ZodArray<z$2.ZodObject<{
5550
+ options: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
5551
+ source: z$2.ZodString;
5552
+ target: z$2.ZodString;
5553
+ }, z$2.core.$strip>>>;
5554
+ networkMode: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
5555
+ pidNamespace: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
5556
+ privileged: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodBoolean>>;
5557
+ user: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
5558
+ }, z$2.core.$strip>, z$2.ZodNull]>>;
5357
5559
  }, z$2.core.$strip>;
5358
5560
  type Daemon$1 = z$2.infer<typeof DaemonSchema>;
5359
5561
  //#endregion
@@ -6126,7 +6328,7 @@ type EventState = z$2.infer<typeof EventStateSchema>;
6126
6328
  //#endregion
6127
6329
  //#region src/generated/zod/expose-protocol-schema.d.ts
6128
6330
  /**
6129
- * @description Protocol for exposed ports.
6331
+ * @description Protocol for public workload endpoints.
6130
6332
  */
6131
6333
  declare const ExposeProtocolSchema: z$2.ZodEnum<{
6132
6334
  http: "http";
@@ -7180,8 +7382,8 @@ declare const HorizonContainerHeartbeatDataSchema: z$2.ZodObject<{
7180
7382
  }, z$2.core.$strip>;
7181
7383
  schedulingMode: z$2.ZodEnum<{
7182
7384
  stateful: "stateful";
7183
- daemon: "daemon";
7184
7385
  replicated: "replicated";
7386
+ daemon: "daemon";
7185
7387
  }>;
7186
7388
  status: z$2.ZodObject<{
7187
7389
  collectionIssues: z$2.ZodArray<z$2.ZodObject<{
@@ -7240,16 +7442,6 @@ declare const HttpMethodSchema: z$2.ZodEnum<{
7240
7442
  }>;
7241
7443
  type HttpMethod = z$2.infer<typeof HttpMethodSchema>;
7242
7444
  //#endregion
7243
- //#region src/generated/zod/ingress-schema.d.ts
7244
- /**
7245
- * @description Controls network accessibility of the worker.
7246
- */
7247
- declare const IngressSchema: z$2.ZodEnum<{
7248
- public: "public";
7249
- private: "private";
7250
- }>;
7251
- type Ingress = z$2.infer<typeof IngressSchema>;
7252
- //#endregion
7253
7445
  //#region src/generated/zod/kubernetes-build-heartbeat-data-schema.d.ts
7254
7446
  declare const KubernetesBuildHeartbeatDataSchema: z$2.ZodObject<{
7255
7447
  active: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodInt>>;
@@ -8721,9 +8913,9 @@ declare const LocalContainerHeartbeatDataSchema: z$2.ZodObject<{
8721
8913
  value: z$2.ZodNumber;
8722
8914
  }, z$2.core.$strip>, z$2.ZodNull]>>;
8723
8915
  kind: z$2.ZodEnum<{
8916
+ daemon: "daemon";
8724
8917
  container: "container";
8725
8918
  process: "process";
8726
- daemon: "daemon";
8727
8919
  }>;
8728
8920
  memory: z$2.ZodOptional<z$2.ZodUnion<readonly [z$2.ZodObject<{
8729
8921
  unit: z$2.ZodEnum<{
@@ -8846,9 +9038,9 @@ declare const LocalDaemonHeartbeatDataSchema: z$2.ZodObject<{
8846
9038
  value: z$2.ZodNumber;
8847
9039
  }, z$2.core.$strip>, z$2.ZodNull]>>;
8848
9040
  kind: z$2.ZodEnum<{
9041
+ daemon: "daemon";
8849
9042
  container: "container";
8850
9043
  process: "process";
8851
- daemon: "daemon";
8852
9044
  }>;
8853
9045
  memory: z$2.ZodOptional<z$2.ZodUnion<readonly [z$2.ZodObject<{
8854
9046
  unit: z$2.ZodEnum<{
@@ -9057,9 +9249,9 @@ type LocalRuntimeEventSubject = z$2.infer<typeof LocalRuntimeEventSubjectSchema>
9057
9249
  //#endregion
9058
9250
  //#region src/generated/zod/local-runtime-unit-kind-schema.d.ts
9059
9251
  declare const LocalRuntimeUnitKindSchema: z$2.ZodEnum<{
9252
+ daemon: "daemon";
9060
9253
  container: "container";
9061
9254
  process: "process";
9062
- daemon: "daemon";
9063
9255
  }>;
9064
9256
  type LocalRuntimeUnitKind = z$2.infer<typeof LocalRuntimeUnitKindSchema>;
9065
9257
  //#endregion
@@ -9077,9 +9269,9 @@ declare const LocalRuntimeUnitStatusSchema: z$2.ZodObject<{
9077
9269
  value: z$2.ZodNumber;
9078
9270
  }, z$2.core.$strip>, z$2.ZodNull]>>;
9079
9271
  kind: z$2.ZodEnum<{
9272
+ daemon: "daemon";
9080
9273
  container: "container";
9081
9274
  process: "process";
9082
- daemon: "daemon";
9083
9275
  }>;
9084
9276
  memory: z$2.ZodOptional<z$2.ZodUnion<readonly [z$2.ZodObject<{
9085
9277
  unit: z$2.ZodEnum<{
@@ -9302,9 +9494,9 @@ declare const LocalWorkerHeartbeatDataSchema: z$2.ZodObject<{
9302
9494
  value: z$2.ZodNumber;
9303
9495
  }, z$2.core.$strip>, z$2.ZodNull]>>;
9304
9496
  kind: z$2.ZodEnum<{
9497
+ daemon: "daemon";
9305
9498
  container: "container";
9306
9499
  process: "process";
9307
- daemon: "daemon";
9308
9500
  }>;
9309
9501
  memory: z$2.ZodOptional<z$2.ZodUnion<readonly [z$2.ZodObject<{
9310
9502
  unit: z$2.ZodEnum<{
@@ -9368,6 +9560,25 @@ declare const LocalWorkerHeartbeatDataSchema: z$2.ZodObject<{
9368
9560
  }, z$2.core.$strip>;
9369
9561
  type LocalWorkerHeartbeatData = z$2.infer<typeof LocalWorkerHeartbeatDataSchema>;
9370
9562
  //#endregion
9563
+ //#region src/generated/zod/machine-profile-schema.d.ts
9564
+ /**
9565
+ * @description Machine resource profile for a capacity group.\n\nRepresents the hardware specifications for machines in a capacity group.\nThese are hardware totals (what the instance type advertises), not allocatable\ncapacity. The managed container scheduler internally subtracts system reserves for planning.
9566
+ */
9567
+ declare const MachineProfileSchema: z$2.ZodObject<{
9568
+ architecture: z$2.ZodOptional<z$2.ZodUnion<readonly [z$2.ZodEnum<{
9569
+ arm64: "arm64";
9570
+ x86_64: "x86_64";
9571
+ }>, z$2.ZodNull]>>;
9572
+ cpu: z$2.ZodString;
9573
+ ephemeralStorageBytes: z$2.ZodInt;
9574
+ gpu: z$2.ZodOptional<z$2.ZodUnion<readonly [z$2.ZodObject<{
9575
+ count: z$2.ZodInt;
9576
+ type: z$2.ZodString;
9577
+ }, z$2.core.$strip>, z$2.ZodNull]>>;
9578
+ memoryBytes: z$2.ZodInt;
9579
+ }, z$2.core.$strip>;
9580
+ type MachineProfile = z$2.infer<typeof MachineProfileSchema>;
9581
+ //#endregion
9371
9582
  //#region src/generated/zod/managed-runtime-event-involved-object-schema.d.ts
9372
9583
  declare const ManagedRuntimeEventInvolvedObjectSchema: z$2.ZodObject<{
9373
9584
  details: z$2.ZodOptional<z$2.ZodUnion<readonly [z$2.ZodAny, z$2.ZodNull]>>;
@@ -10312,6 +10523,22 @@ declare const ProviderLifecycleStateSchema: z$2.ZodEnum<{
10312
10523
  }>;
10313
10524
  type ProviderLifecycleState = z$2.infer<typeof ProviderLifecycleStateSchema>;
10314
10525
  //#endregion
10526
+ //#region src/generated/zod/public-endpoint-schema.d.ts
10527
+ /**
10528
+ * @description Public endpoint configuration for port-backed workload resources.
10529
+ */
10530
+ declare const PublicEndpointSchema: z$2.ZodObject<{
10531
+ hostLabel: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
10532
+ name: z$2.ZodString;
10533
+ port: z$2.ZodInt;
10534
+ protocol: z$2.ZodEnum<{
10535
+ http: "http";
10536
+ tcp: "tcp";
10537
+ }>;
10538
+ wildcardSubdomains: z$2.ZodOptional<z$2.ZodBoolean>;
10539
+ }, z$2.core.$strip>;
10540
+ type PublicEndpoint = z$2.infer<typeof PublicEndpointSchema>;
10541
+ //#endregion
10315
10542
  //#region src/generated/zod/queue-heartbeat-data-schema.d.ts
10316
10543
  declare const QueueHeartbeatDataSchema: z$2.ZodUnion<readonly [z$2.ZodIntersection<z$2.ZodLazy<z$2.ZodObject<{
10317
10544
  approximateCounts: z$2.ZodBoolean;
@@ -11541,9 +11768,9 @@ declare const ResourceHeartbeatDataSchema: z$2.ZodUnion<readonly [z$2.ZodObject<
11541
11768
  value: z$2.ZodNumber;
11542
11769
  }, z$2.core.$strip>, z$2.ZodNull]>>;
11543
11770
  kind: z$2.ZodEnum<{
11771
+ daemon: "daemon";
11544
11772
  container: "container";
11545
11773
  process: "process";
11546
- daemon: "daemon";
11547
11774
  }>;
11548
11775
  memory: z$2.ZodOptional<z$2.ZodUnion<readonly [z$2.ZodObject<{
11549
11776
  unit: z$2.ZodEnum<{
@@ -11713,8 +11940,8 @@ declare const ResourceHeartbeatDataSchema: z$2.ZodUnion<readonly [z$2.ZodObject<
11713
11940
  }, z$2.core.$strip>;
11714
11941
  schedulingMode: z$2.ZodEnum<{
11715
11942
  stateful: "stateful";
11716
- daemon: "daemon";
11717
11943
  replicated: "replicated";
11944
+ daemon: "daemon";
11718
11945
  }>;
11719
11946
  status: z$2.ZodObject<{
11720
11947
  collectionIssues: z$2.ZodArray<z$2.ZodObject<{
@@ -11937,9 +12164,9 @@ declare const ResourceHeartbeatDataSchema: z$2.ZodUnion<readonly [z$2.ZodObject<
11937
12164
  value: z$2.ZodNumber;
11938
12165
  }, z$2.core.$strip>, z$2.ZodNull]>>;
11939
12166
  kind: z$2.ZodEnum<{
12167
+ daemon: "daemon";
11940
12168
  container: "container";
11941
12169
  process: "process";
11942
- daemon: "daemon";
11943
12170
  }>;
11944
12171
  memory: z$2.ZodOptional<z$2.ZodUnion<readonly [z$2.ZodObject<{
11945
12172
  unit: z$2.ZodEnum<{
@@ -12583,9 +12810,9 @@ declare const ResourceHeartbeatDataSchema: z$2.ZodUnion<readonly [z$2.ZodObject<
12583
12810
  value: z$2.ZodNumber;
12584
12811
  }, z$2.core.$strip>, z$2.ZodNull]>>;
12585
12812
  kind: z$2.ZodEnum<{
12813
+ daemon: "daemon";
12586
12814
  container: "container";
12587
12815
  process: "process";
12588
- daemon: "daemon";
12589
12816
  }>;
12590
12817
  memory: z$2.ZodOptional<z$2.ZodUnion<readonly [z$2.ZodObject<{
12591
12818
  unit: z$2.ZodEnum<{
@@ -16130,9 +16357,9 @@ declare const ResourceHeartbeatSchema: z$2.ZodObject<{
16130
16357
  value: z$2.ZodNumber;
16131
16358
  }, z$2.core.$strip>, z$2.ZodNull]>>;
16132
16359
  kind: z$2.ZodEnum<{
16360
+ daemon: "daemon";
16133
16361
  container: "container";
16134
16362
  process: "process";
16135
- daemon: "daemon";
16136
16363
  }>;
16137
16364
  memory: z$2.ZodOptional<z$2.ZodUnion<readonly [z$2.ZodObject<{
16138
16365
  unit: z$2.ZodEnum<{
@@ -16302,8 +16529,8 @@ declare const ResourceHeartbeatSchema: z$2.ZodObject<{
16302
16529
  }, z$2.core.$strip>;
16303
16530
  schedulingMode: z$2.ZodEnum<{
16304
16531
  stateful: "stateful";
16305
- daemon: "daemon";
16306
16532
  replicated: "replicated";
16533
+ daemon: "daemon";
16307
16534
  }>;
16308
16535
  status: z$2.ZodObject<{
16309
16536
  collectionIssues: z$2.ZodArray<z$2.ZodObject<{
@@ -16526,9 +16753,9 @@ declare const ResourceHeartbeatSchema: z$2.ZodObject<{
16526
16753
  value: z$2.ZodNumber;
16527
16754
  }, z$2.core.$strip>, z$2.ZodNull]>>;
16528
16755
  kind: z$2.ZodEnum<{
16756
+ daemon: "daemon";
16529
16757
  container: "container";
16530
16758
  process: "process";
16531
- daemon: "daemon";
16532
16759
  }>;
16533
16760
  memory: z$2.ZodOptional<z$2.ZodUnion<readonly [z$2.ZodObject<{
16534
16761
  unit: z$2.ZodEnum<{
@@ -17172,9 +17399,9 @@ declare const ResourceHeartbeatSchema: z$2.ZodObject<{
17172
17399
  value: z$2.ZodNumber;
17173
17400
  }, z$2.core.$strip>, z$2.ZodNull]>>;
17174
17401
  kind: z$2.ZodEnum<{
17402
+ daemon: "daemon";
17175
17403
  container: "container";
17176
17404
  process: "process";
17177
- daemon: "daemon";
17178
17405
  }>;
17179
17406
  memory: z$2.ZodOptional<z$2.ZodUnion<readonly [z$2.ZodObject<{
17180
17407
  unit: z$2.ZodEnum<{
@@ -20062,8 +20289,8 @@ declare const ResourceHeartbeatSchema: z$2.ZodObject<{
20062
20289
  collectedAt: z$2.ZodISODateTime;
20063
20290
  format: z$2.ZodEnum<{
20064
20291
  json: "json";
20065
- text: "text";
20066
20292
  yaml: "yaml";
20293
+ text: "text";
20067
20294
  }>;
20068
20295
  source: z$2.ZodString;
20069
20296
  truncated: z$2.ZodBoolean;
@@ -20689,6 +20916,173 @@ declare const ServiceActivationHeartbeatStatusSchema: z$2.ZodObject<{
20689
20916
  }, z$2.core.$strip>;
20690
20917
  type ServiceActivationHeartbeatStatus = z$2.infer<typeof ServiceActivationHeartbeatStatusSchema>;
20691
20918
  //#endregion
20919
+ //#region src/generated/zod/stack-input-default-value-schema.d.ts
20920
+ /**
20921
+ * @description Stack input default value.
20922
+ */
20923
+ declare const StackInputDefaultValueSchema: z$2.ZodUnion<readonly [z$2.ZodObject<{
20924
+ type: z$2.ZodEnum<{
20925
+ string: "string";
20926
+ }>;
20927
+ value: z$2.ZodString;
20928
+ }, z$2.core.$strip>, z$2.ZodObject<{
20929
+ type: z$2.ZodEnum<{
20930
+ number: "number";
20931
+ }>;
20932
+ value: z$2.ZodString;
20933
+ }, z$2.core.$strip>, z$2.ZodObject<{
20934
+ type: z$2.ZodEnum<{
20935
+ boolean: "boolean";
20936
+ }>;
20937
+ value: z$2.ZodBoolean;
20938
+ }, z$2.core.$strip>, z$2.ZodObject<{
20939
+ type: z$2.ZodEnum<{
20940
+ stringList: "stringList";
20941
+ }>;
20942
+ value: z$2.ZodArray<z$2.ZodString>;
20943
+ }, z$2.core.$strip>]>;
20944
+ type StackInputDefaultValue = z$2.infer<typeof StackInputDefaultValueSchema>;
20945
+ //#endregion
20946
+ //#region src/generated/zod/stack-input-definition-schema.d.ts
20947
+ /**
20948
+ * @description Stack input definition serialized into a release stack.
20949
+ */
20950
+ declare const StackInputDefinitionSchema: z$2.ZodObject<{
20951
+ default: z$2.ZodOptional<z$2.ZodUnion<readonly [z$2.ZodUnion<readonly [z$2.ZodObject<{
20952
+ type: z$2.ZodEnum<{
20953
+ string: "string";
20954
+ }>;
20955
+ value: z$2.ZodString;
20956
+ }, z$2.core.$strip>, z$2.ZodObject<{
20957
+ type: z$2.ZodEnum<{
20958
+ number: "number";
20959
+ }>;
20960
+ value: z$2.ZodString;
20961
+ }, z$2.core.$strip>, z$2.ZodObject<{
20962
+ type: z$2.ZodEnum<{
20963
+ boolean: "boolean";
20964
+ }>;
20965
+ value: z$2.ZodBoolean;
20966
+ }, z$2.core.$strip>, z$2.ZodObject<{
20967
+ type: z$2.ZodEnum<{
20968
+ stringList: "stringList";
20969
+ }>;
20970
+ value: z$2.ZodArray<z$2.ZodString>;
20971
+ }, z$2.core.$strip>]>, z$2.ZodNull]>>;
20972
+ description: z$2.ZodString;
20973
+ env: z$2.ZodOptional<z$2.ZodArray<z$2.ZodObject<{
20974
+ name: z$2.ZodString;
20975
+ targetResources: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodArray<z$2.ZodString>>>;
20976
+ type: z$2.ZodOptional<z$2.ZodUnion<readonly [z$2.ZodEnum<{
20977
+ plain: "plain";
20978
+ secret: "secret";
20979
+ }>, z$2.ZodNull]>>;
20980
+ }, z$2.core.$strip>>>;
20981
+ id: z$2.ZodString;
20982
+ kind: z$2.ZodEnum<{
20983
+ string: "string";
20984
+ number: "number";
20985
+ boolean: "boolean";
20986
+ enum: "enum";
20987
+ stringList: "stringList";
20988
+ secret: "secret";
20989
+ integer: "integer";
20990
+ }>;
20991
+ label: z$2.ZodString;
20992
+ placeholder: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
20993
+ platforms: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodArray<z$2.ZodEnum<{
20994
+ aws: "aws";
20995
+ gcp: "gcp";
20996
+ azure: "azure";
20997
+ kubernetes: "kubernetes";
20998
+ local: "local";
20999
+ test: "test";
21000
+ }>>>>;
21001
+ providedBy: z$2.ZodArray<z$2.ZodEnum<{
21002
+ developer: "developer";
21003
+ deployer: "deployer";
21004
+ }>>;
21005
+ required: z$2.ZodBoolean;
21006
+ validation: z$2.ZodOptional<z$2.ZodUnion<readonly [z$2.ZodObject<{
21007
+ format: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
21008
+ max: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
21009
+ maxItems: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodInt>>;
21010
+ maxLength: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodInt>>;
21011
+ min: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
21012
+ minItems: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodInt>>;
21013
+ minLength: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodInt>>;
21014
+ pattern: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
21015
+ values: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodArray<z$2.ZodString>>>;
21016
+ }, z$2.core.$strip>, z$2.ZodNull]>>;
21017
+ }, z$2.core.$strip>;
21018
+ type StackInputDefinition = z$2.infer<typeof StackInputDefinitionSchema>;
21019
+ //#endregion
21020
+ //#region src/generated/zod/stack-input-environment-mapping-schema.d.ts
21021
+ /**
21022
+ * @description How a resolved stack input is injected into runtime environment variables.
21023
+ */
21024
+ declare const StackInputEnvironmentMappingSchema: z$2.ZodObject<{
21025
+ name: z$2.ZodString;
21026
+ targetResources: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodArray<z$2.ZodString>>>;
21027
+ type: z$2.ZodOptional<z$2.ZodUnion<readonly [z$2.ZodEnum<{
21028
+ plain: "plain";
21029
+ secret: "secret";
21030
+ }>, z$2.ZodNull]>>;
21031
+ }, z$2.core.$strip>;
21032
+ type StackInputEnvironmentMapping = z$2.infer<typeof StackInputEnvironmentMappingSchema>;
21033
+ //#endregion
21034
+ //#region src/generated/zod/stack-input-environment-variable-type-schema.d.ts
21035
+ /**
21036
+ * @description Environment variable handling for a stack input mapping.
21037
+ */
21038
+ declare const StackInputEnvironmentVariableTypeSchema: z$2.ZodEnum<{
21039
+ plain: "plain";
21040
+ secret: "secret";
21041
+ }>;
21042
+ type StackInputEnvironmentVariableType = z$2.infer<typeof StackInputEnvironmentVariableTypeSchema>;
21043
+ //#endregion
21044
+ //#region src/generated/zod/stack-input-kind-schema.d.ts
21045
+ /**
21046
+ * @description Primitive stack input kind.
21047
+ */
21048
+ declare const StackInputKindSchema: z$2.ZodEnum<{
21049
+ string: "string";
21050
+ number: "number";
21051
+ boolean: "boolean";
21052
+ enum: "enum";
21053
+ stringList: "stringList";
21054
+ secret: "secret";
21055
+ integer: "integer";
21056
+ }>;
21057
+ type StackInputKind = z$2.infer<typeof StackInputKindSchema>;
21058
+ //#endregion
21059
+ //#region src/generated/zod/stack-input-provider-schema.d.ts
21060
+ /**
21061
+ * @description Who can provide a stack input value.
21062
+ */
21063
+ declare const StackInputProviderSchema: z$2.ZodEnum<{
21064
+ developer: "developer";
21065
+ deployer: "deployer";
21066
+ }>;
21067
+ type StackInputProvider = z$2.infer<typeof StackInputProviderSchema>;
21068
+ //#endregion
21069
+ //#region src/generated/zod/stack-input-validation-schema.d.ts
21070
+ /**
21071
+ * @description Portable stack input validation constraints.
21072
+ */
21073
+ declare const StackInputValidationSchema: z$2.ZodObject<{
21074
+ format: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
21075
+ max: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
21076
+ maxItems: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodInt>>;
21077
+ maxLength: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodInt>>;
21078
+ min: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
21079
+ minItems: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodInt>>;
21080
+ minLength: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodInt>>;
21081
+ pattern: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
21082
+ values: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodArray<z$2.ZodString>>>;
21083
+ }, z$2.core.$strip>;
21084
+ type StackInputValidation = z$2.infer<typeof StackInputValidationSchema>;
21085
+ //#endregion
20692
21086
  //#region src/generated/zod/stack-resource-state-schema.d.ts
20693
21087
  /**
20694
21088
  * @description Represents the state of a single resource within the stack for a specific platform.
@@ -20758,6 +21152,74 @@ type StackResourceState = z$2.infer<typeof StackResourceStateSchema>;
20758
21152
  */
20759
21153
  declare const StackSchema: z$2.ZodObject<{
20760
21154
  id: z$2.ZodString;
21155
+ inputs: z$2.ZodOptional<z$2.ZodArray<z$2.ZodObject<{
21156
+ default: z$2.ZodOptional<z$2.ZodUnion<readonly [z$2.ZodUnion<readonly [z$2.ZodObject<{
21157
+ type: z$2.ZodEnum<{
21158
+ string: "string";
21159
+ }>;
21160
+ value: z$2.ZodString;
21161
+ }, z$2.core.$strip>, z$2.ZodObject<{
21162
+ type: z$2.ZodEnum<{
21163
+ number: "number";
21164
+ }>;
21165
+ value: z$2.ZodString;
21166
+ }, z$2.core.$strip>, z$2.ZodObject<{
21167
+ type: z$2.ZodEnum<{
21168
+ boolean: "boolean";
21169
+ }>;
21170
+ value: z$2.ZodBoolean;
21171
+ }, z$2.core.$strip>, z$2.ZodObject<{
21172
+ type: z$2.ZodEnum<{
21173
+ stringList: "stringList";
21174
+ }>;
21175
+ value: z$2.ZodArray<z$2.ZodString>;
21176
+ }, z$2.core.$strip>]>, z$2.ZodNull]>>;
21177
+ description: z$2.ZodString;
21178
+ env: z$2.ZodOptional<z$2.ZodArray<z$2.ZodObject<{
21179
+ name: z$2.ZodString;
21180
+ targetResources: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodArray<z$2.ZodString>>>;
21181
+ type: z$2.ZodOptional<z$2.ZodUnion<readonly [z$2.ZodEnum<{
21182
+ plain: "plain";
21183
+ secret: "secret";
21184
+ }>, z$2.ZodNull]>>;
21185
+ }, z$2.core.$strip>>>;
21186
+ id: z$2.ZodString;
21187
+ kind: z$2.ZodEnum<{
21188
+ string: "string";
21189
+ number: "number";
21190
+ boolean: "boolean";
21191
+ enum: "enum";
21192
+ stringList: "stringList";
21193
+ secret: "secret";
21194
+ integer: "integer";
21195
+ }>;
21196
+ label: z$2.ZodString;
21197
+ placeholder: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
21198
+ platforms: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodArray<z$2.ZodEnum<{
21199
+ aws: "aws";
21200
+ gcp: "gcp";
21201
+ azure: "azure";
21202
+ kubernetes: "kubernetes";
21203
+ local: "local";
21204
+ test: "test";
21205
+ }>>>>;
21206
+ providedBy: z$2.ZodArray<z$2.ZodEnum<{
21207
+ developer: "developer";
21208
+ deployer: "deployer";
21209
+ }>>;
21210
+ required: z$2.ZodBoolean;
21211
+ validation: z$2.ZodOptional<z$2.ZodUnion<readonly [z$2.ZodObject<{
21212
+ format: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
21213
+ max: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
21214
+ maxItems: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodInt>>;
21215
+ maxLength: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodInt>>;
21216
+ min: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
21217
+ minItems: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodInt>>;
21218
+ minLength: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodInt>>;
21219
+ pattern: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
21220
+ values: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodArray<z$2.ZodString>>>;
21221
+ }, z$2.core.$strip>, z$2.ZodNull]>>;
21222
+ }, z$2.core.$strip>>>;
20761
21223
  permissions: z$2.ZodOptional<z$2.ZodObject<{
20762
21224
  management: z$2.ZodOptional<z$2.ZodUnion<readonly [z$2.ZodObject<{
20763
21225
  extend: z$2.ZodObject<{}, z$2.core.$catchall<z$2.ZodArray<z$2.ZodLazy<z$2.ZodUnion<readonly [z$2.ZodLazy<z$2.ZodObject<{
@@ -21027,6 +21489,22 @@ type Stack$1 = z$2.infer<typeof StackSchema>;
21027
21489
  * @description User-customizable deployment settings specified at deploy time.\n\nThese settings are provided by the customer via CloudFormation parameters,\nTerraform attributes, CLI flags, or Helm values. They customize how the\ndeployment runs and what capabilities are enabled.\n\n**Key distinction**: StackSettings is user-customizable, while ManagementConfig\nis platform-derived (from the Manager\'s ServiceAccount).
21028
21490
  */
21029
21491
  declare const StackSettingsSchema: z$2.ZodObject<{
21492
+ compute: z$2.ZodOptional<z$2.ZodUnion<readonly [z$2.ZodObject<{
21493
+ pools: z$2.ZodOptional<z$2.ZodObject<{}, z$2.core.$catchall<z$2.ZodLazy<z$2.ZodUnion<readonly [z$2.ZodObject<{
21494
+ machine: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
21495
+ machines: z$2.ZodInt;
21496
+ mode: z$2.ZodEnum<{
21497
+ fixed: "fixed";
21498
+ }>;
21499
+ }, z$2.core.$strip>, z$2.ZodObject<{
21500
+ machine: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
21501
+ max: z$2.ZodInt;
21502
+ min: z$2.ZodInt;
21503
+ mode: z$2.ZodEnum<{
21504
+ autoscale: "autoscale";
21505
+ }>;
21506
+ }, z$2.core.$strip>]>>>>>;
21507
+ }, z$2.core.$strip>, z$2.ZodNull]>>;
21030
21508
  deploymentModel: z$2.ZodOptional<z$2.ZodEnum<{
21031
21509
  push: "push";
21032
21510
  pull: "pull";
@@ -21921,11 +22399,11 @@ type UploadCompleteRequest = z$2.infer<typeof UploadCompleteRequestSchema>;
21921
22399
  declare const UploadCompleteResponseSchema: z$2.ZodObject<{
21922
22400
  commandId: z$2.ZodString;
21923
22401
  state: z$2.ZodEnum<{
22402
+ SUCCEEDED: "SUCCEEDED";
22403
+ FAILED: "FAILED";
21924
22404
  PENDING_UPLOAD: "PENDING_UPLOAD";
21925
22405
  PENDING: "PENDING";
21926
22406
  DISPATCHED: "DISPATCHED";
21927
- SUCCEEDED: "SUCCEEDED";
21928
- FAILED: "FAILED";
21929
22407
  EXPIRED: "EXPIRED";
21930
22408
  }>;
21931
22409
  }, z$2.core.$strip>;
@@ -22685,9 +23163,9 @@ declare const WorkerHeartbeatDataSchema: z$2.ZodUnion<readonly [z$2.ZodIntersect
22685
23163
  value: z$2.ZodNumber;
22686
23164
  }, z$2.core.$strip>, z$2.ZodNull]>>;
22687
23165
  kind: z$2.ZodEnum<{
23166
+ daemon: "daemon";
22688
23167
  container: "container";
22689
23168
  process: "process";
22690
- daemon: "daemon";
22691
23169
  }>;
22692
23170
  memory: z$2.ZodOptional<z$2.ZodUnion<readonly [z$2.ZodObject<{
22693
23171
  unit: z$2.ZodEnum<{
@@ -22762,15 +23240,30 @@ type WorkerHeartbeatData = z$2.infer<typeof WorkerHeartbeatDataSchema>;
22762
23240
  declare const WorkerOutputsSchema: z$2.ZodObject<{
22763
23241
  commandsPushTarget: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
22764
23242
  identifier: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
22765
- loadBalancerEndpoint: z$2.ZodOptional<z$2.ZodUnion<readonly [z$2.ZodObject<{
22766
- dnsName: z$2.ZodString;
22767
- hostedZoneId: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
22768
- }, z$2.core.$strip>, z$2.ZodNull]>>;
22769
- url: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
23243
+ publicEndpoints: z$2.ZodOptional<z$2.ZodObject<{}, z$2.core.$catchall<z$2.ZodLazy<z$2.ZodObject<{
23244
+ host: z$2.ZodString;
23245
+ loadBalancerEndpoint: z$2.ZodOptional<z$2.ZodUnion<readonly [z$2.ZodObject<{
23246
+ dnsName: z$2.ZodString;
23247
+ hostedZoneId: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
23248
+ }, z$2.core.$strip>, z$2.ZodNull]>>;
23249
+ url: z$2.ZodString;
23250
+ wildcardHost: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
23251
+ }, z$2.core.$strip>>>>>;
22770
23252
  workerName: z$2.ZodString;
22771
23253
  }, z$2.core.$strip>;
22772
23254
  type WorkerOutputs = z$2.infer<typeof WorkerOutputsSchema>;
22773
23255
  //#endregion
23256
+ //#region src/generated/zod/worker-public-endpoint-schema.d.ts
23257
+ /**
23258
+ * @description Public endpoint configuration for Worker resources.
23259
+ */
23260
+ declare const WorkerPublicEndpointSchema: z$2.ZodObject<{
23261
+ hostLabel: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
23262
+ name: z$2.ZodString;
23263
+ wildcardSubdomains: z$2.ZodOptional<z$2.ZodBoolean>;
23264
+ }, z$2.core.$strip>;
23265
+ type WorkerPublicEndpoint = z$2.infer<typeof WorkerPublicEndpointSchema>;
23266
+ //#endregion
22774
23267
  //#region src/generated/zod/worker-schema.d.ts
22775
23268
  /**
22776
23269
  * @description Represents a serverless worker that executes code in response to triggers or direct invocations.\nWorkers are the primary compute resource in serverless applications, designed to be stateless and ephemeral.
@@ -22809,16 +23302,17 @@ declare const WorkerSchema: z$2.ZodObject<{
22809
23302
  concurrencyLimit: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodInt>>;
22810
23303
  environment: z$2.ZodOptional<z$2.ZodObject<{}, z$2.core.$catchall<z$2.ZodString>>>;
22811
23304
  id: z$2.ZodString;
22812
- ingress: z$2.ZodOptional<z$2.ZodDefault<z$2.ZodEnum<{
22813
- public: "public";
22814
- private: "private";
22815
- }>>>;
22816
23305
  links: z$2.ZodArray<z$2.ZodObject<{
22817
23306
  id: z$2.ZodString;
22818
23307
  type: z$2.ZodString;
22819
23308
  }, z$2.core.$strip>>;
22820
23309
  memoryMb: z$2.ZodOptional<z$2.ZodDefault<z$2.ZodInt>>;
22821
23310
  permissions: z$2.ZodString;
23311
+ publicEndpoints: z$2.ZodArray<z$2.ZodObject<{
23312
+ hostLabel: z$2.ZodOptional<z$2.ZodNullable<z$2.ZodString>>;
23313
+ name: z$2.ZodString;
23314
+ wildcardSubdomains: z$2.ZodOptional<z$2.ZodBoolean>;
23315
+ }, z$2.core.$strip>>;
22822
23316
  readinessProbe: z$2.ZodOptional<z$2.ZodUnion<readonly [z$2.ZodObject<{
22823
23317
  method: z$2.ZodOptional<z$2.ZodEnum<{
22824
23318
  GET: "GET";
@@ -23006,6 +23500,10 @@ declare class Storage {
23006
23500
  }
23007
23501
  //#endregion
23008
23502
  //#region src/worker.d.ts
23503
+ interface WorkerPublicEndpointOptions {
23504
+ hostLabel?: string;
23505
+ wildcardSubdomains?: boolean;
23506
+ }
23009
23507
  /**
23010
23508
  * Represents a serverless worker that executes code in response to triggers or direct invocations.
23011
23509
  * Workers are the primary compute resource in serverless applications, designed to be stateless and ephemeral.
@@ -23053,15 +23551,12 @@ declare class Worker {
23053
23551
  */
23054
23552
  concurrencyLimit(limit: number | undefined): this;
23055
23553
  /**
23056
- * Controls network accessibility of the worker.
23057
- * - `public`: Worker accessible from the internet.
23058
- * - `private`: Worker accessible only via cloud API calls / triggers.
23059
- * - `vpc`: Worker deployed within a VPC with specific network controls.
23060
- * Default: `private`.
23061
- * @param value The ingress type.
23062
- * @returns The Worker builder instance.
23554
+ * Exposes a named public HTTP endpoint for the worker.
23555
+ *
23556
+ * If no public endpoint is declared, the worker is private and only reachable
23557
+ * through triggers, commands, or provider invocation APIs.
23063
23558
  */
23064
- ingress(value: Ingress): this;
23559
+ publicEndpoint(name: string, options?: WorkerPublicEndpointOptions): this;
23065
23560
  /**
23066
23561
  * Sets key-value pairs as environment variables for the worker.
23067
23562
  * @param env A map of environment variable names to their values.
@@ -23087,7 +23582,7 @@ declare class Worker {
23087
23582
  /**
23088
23583
  * Configures a readiness probe for the worker.
23089
23584
  * The probe will be executed after provisioning/update to verify the worker is ready.
23090
- * Only works with workers that have Public ingress.
23585
+ * Only works with workers that declare a public endpoint.
23091
23586
  *
23092
23587
  * @example
23093
23588
  * ```typescript
@@ -23098,7 +23593,7 @@ declare class Worker {
23098
23593
  *
23099
23594
  * const func = new Worker("my-api")
23100
23595
  * .code({ type: "image", image: "my-api:latest" })
23101
- * .ingress("public")
23596
+ * .publicEndpoint("api")
23102
23597
  * .readinessProbe(probe)
23103
23598
  * .build();
23104
23599
  * ```
@@ -23153,6 +23648,11 @@ declare class Worker {
23153
23648
  }
23154
23649
  //#endregion
23155
23650
  //#region src/container.d.ts
23651
+ type PublicEndpointOptions = "http" | "tcp" | {
23652
+ protocol: "http" | "tcp";
23653
+ hostLabel?: string;
23654
+ wildcardSubdomains?: boolean;
23655
+ };
23156
23656
  interface PersistentStorageOptions {
23157
23657
  /**
23158
23658
  * Mount path inside the container.
@@ -23265,19 +23765,17 @@ declare class Container {
23265
23765
  */
23266
23766
  ports(ports: number[]): this;
23267
23767
  /**
23268
- * Exposes a specific port publicly via load balancer.
23768
+ * Exposes a named public endpoint for a container port.
23769
+ *
23770
+ * Endpoint names are the stable contract for URLs, DNS, and runtime
23771
+ * environment injection.
23772
+ *
23773
+ * @param name Endpoint name, unique within this container.
23269
23774
  * @param port Port number to expose.
23270
- * @param protocol "http" for HTTPS with TLS termination, "tcp" for TCP passthrough.
23271
- * @returns The Container builder instance.
23272
- */
23273
- exposePort(port: number, protocol: "http" | "tcp"): this;
23274
- /**
23275
- * Convenience method to expose the first/primary port publicly.
23276
- * Must be called after .port() or .ports().
23277
- * @param protocol "http" for HTTPS with TLS termination, "tcp" for TCP passthrough.
23775
+ * @param options "http"/"tcp" or endpoint options.
23278
23776
  * @returns The Container builder instance.
23279
23777
  */
23280
- expose(protocol: "http" | "tcp"): this;
23778
+ publicEndpoint(name: string, port: number, options?: PublicEndpointOptions): this;
23281
23779
  /**
23282
23780
  * Sets environment variables for the container.
23283
23781
  * @param vars Key-value pairs of environment variables.
@@ -23352,7 +23850,76 @@ declare class Container {
23352
23850
  build(): Resource;
23353
23851
  }
23354
23852
  //#endregion
23853
+ //#region src/compute-cluster.d.ts
23854
+ /**
23855
+ * Hardware requirements for a compute pool.
23856
+ */
23857
+ type ComputePoolRequirements = {
23858
+ cpu: number | string;
23859
+ memory: string;
23860
+ ephemeralStorage?: string;
23861
+ architecture?: "arm64" | "x86_64";
23862
+ nestedVirtualization?: boolean;
23863
+ accelerators?: Array<{
23864
+ type: string;
23865
+ count: number;
23866
+ }>;
23867
+ };
23868
+ type ComputeChoiceRange = number | {
23869
+ min: number;
23870
+ max: number;
23871
+ default: number;
23872
+ };
23873
+ type ComputePoolScale = {
23874
+ type: "fixed";
23875
+ machines: ComputeChoiceRange;
23876
+ } | {
23877
+ type: "autoscale";
23878
+ min: ComputeChoiceRange;
23879
+ max: ComputeChoiceRange;
23880
+ };
23881
+ type ComputePoolInput = {
23882
+ requirements: ComputePoolRequirements;
23883
+ scale: ComputePoolScale;
23884
+ };
23885
+ /**
23886
+ * Declares a ComputeCluster — the setup-owned machine boundary for daemons and
23887
+ * containers. Each capacity group inside the cluster becomes a separate
23888
+ * Auto Scaling Group (AWS), Managed Instance Group (GCP), or VM Scale Set
23889
+ * (Azure). Daemons reference a cluster via `daemon.cluster(...)` and (when
23890
+ * the cluster has more than one capacity group) a specific group via
23891
+ * `daemon.pool(...)`.
23892
+ *
23893
+ * Application source declares portable pool requirements. Provider machine
23894
+ * names are selected later through deployment settings.
23895
+ */
23896
+ declare class ComputeCluster {
23897
+ private _config;
23898
+ constructor(id: string);
23899
+ /**
23900
+ * Returns the resource type for permission targets that apply to all
23901
+ * compute-cluster resources.
23902
+ */
23903
+ static any(): ResourceType;
23904
+ pool(groupId: string, config: ComputePoolInput): this;
23905
+ /**
23906
+ * Sets the container CIDR block used for inter-container networking inside
23907
+ * the cluster. Each machine gets a /24 subnet carved from this range.
23908
+ * Defaults to 10.244.0.0/16 if not specified.
23909
+ */
23910
+ containerCidr(cidr: string): this;
23911
+ /**
23912
+ * Builds and validates the cluster configuration.
23913
+ */
23914
+ build(): Resource;
23915
+ }
23916
+ //#endregion
23355
23917
  //#region src/daemon.d.ts
23918
+ type DaemonPublicEndpointOptions = ExposeProtocol | {
23919
+ protocol: ExposeProtocol;
23920
+ hostLabel?: string;
23921
+ wildcardSubdomains?: boolean;
23922
+ };
23356
23923
  /**
23357
23924
  * Represents a resident process that runs once per eligible machine or node.
23358
23925
  *
@@ -23399,6 +23966,28 @@ declare class Daemon {
23399
23966
  * Overrides the image default command.
23400
23967
  */
23401
23968
  command(command: string[]): this;
23969
+ /**
23970
+ * Sets backend runtime options for trusted daemon infrastructure.
23971
+ *
23972
+ * Use this only for daemons that intentionally need host-level access, such
23973
+ * as a privileged loader that installs or supervises a native host process.
23974
+ */
23975
+ runtime(runtime: DaemonRuntime): this;
23976
+ /**
23977
+ * Exposes a named public endpoint for a daemon port.
23978
+ */
23979
+ publicEndpoint(name: string, port: number, options?: DaemonPublicEndpointOptions): this;
23980
+ /**
23981
+ * Configures the HTTP health check used by public daemon endpoint load balancers.
23982
+ */
23983
+ healthCheck(config: HealthCheck): this;
23984
+ /**
23985
+ * Configures readiness probe (alias for healthCheck).
23986
+ */
23987
+ readinessProbe(config: {
23988
+ method: string;
23989
+ path: string;
23990
+ }): this;
23402
23991
  /**
23403
23992
  * Sets key-value pairs as environment variables for the daemon.
23404
23993
  * @param env A map of environment variable names to their values.
@@ -23715,6 +24304,79 @@ declare class ServiceAccount {
23715
24304
  build(): Resource;
23716
24305
  }
23717
24306
  //#endregion
24307
+ //#region src/input.d.ts
24308
+ declare const stackInputDraftSymbol: unique symbol;
24309
+ declare const stackInputDefinitionsSymbol: unique symbol;
24310
+ type StackInputValue = string | number | boolean | string[];
24311
+ type OneOrMany<T> = T | readonly T[];
24312
+ type StackInputEnvMapping = string | {
24313
+ name: string;
24314
+ targetResources?: readonly string[];
24315
+ type?: StackInputEnvironmentVariableType;
24316
+ };
24317
+ interface CommonInputOptions<TDefault extends StackInputValue> {
24318
+ providedBy: OneOrMany<StackInputProvider>;
24319
+ required: boolean;
24320
+ label: string;
24321
+ description: string;
24322
+ placeholder?: string;
24323
+ default?: TDefault;
24324
+ platforms?: readonly Platform[];
24325
+ env?: OneOrMany<StackInputEnvMapping>;
24326
+ }
24327
+ interface StringInputOptions extends CommonInputOptions<string> {
24328
+ minLength?: number;
24329
+ maxLength?: number;
24330
+ pattern?: string;
24331
+ format?: string;
24332
+ }
24333
+ interface SecretInputOptions extends Omit<CommonInputOptions<string>, "default"> {
24334
+ minLength?: number;
24335
+ maxLength?: number;
24336
+ pattern?: string;
24337
+ format?: string;
24338
+ }
24339
+ interface NumberInputOptions extends CommonInputOptions<number> {
24340
+ min?: number;
24341
+ max?: number;
24342
+ }
24343
+ interface IntegerInputOptions extends CommonInputOptions<number> {
24344
+ min?: number;
24345
+ max?: number;
24346
+ }
24347
+ interface BooleanInputOptions extends CommonInputOptions<boolean> {}
24348
+ interface EnumInputOptions extends CommonInputOptions<string> {
24349
+ placeholder?: string;
24350
+ }
24351
+ interface StringListInputOptions extends CommonInputOptions<string[]> {
24352
+ minItems?: number;
24353
+ maxItems?: number;
24354
+ }
24355
+ interface StackInputRef<TValue extends StackInputValue = StackInputValue> {
24356
+ readonly id: string;
24357
+ readonly kind: StackInputKind;
24358
+ readonly __value?: TValue;
24359
+ }
24360
+ type StackInputCollection = {
24361
+ readonly [stackInputDefinitionsSymbol]: readonly StackInputDefinition[];
24362
+ };
24363
+ interface StackInputDraft<TValue extends StackInputValue = StackInputValue> {
24364
+ readonly [stackInputDraftSymbol]: true;
24365
+ readonly kind: StackInputKind;
24366
+ readonly options: CommonInputOptions<TValue>;
24367
+ readonly validation: StackInputValidation;
24368
+ }
24369
+ type StackInputSet<T extends Record<string, StackInputDraft>> = { readonly [K in keyof T]: T[K] extends StackInputDraft<infer TValue> ? StackInputRef<TValue> : never } & StackInputCollection;
24370
+ declare function inputs<const T extends Record<string, StackInputDraft>>(drafts: T): StackInputSet<T>;
24371
+ declare function getStackInputDefinitions(value: StackInputCollection | readonly StackInputDefinition[]): StackInputDefinition[];
24372
+ declare function defineStringInput(options: StringInputOptions): StackInputDraft<string>;
24373
+ declare function defineSecretInput(options: SecretInputOptions): StackInputDraft<string>;
24374
+ declare function defineNumberInput(options: NumberInputOptions): StackInputDraft<number>;
24375
+ declare function defineIntegerInput(options: IntegerInputOptions): StackInputDraft<number>;
24376
+ declare function defineBooleanInput(options: BooleanInputOptions): StackInputDraft<boolean>;
24377
+ declare function defineEnumInput<const TValues extends readonly [string, ...string[]]>(values: TValues, options: EnumInputOptions): StackInputDraft<TValues[number]>;
24378
+ declare function defineStringListInput(options: StringListInputOptions): StackInputDraft<string[]>;
24379
+ //#endregion
23718
24380
  //#region src/stack.d.ts
23719
24381
  /**
23720
24382
  * Options for adding a resource to a stack.
@@ -23757,6 +24419,12 @@ declare class Stack {
23757
24419
  * @returns The Stack builder instance.
23758
24420
  */
23759
24421
  permissions(config: PermissionsConfig): this;
24422
+ /**
24423
+ * Configure values that must be provided before setup or deployment can proceed.
24424
+ * @param inputs Stack input definitions created with alien.inputs({...}).
24425
+ * @returns The Stack builder instance.
24426
+ */
24427
+ inputs(inputs: StackInputCollection | readonly StackInputDefinition[]): this;
23760
24428
  /**
23761
24429
  * Gets the stack ID without building/validating the stack.
23762
24430
  * @returns The stack ID.
@@ -23807,16 +24475,17 @@ declare const ResourceSchemaMapping: {
23807
24475
  concurrencyLimit: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodInt>>;
23808
24476
  environment: z$1.ZodOptional<z$1.ZodObject<{}, z$1.core.$catchall<z$1.ZodString>>>;
23809
24477
  id: z$1.ZodString;
23810
- ingress: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodEnum<{
23811
- public: "public";
23812
- private: "private";
23813
- }>>>;
23814
24478
  links: z$1.ZodArray<z$1.ZodObject<{
23815
24479
  id: z$1.ZodString;
23816
24480
  type: z$1.ZodString;
23817
24481
  }, z$1.core.$strip>>;
23818
24482
  memoryMb: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodInt>>;
23819
24483
  permissions: z$1.ZodString;
24484
+ publicEndpoints: z$1.ZodArray<z$1.ZodObject<{
24485
+ hostLabel: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
24486
+ name: z$1.ZodString;
24487
+ wildcardSubdomains: z$1.ZodOptional<z$1.ZodBoolean>;
24488
+ }, z$1.core.$strip>>;
23820
24489
  readinessProbe: z$1.ZodOptional<z$1.ZodUnion<readonly [z$1.ZodObject<{
23821
24490
  method: z$1.ZodOptional<z$1.ZodEnum<{
23822
24491
  GET: "GET";
@@ -23857,11 +24526,15 @@ declare const ResourceSchemaMapping: {
23857
24526
  output: z$1.ZodObject<{
23858
24527
  commandsPushTarget: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
23859
24528
  identifier: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
23860
- loadBalancerEndpoint: z$1.ZodOptional<z$1.ZodUnion<readonly [z$1.ZodObject<{
23861
- dnsName: z$1.ZodString;
23862
- hostedZoneId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
23863
- }, z$1.core.$strip>, z$1.ZodNull]>>;
23864
- url: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
24529
+ publicEndpoints: z$1.ZodOptional<z$1.ZodObject<{}, z$1.core.$catchall<z$1.ZodLazy<z$1.ZodObject<{
24530
+ host: z$1.ZodString;
24531
+ loadBalancerEndpoint: z$1.ZodOptional<z$1.ZodUnion<readonly [z$1.ZodObject<{
24532
+ dnsName: z$1.ZodString;
24533
+ hostedZoneId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
24534
+ }, z$1.core.$strip>, z$1.ZodNull]>>;
24535
+ url: z$1.ZodString;
24536
+ wildcardHost: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
24537
+ }, z$1.core.$strip>>>>>;
23865
24538
  workerName: z$1.ZodString;
23866
24539
  }, z$1.core.$strip>;
23867
24540
  };
@@ -23940,11 +24613,17 @@ declare const ResourceSchemaMapping: {
23940
24613
  }, z$1.core.$strip>, z$1.ZodNull]>>;
23941
24614
  pool: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
23942
24615
  ports: z$1.ZodArray<z$1.ZodObject<{
23943
- expose: z$1.ZodOptional<z$1.ZodUnion<readonly [z$1.ZodEnum<{
24616
+ port: z$1.ZodInt;
24617
+ }, z$1.core.$strip>>;
24618
+ publicEndpoints: z$1.ZodArray<z$1.ZodObject<{
24619
+ hostLabel: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
24620
+ name: z$1.ZodString;
24621
+ port: z$1.ZodInt;
24622
+ protocol: z$1.ZodEnum<{
23944
24623
  http: "http";
23945
24624
  tcp: "tcp";
23946
- }>, z$1.ZodNull]>>;
23947
- port: z$1.ZodInt;
24625
+ }>;
24626
+ wildcardSubdomains: z$1.ZodOptional<z$1.ZodBoolean>;
23948
24627
  }, z$1.core.$strip>>;
23949
24628
  replicas: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodInt>>;
23950
24629
  stateful: z$1.ZodOptional<z$1.ZodBoolean>;
@@ -23953,11 +24632,16 @@ declare const ResourceSchemaMapping: {
23953
24632
  currentReplicas: z$1.ZodInt;
23954
24633
  desiredReplicas: z$1.ZodInt;
23955
24634
  internalDns: z$1.ZodString;
23956
- loadBalancerEndpoint: z$1.ZodOptional<z$1.ZodUnion<readonly [z$1.ZodObject<{
23957
- dnsName: z$1.ZodString;
23958
- hostedZoneId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
23959
- }, z$1.core.$strip>, z$1.ZodNull]>>;
23960
24635
  name: z$1.ZodString;
24636
+ publicEndpoints: z$1.ZodOptional<z$1.ZodObject<{}, z$1.core.$catchall<z$1.ZodLazy<z$1.ZodObject<{
24637
+ host: z$1.ZodString;
24638
+ loadBalancerEndpoint: z$1.ZodOptional<z$1.ZodUnion<readonly [z$1.ZodObject<{
24639
+ dnsName: z$1.ZodString;
24640
+ hostedZoneId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
24641
+ }, z$1.core.$strip>, z$1.ZodNull]>>;
24642
+ url: z$1.ZodString;
24643
+ wildcardHost: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
24644
+ }, z$1.core.$strip>>>>>;
23961
24645
  replicas: z$1.ZodArray<z$1.ZodObject<{
23962
24646
  containerIp: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
23963
24647
  healthy: z$1.ZodBoolean;
@@ -23971,7 +24655,6 @@ declare const ResourceSchemaMapping: {
23971
24655
  stopped: "stopped";
23972
24656
  failing: "failing";
23973
24657
  }>;
23974
- url: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
23975
24658
  }, z$1.core.$strip>;
23976
24659
  };
23977
24660
  storage: {
@@ -24563,5 +25246,5 @@ declare const UnexpectedResourceTypeError: {
24563
25246
  }, z$1.core.$strip>>;
24564
25247
  };
24565
25248
  //#endregion
24566
- export { AddResourceOptions, type AgentStatus, AgentStatusSchema, AlienError, AlienErrorDefinition, AlienErrorMetadata, type AlienError$1 as AlienErrorOptions, AlienErrorSchema as AlienErrorOptionsSchema, type AlienEvent, AlienEventSchema, ArtifactRegistry, type ArtifactRegistry$1 as ArtifactRegistryConfig, ArtifactRegistrySchema as ArtifactRegistryConfigSchema, type ArtifactRegistryHeartbeatData, ArtifactRegistryHeartbeatDataSchema, type ArtifactRegistryHeartbeatStatus, ArtifactRegistryHeartbeatStatusSchema, type ArtifactRegistryOutputs, type AwsArtifactRegistryImportData, AwsArtifactRegistryImportDataSchema, type AwsBuildImportData, AwsBuildImportDataSchema, type AwsCodeBuildHeartbeatData, AwsCodeBuildHeartbeatDataSchema, type AwsComputeClusterHeartbeatData, AwsComputeClusterHeartbeatDataSchema, type AwsComputeClusterImportData, AwsComputeClusterImportDataSchema, type AwsDynamoDbKeySchemaElement, AwsDynamoDbKeySchemaElementSchema, type AwsDynamoDbKvHeartbeatData, AwsDynamoDbKvHeartbeatDataSchema, type AwsEcrArtifactRegistryHeartbeatData, AwsEcrArtifactRegistryHeartbeatDataSchema, type AwsEcrRepositoryHeartbeatData, AwsEcrRepositoryHeartbeatDataSchema, type AwsIamRoleServiceAccountHeartbeatData, AwsIamRoleServiceAccountHeartbeatDataSchema, type AwsKvImportData, AwsKvImportDataSchema, type AwsLambdaWorkerHeartbeatData, AwsLambdaWorkerHeartbeatDataSchema, type AwsNetworkImportData, AwsNetworkImportDataSchema, type AwsParameterStoreVaultHeartbeatData, AwsParameterStoreVaultHeartbeatDataSchema, type AwsQueueImportData, AwsQueueImportDataSchema, type AwsRemoteStackManagementHeartbeatData, AwsRemoteStackManagementHeartbeatDataSchema, type AwsRemoteStackManagementImportData, AwsRemoteStackManagementImportDataSchema, type AwsS3StorageHeartbeatData, AwsS3StorageHeartbeatDataSchema, type AwsServiceAccountImportData, AwsServiceAccountImportDataSchema, type AwsSqsQueueHeartbeatData, AwsSqsQueueHeartbeatDataSchema, type AwsStorageImportData, AwsStorageImportDataSchema, type AwsVaultImportData, AwsVaultImportDataSchema, type AwsVpcNetworkHeartbeatData, AwsVpcNetworkHeartbeatDataSchema, type AwsWorkerImportData, AwsWorkerImportDataSchema, type AzureArtifactRegistryImportData, AzureArtifactRegistryImportDataSchema, type AzureBlobStorageHeartbeatData, AzureBlobStorageHeartbeatDataSchema, type AzureBuildImportData, AzureBuildImportDataSchema, type AzureComputeClusterHeartbeatData, AzureComputeClusterHeartbeatDataSchema, type AzureComputeClusterImportData, AzureComputeClusterImportDataSchema, type AzureContainerAppsBuildHeartbeatData, AzureContainerAppsBuildHeartbeatDataSchema, type AzureContainerAppsEnvironmentHeartbeatData, AzureContainerAppsEnvironmentHeartbeatDataSchema, type AzureContainerAppsEnvironmentHeartbeatStatus, AzureContainerAppsEnvironmentHeartbeatStatusSchema, type AzureContainerAppsEnvironmentImportData, AzureContainerAppsEnvironmentImportDataSchema, type AzureContainerAppsEnvironmentWorkloadProfile, AzureContainerAppsEnvironmentWorkloadProfileSchema, type AzureContainerAppsWorkerHeartbeatData, AzureContainerAppsWorkerHeartbeatDataSchema, type AzureContainerRegistryHeartbeatData, AzureContainerRegistryHeartbeatDataSchema, type AzureKeyVaultHeartbeatData, AzureKeyVaultHeartbeatDataSchema, type AzureKvImportData, AzureKvImportDataSchema, type AzureManagedIdentityServiceAccountHeartbeatData, AzureManagedIdentityServiceAccountHeartbeatDataSchema, type AzureNetworkImportData, AzureNetworkImportDataSchema, type AzureQueueImportData, AzureQueueImportDataSchema, type AzureRemoteStackManagementHeartbeatData, AzureRemoteStackManagementHeartbeatDataSchema, type AzureRemoteStackManagementImportData, AzureRemoteStackManagementImportDataSchema, type AzureResourceGroupHeartbeatData, AzureResourceGroupHeartbeatDataSchema, type AzureResourceGroupHeartbeatStatus, AzureResourceGroupHeartbeatStatusSchema, type AzureResourceGroupImportData, AzureResourceGroupImportDataSchema, type AzureResourceProviderActivationHeartbeatData, AzureResourceProviderActivationHeartbeatDataSchema, type AzureServiceAccountImportData, AzureServiceAccountImportDataSchema, type AzureServiceActivationImportData, AzureServiceActivationImportDataSchema, type AzureServiceBusNamespaceHeartbeatData, AzureServiceBusNamespaceHeartbeatDataSchema, type AzureServiceBusNamespaceImportData, AzureServiceBusNamespaceImportDataSchema, type AzureServiceBusQueueHeartbeatData, AzureServiceBusQueueHeartbeatDataSchema, type AzureStorageAccountEndpoints, AzureStorageAccountEndpointsSchema, type AzureStorageAccountHeartbeatData, AzureStorageAccountHeartbeatDataSchema, type AzureStorageAccountImportData, AzureStorageAccountImportDataSchema, type AzureStorageImportData, AzureStorageImportDataSchema, type AzureTableKvHeartbeatData, AzureTableKvHeartbeatDataSchema, type AzureVaultImportData, AzureVaultImportDataSchema, type AzureVnetNetworkHeartbeatData, AzureVnetNetworkHeartbeatDataSchema, type AzureWorkerImportData, AzureWorkerImportDataSchema, type BodySpec, BodySpecSchema, Build, type BuildConfig, BuildConfigSchema, type BuildHeartbeatData, BuildHeartbeatDataSchema, type BuildHeartbeatStatus, BuildHeartbeatStatusSchema, type BuildOutputs, BuildOutputsSchema, type BuildStatus, BuildStatusSchema, type CommandResponse, CommandResponseSchema, type CommandState, CommandStateSchema, type CommandStatusResponse, CommandStatusResponseSchema, type ComputeCapacityGroupStatus, ComputeCapacityGroupStatusSchema, type ComputeCapacityRecommendation, ComputeCapacityRecommendationSchema, type ComputeClusterHeartbeatData, ComputeClusterHeartbeatDataSchema, type ComputeClusterHeartbeatStatus, ComputeClusterHeartbeatStatusSchema, type ComputeType, ComputeTypeSchema, Container, type ContainerAutoscaling, ContainerAutoscalingSchema, type ContainerCode, ContainerCodeSchema, type Container$1 as ContainerConfig, ContainerSchema as ContainerConfigSchema, type ContainerGpuSpec, type ContainerHeartbeatData, ContainerHeartbeatDataSchema, type ContainerOutputs, type ContainerPort, ContainerPortSchema, type ContainerStatus, type CreateCommandRequest, CreateCommandRequestSchema, type CreateCommandResponse, CreateCommandResponseSchema, Daemon, type DaemonCode, DaemonCodeSchema, type Daemon$1 as DaemonConfig, DaemonSchema as DaemonConfigSchema, type DaemonHeartbeatData, DaemonHeartbeatDataSchema, type DaemonOutputs, DaemonOutputsSchema, type DeploymentModel, DeploymentModelSchema, type DevResourceInfo, DevResourceInfoSchema, type DevStatus, DevStatusSchema, type DevStatusState, DevStatusStateSchema, type Envelope, EnvelopeSchema, type EventChange, EventChangeSchema, type EventState, EventStateSchema, type ExposeProtocol, ExposeProtocolSchema, ExtractContext, type GcpArtifactRegistryHeartbeatData, GcpArtifactRegistryHeartbeatDataSchema, type GcpArtifactRegistryImportData, GcpArtifactRegistryImportDataSchema, type GcpBuildImportData, GcpBuildImportDataSchema, type GcpCloudBuildHeartbeatData, GcpCloudBuildHeartbeatDataSchema, type GcpCloudRunWorkerHeartbeatData, GcpCloudRunWorkerHeartbeatDataSchema, type GcpCloudStorageHeartbeatData, GcpCloudStorageHeartbeatDataSchema, type GcpComputeClusterHeartbeatData, GcpComputeClusterHeartbeatDataSchema, type GcpComputeClusterImportData, GcpComputeClusterImportDataSchema, type GcpFirestoreKvHeartbeatData, GcpFirestoreKvHeartbeatDataSchema, type GcpKvImportData, GcpKvImportDataSchema, type GcpNetworkImportData, GcpNetworkImportDataSchema, type GcpPubSubQueueHeartbeatData, GcpPubSubQueueHeartbeatDataSchema, type GcpQueueImportData, GcpQueueImportDataSchema, type GcpRemoteStackManagementHeartbeatData, GcpRemoteStackManagementHeartbeatDataSchema, type GcpRemoteStackManagementImportData, GcpRemoteStackManagementImportDataSchema, type GcpSecretManagerVaultHeartbeatData, GcpSecretManagerVaultHeartbeatDataSchema, type GcpServiceAccountHeartbeatData, GcpServiceAccountHeartbeatDataSchema, type GcpServiceAccountImportData, GcpServiceAccountImportDataSchema, type GcpServiceActivationImportData, GcpServiceActivationImportDataSchema, type GcpServiceUsageActivationHeartbeatData, GcpServiceUsageActivationHeartbeatDataSchema, type GcpStorageImportData, GcpStorageImportDataSchema, type GcpVaultImportData, GcpVaultImportDataSchema, type GcpVpcNetworkHeartbeatData, GcpVpcNetworkHeartbeatDataSchema, type GcpWorkerImportData, GcpWorkerImportDataSchema, type HealthCheck, type HeartbeatBackend, HeartbeatBackendSchema, type HeartbeatIssueSeverity, HeartbeatIssueSeveritySchema, type HeartbeatsMode, HeartbeatsModeSchema, type HorizonContainerHeartbeatData, HorizonContainerHeartbeatDataSchema, type HttpMethod, HttpMethodSchema, type Ingress, IngressSchema, type KubernetesBuildHeartbeatData, KubernetesBuildHeartbeatDataSchema, type KubernetesClusterNodeStatus, KubernetesClusterNodeStatusSchema, type KubernetesContainerHeartbeatData, KubernetesContainerHeartbeatDataSchema, type KubernetesDaemonHeartbeatData, KubernetesDaemonHeartbeatDataSchema, type KubernetesEventInvolvedObject, KubernetesEventInvolvedObjectSchema, type KubernetesEventSnapshot, KubernetesEventSnapshotSchema, type KubernetesEventSource, KubernetesEventSourceSchema, type KubernetesNodeConditionStatus, KubernetesNodeConditionStatusSchema, type KubernetesNodeResources, KubernetesNodeResourcesSchema, type KubernetesNodeUsage, KubernetesNodeUsageSchema, type KubernetesPodRuntimeUnitStatus, KubernetesPodRuntimeUnitStatusSchema, type KubernetesSecretVaultHeartbeatData, KubernetesSecretVaultHeartbeatDataSchema, type KubernetesWorkerHeartbeatData, KubernetesWorkerHeartbeatDataSchema, Kv, type Kv$1 as KvConfig, KvSchema as KvConfigSchema, type KvHeartbeatData, KvHeartbeatDataSchema, type KvHeartbeatStatus, KvHeartbeatStatusSchema, type KvOutputs, type LeaseInfo, LeaseInfoSchema, type LeaseRequest, LeaseRequestSchema, type LeaseResponse, LeaseResponseSchema, type LifecycleRule, type LocalArtifactRegistryHeartbeatData, LocalArtifactRegistryHeartbeatDataSchema, type LocalComputeClusterHeartbeatData, LocalComputeClusterHeartbeatDataSchema, type LocalContainerHeartbeatData, LocalContainerHeartbeatDataSchema, type LocalDaemonHeartbeatData, LocalDaemonHeartbeatDataSchema, type LocalKvHeartbeatData, LocalKvHeartbeatDataSchema, type LocalQueueHeartbeatData, LocalQueueHeartbeatDataSchema, type LocalRuntimeEventSnapshot, LocalRuntimeEventSnapshotSchema, type LocalRuntimeEventSubject, LocalRuntimeEventSubjectSchema, type LocalRuntimeUnitKind, LocalRuntimeUnitKindSchema, type LocalRuntimeUnitStatus, LocalRuntimeUnitStatusSchema, type LocalServiceAccountHeartbeatData, LocalServiceAccountHeartbeatDataSchema, type LocalStorageHeartbeatData, LocalStorageHeartbeatDataSchema, type LocalVaultHeartbeatData, LocalVaultHeartbeatDataSchema, type LocalWorkerHeartbeatData, LocalWorkerHeartbeatDataSchema, type ManagedRuntimeEventInvolvedObject, ManagedRuntimeEventInvolvedObjectSchema, type ManagedRuntimeEventSnapshot, ManagedRuntimeEventSnapshotSchema, type ManagedRuntimeEventSource, ManagedRuntimeEventSourceSchema, type ManagedRuntimeUnitStatus, ManagedRuntimeUnitStatusSchema, type ManagementPermissions, type MessagePayload, MessagePayloadSchema, type MetricSample, MetricSampleSchema, type NetworkHeartbeatData, NetworkHeartbeatDataSchema, type NetworkHeartbeatStatus, NetworkHeartbeatStatusSchema, type ObservedCounts, ObservedCountsSchema, type ObservedHealth, ObservedHealthSchema, type PermissionSet, PermissionSetSchema, type PermissionsConfig, type PersistentStorage, PersistentStorageOptions, type Platform, PlatformSchema, type PresignedRequest, type PresignedRequestBackend, PresignedRequestBackendSchema, PresignedRequestSchema, type ProviderFleetStatus, ProviderFleetStatusSchema, type ProviderLifecycleState, ProviderLifecycleStateSchema, Queue, type Queue$1 as QueueConfig, QueueSchema as QueueConfigSchema, type QueueHeartbeatData, QueueHeartbeatDataSchema, type QueueHeartbeatStatus, QueueHeartbeatStatusSchema, type QueueMessage, QueueMessageSchema, type QueueOutputs, type ReadinessProbe, ReadinessProbeSchema, type ReleaseRequest, ReleaseRequestSchema, type RemoteStackManagementHeartbeatData, RemoteStackManagementHeartbeatDataSchema, type RemoteStackManagementHeartbeatStatus, RemoteStackManagementHeartbeatStatusSchema, type ReplicaStatus, Resource, type ResourceHeartbeat, type ResourceHeartbeatData, ResourceHeartbeatDataSchema, ResourceHeartbeatSchema, type ResourceLifecycle, ResourceLifecycleSchema, ResourceNotFoundError, ResourceOutputsParseError, type ResourceRef, ResourceRefSchema, ResourceSchemaMapping, type ResourceSpec, type ResourceStatus, ResourceStatusSchema, type ResourceType, ResourceTypeSchema, type ResponseHandling, ResponseHandlingSchema, type ScheduledEvent, ScheduledEventSchema, ServiceAccount, type ServiceAccount$1 as ServiceAccountConfig, ServiceAccountSchema as ServiceAccountConfigSchema, type ServiceAccountHeartbeatData, ServiceAccountHeartbeatDataSchema, type ServiceAccountHeartbeatStatus, ServiceAccountHeartbeatStatusSchema, type ServiceAccountOutputs, ServiceAccountOutputsSchema, type ServiceActivationHeartbeatData, ServiceActivationHeartbeatDataSchema, type ServiceActivationHeartbeatStatus, ServiceActivationHeartbeatStatusSchema, Stack, type Stack$1 as StackConfig, type StackResourceState, StackResourceStateSchema, StackSchema, type StackSettings, StackSettingsSchema, type StackState, StackStateSchema, type StackStatus, StackStatusSchema, Storage, type Storage$1 as StorageConfig, StorageSchema as StorageConfigSchema, type StorageEvent, StorageEventSchema, type StorageEventType, StorageEventTypeSchema, type StorageEvents, StorageEventsSchema, type StorageHeartbeatData, StorageHeartbeatDataSchema, type StorageHeartbeatStatus, StorageHeartbeatStatusSchema, type StorageOutputs, type StorageUpload, StorageUploadSchema, type SubmitResponseRequest, SubmitResponseRequestSchema, type TelemetryMode, TelemetryModeSchema, UnexpectedResourceTypeError, type UpdatesMode, UpdatesModeSchema, type UploadCompleteRequest, UploadCompleteRequestSchema, type UploadCompleteResponse, UploadCompleteResponseSchema, Vault, type Vault$1 as VaultConfig, VaultSchema as VaultConfigSchema, type VaultHeartbeatData, VaultHeartbeatDataSchema, type VaultHeartbeatStatus, VaultHeartbeatStatusSchema, type VaultOutputs, Worker, type Worker$1 as WorkerConfig, WorkerSchema as WorkerConfigSchema, type WorkerHeartbeatData, WorkerHeartbeatDataSchema, type WorkerOutputs, WorkerOutputsSchema, type WorkerTrigger, WorkerTriggerSchema, type WorkloadHeartbeatStatus, WorkloadHeartbeatStatusSchema, type WorkloadReplicaStatus, WorkloadReplicaStatusSchema, defineError, getResourceOutputs };
25249
+ export { AddResourceOptions, type AgentStatus, AgentStatusSchema, AlienError, AlienErrorDefinition, AlienErrorMetadata, type AlienError$1 as AlienErrorOptions, AlienErrorSchema as AlienErrorOptionsSchema, type AlienEvent, AlienEventSchema, ArtifactRegistry, type ArtifactRegistry$1 as ArtifactRegistryConfig, ArtifactRegistrySchema as ArtifactRegistryConfigSchema, type ArtifactRegistryHeartbeatData, ArtifactRegistryHeartbeatDataSchema, type ArtifactRegistryHeartbeatStatus, ArtifactRegistryHeartbeatStatusSchema, type ArtifactRegistryOutputs, type AwsArtifactRegistryImportData, AwsArtifactRegistryImportDataSchema, type AwsBuildImportData, AwsBuildImportDataSchema, type AwsCodeBuildHeartbeatData, AwsCodeBuildHeartbeatDataSchema, type AwsComputeClusterHeartbeatData, AwsComputeClusterHeartbeatDataSchema, type AwsComputeClusterImportData, AwsComputeClusterImportDataSchema, type AwsDynamoDbKeySchemaElement, AwsDynamoDbKeySchemaElementSchema, type AwsDynamoDbKvHeartbeatData, AwsDynamoDbKvHeartbeatDataSchema, type AwsEcrArtifactRegistryHeartbeatData, AwsEcrArtifactRegistryHeartbeatDataSchema, type AwsEcrRepositoryHeartbeatData, AwsEcrRepositoryHeartbeatDataSchema, type AwsIamRoleServiceAccountHeartbeatData, AwsIamRoleServiceAccountHeartbeatDataSchema, type AwsKvImportData, AwsKvImportDataSchema, type AwsLambdaWorkerHeartbeatData, AwsLambdaWorkerHeartbeatDataSchema, type AwsNetworkImportData, AwsNetworkImportDataSchema, type AwsParameterStoreVaultHeartbeatData, AwsParameterStoreVaultHeartbeatDataSchema, type AwsQueueImportData, AwsQueueImportDataSchema, type AwsRemoteStackManagementHeartbeatData, AwsRemoteStackManagementHeartbeatDataSchema, type AwsRemoteStackManagementImportData, AwsRemoteStackManagementImportDataSchema, type AwsS3StorageHeartbeatData, AwsS3StorageHeartbeatDataSchema, type AwsServiceAccountImportData, AwsServiceAccountImportDataSchema, type AwsSqsQueueHeartbeatData, AwsSqsQueueHeartbeatDataSchema, type AwsStorageImportData, AwsStorageImportDataSchema, type AwsVaultImportData, AwsVaultImportDataSchema, type AwsVpcNetworkHeartbeatData, AwsVpcNetworkHeartbeatDataSchema, type AwsWorkerImportData, AwsWorkerImportDataSchema, type AzureArtifactRegistryImportData, AzureArtifactRegistryImportDataSchema, type AzureBlobStorageHeartbeatData, AzureBlobStorageHeartbeatDataSchema, type AzureBuildImportData, AzureBuildImportDataSchema, type AzureComputeClusterHeartbeatData, AzureComputeClusterHeartbeatDataSchema, type AzureComputeClusterImportData, AzureComputeClusterImportDataSchema, type AzureContainerAppsBuildHeartbeatData, AzureContainerAppsBuildHeartbeatDataSchema, type AzureContainerAppsEnvironmentHeartbeatData, AzureContainerAppsEnvironmentHeartbeatDataSchema, type AzureContainerAppsEnvironmentHeartbeatStatus, AzureContainerAppsEnvironmentHeartbeatStatusSchema, type AzureContainerAppsEnvironmentImportData, AzureContainerAppsEnvironmentImportDataSchema, type AzureContainerAppsEnvironmentWorkloadProfile, AzureContainerAppsEnvironmentWorkloadProfileSchema, type AzureContainerAppsWorkerHeartbeatData, AzureContainerAppsWorkerHeartbeatDataSchema, type AzureContainerRegistryHeartbeatData, AzureContainerRegistryHeartbeatDataSchema, type AzureKeyVaultHeartbeatData, AzureKeyVaultHeartbeatDataSchema, type AzureKvImportData, AzureKvImportDataSchema, type AzureManagedIdentityServiceAccountHeartbeatData, AzureManagedIdentityServiceAccountHeartbeatDataSchema, type AzureNetworkImportData, AzureNetworkImportDataSchema, type AzureQueueImportData, AzureQueueImportDataSchema, type AzureRemoteStackManagementHeartbeatData, AzureRemoteStackManagementHeartbeatDataSchema, type AzureRemoteStackManagementImportData, AzureRemoteStackManagementImportDataSchema, type AzureResourceGroupHeartbeatData, AzureResourceGroupHeartbeatDataSchema, type AzureResourceGroupHeartbeatStatus, AzureResourceGroupHeartbeatStatusSchema, type AzureResourceGroupImportData, AzureResourceGroupImportDataSchema, type AzureResourceProviderActivationHeartbeatData, AzureResourceProviderActivationHeartbeatDataSchema, type AzureServiceAccountImportData, AzureServiceAccountImportDataSchema, type AzureServiceActivationImportData, AzureServiceActivationImportDataSchema, type AzureServiceBusNamespaceHeartbeatData, AzureServiceBusNamespaceHeartbeatDataSchema, type AzureServiceBusNamespaceImportData, AzureServiceBusNamespaceImportDataSchema, type AzureServiceBusQueueHeartbeatData, AzureServiceBusQueueHeartbeatDataSchema, type AzureStorageAccountEndpoints, AzureStorageAccountEndpointsSchema, type AzureStorageAccountHeartbeatData, AzureStorageAccountHeartbeatDataSchema, type AzureStorageAccountImportData, AzureStorageAccountImportDataSchema, type AzureStorageImportData, AzureStorageImportDataSchema, type AzureTableKvHeartbeatData, AzureTableKvHeartbeatDataSchema, type AzureVaultImportData, AzureVaultImportDataSchema, type AzureVnetNetworkHeartbeatData, AzureVnetNetworkHeartbeatDataSchema, type AzureWorkerImportData, AzureWorkerImportDataSchema, type BodySpec, BodySpecSchema, BooleanInputOptions, Build, type BuildConfig, BuildConfigSchema, type BuildHeartbeatData, BuildHeartbeatDataSchema, type BuildHeartbeatStatus, BuildHeartbeatStatusSchema, type BuildOutputs, BuildOutputsSchema, type BuildStatus, BuildStatusSchema, type CapacityGroup, type CapacityGroupScalePolicy, CapacityGroupScalePolicySchema, CapacityGroupSchema, type CommandResponse, CommandResponseSchema, type CommandState, CommandStateSchema, type CommandStatusResponse, CommandStatusResponseSchema, type ComputeCapacityGroupStatus, ComputeCapacityGroupStatusSchema, type ComputeCapacityRecommendation, ComputeCapacityRecommendationSchema, ComputeChoiceRange, ComputeChoiceRangeSchema, ComputeCluster, type ComputeCluster$1 as ComputeClusterConfig, ComputeClusterSchema as ComputeClusterConfigSchema, type ComputeClusterHeartbeatData, ComputeClusterHeartbeatDataSchema, type ComputeClusterHeartbeatStatus, ComputeClusterHeartbeatStatusSchema, ComputePoolInput, ComputePoolRequirements, ComputePoolScale, type ComputeType, ComputeTypeSchema, Container, type ContainerAutoscaling, ContainerAutoscalingSchema, type ContainerCode, ContainerCodeSchema, type Container$1 as ContainerConfig, ContainerSchema as ContainerConfigSchema, type ContainerGpuSpec, type ContainerHeartbeatData, ContainerHeartbeatDataSchema, type ContainerOutputs, type ContainerPort, ContainerPortSchema, type ContainerStatus, type CreateCommandRequest, CreateCommandRequestSchema, type CreateCommandResponse, CreateCommandResponseSchema, Daemon, type DaemonCode, DaemonCodeSchema, type Daemon$1 as DaemonConfig, DaemonSchema as DaemonConfigSchema, type DaemonHeartbeatData, DaemonHeartbeatDataSchema, type DaemonOutputs, DaemonOutputsSchema, DaemonPublicEndpointOptions, type DaemonRuntime, type DeploymentModel, DeploymentModelSchema, type DevResourceInfo, DevResourceInfoSchema, type DevStatus, DevStatusSchema, type DevStatusState, DevStatusStateSchema, EnumInputOptions, type Envelope, EnvelopeSchema, type EventChange, EventChangeSchema, type EventState, EventStateSchema, type ExposeProtocol, ExposeProtocolSchema, ExtractContext, type GcpArtifactRegistryHeartbeatData, GcpArtifactRegistryHeartbeatDataSchema, type GcpArtifactRegistryImportData, GcpArtifactRegistryImportDataSchema, type GcpBuildImportData, GcpBuildImportDataSchema, type GcpCloudBuildHeartbeatData, GcpCloudBuildHeartbeatDataSchema, type GcpCloudRunWorkerHeartbeatData, GcpCloudRunWorkerHeartbeatDataSchema, type GcpCloudStorageHeartbeatData, GcpCloudStorageHeartbeatDataSchema, type GcpComputeClusterHeartbeatData, GcpComputeClusterHeartbeatDataSchema, type GcpComputeClusterImportData, GcpComputeClusterImportDataSchema, type GcpFirestoreKvHeartbeatData, GcpFirestoreKvHeartbeatDataSchema, type GcpKvImportData, GcpKvImportDataSchema, type GcpNetworkImportData, GcpNetworkImportDataSchema, type GcpPubSubQueueHeartbeatData, GcpPubSubQueueHeartbeatDataSchema, type GcpQueueImportData, GcpQueueImportDataSchema, type GcpRemoteStackManagementHeartbeatData, GcpRemoteStackManagementHeartbeatDataSchema, type GcpRemoteStackManagementImportData, GcpRemoteStackManagementImportDataSchema, type GcpSecretManagerVaultHeartbeatData, GcpSecretManagerVaultHeartbeatDataSchema, type GcpServiceAccountHeartbeatData, GcpServiceAccountHeartbeatDataSchema, type GcpServiceAccountImportData, GcpServiceAccountImportDataSchema, type GcpServiceActivationImportData, GcpServiceActivationImportDataSchema, type GcpServiceUsageActivationHeartbeatData, GcpServiceUsageActivationHeartbeatDataSchema, type GcpStorageImportData, GcpStorageImportDataSchema, type GcpVaultImportData, GcpVaultImportDataSchema, type GcpVpcNetworkHeartbeatData, GcpVpcNetworkHeartbeatDataSchema, type GcpWorkerImportData, GcpWorkerImportDataSchema, type ComputeChoiceRange$1 as GeneratedComputeChoiceRange, type HealthCheck, type HeartbeatBackend, HeartbeatBackendSchema, type HeartbeatIssueSeverity, HeartbeatIssueSeveritySchema, type HeartbeatsMode, HeartbeatsModeSchema, type HorizonContainerHeartbeatData, HorizonContainerHeartbeatDataSchema, type HttpMethod, HttpMethodSchema, IntegerInputOptions, type KubernetesBuildHeartbeatData, KubernetesBuildHeartbeatDataSchema, type KubernetesClusterNodeStatus, KubernetesClusterNodeStatusSchema, type KubernetesContainerHeartbeatData, KubernetesContainerHeartbeatDataSchema, type KubernetesDaemonHeartbeatData, KubernetesDaemonHeartbeatDataSchema, type KubernetesEventInvolvedObject, KubernetesEventInvolvedObjectSchema, type KubernetesEventSnapshot, KubernetesEventSnapshotSchema, type KubernetesEventSource, KubernetesEventSourceSchema, type KubernetesNodeConditionStatus, KubernetesNodeConditionStatusSchema, type KubernetesNodeResources, KubernetesNodeResourcesSchema, type KubernetesNodeUsage, KubernetesNodeUsageSchema, type KubernetesPodRuntimeUnitStatus, KubernetesPodRuntimeUnitStatusSchema, type KubernetesSecretVaultHeartbeatData, KubernetesSecretVaultHeartbeatDataSchema, type KubernetesWorkerHeartbeatData, KubernetesWorkerHeartbeatDataSchema, Kv, type Kv$1 as KvConfig, KvSchema as KvConfigSchema, type KvHeartbeatData, KvHeartbeatDataSchema, type KvHeartbeatStatus, KvHeartbeatStatusSchema, type KvOutputs, type LeaseInfo, LeaseInfoSchema, type LeaseRequest, LeaseRequestSchema, type LeaseResponse, LeaseResponseSchema, type LifecycleRule, type LocalArtifactRegistryHeartbeatData, LocalArtifactRegistryHeartbeatDataSchema, type LocalComputeClusterHeartbeatData, LocalComputeClusterHeartbeatDataSchema, type LocalContainerHeartbeatData, LocalContainerHeartbeatDataSchema, type LocalDaemonHeartbeatData, LocalDaemonHeartbeatDataSchema, type LocalKvHeartbeatData, LocalKvHeartbeatDataSchema, type LocalQueueHeartbeatData, LocalQueueHeartbeatDataSchema, type LocalRuntimeEventSnapshot, LocalRuntimeEventSnapshotSchema, type LocalRuntimeEventSubject, LocalRuntimeEventSubjectSchema, type LocalRuntimeUnitKind, LocalRuntimeUnitKindSchema, type LocalRuntimeUnitStatus, LocalRuntimeUnitStatusSchema, type LocalServiceAccountHeartbeatData, LocalServiceAccountHeartbeatDataSchema, type LocalStorageHeartbeatData, LocalStorageHeartbeatDataSchema, type LocalVaultHeartbeatData, LocalVaultHeartbeatDataSchema, type LocalWorkerHeartbeatData, LocalWorkerHeartbeatDataSchema, type MachineProfile, MachineProfileSchema, type ManagedRuntimeEventInvolvedObject, ManagedRuntimeEventInvolvedObjectSchema, type ManagedRuntimeEventSnapshot, ManagedRuntimeEventSnapshotSchema, type ManagedRuntimeEventSource, ManagedRuntimeEventSourceSchema, type ManagedRuntimeUnitStatus, ManagedRuntimeUnitStatusSchema, type ManagementPermissions, type MessagePayload, MessagePayloadSchema, type MetricSample, MetricSampleSchema, type NetworkHeartbeatData, NetworkHeartbeatDataSchema, type NetworkHeartbeatStatus, NetworkHeartbeatStatusSchema, NumberInputOptions, type ObservedCounts, ObservedCountsSchema, type ObservedHealth, ObservedHealthSchema, type PermissionSet, PermissionSetSchema, type PermissionsConfig, type PersistentStorage, PersistentStorageOptions, type Platform, PlatformSchema, type PresignedRequest, type PresignedRequestBackend, PresignedRequestBackendSchema, PresignedRequestSchema, type ProviderFleetStatus, ProviderFleetStatusSchema, type ProviderLifecycleState, ProviderLifecycleStateSchema, type PublicEndpoint, PublicEndpointOptions, PublicEndpointSchema, Queue, type Queue$1 as QueueConfig, QueueSchema as QueueConfigSchema, type QueueHeartbeatData, QueueHeartbeatDataSchema, type QueueHeartbeatStatus, QueueHeartbeatStatusSchema, type QueueMessage, QueueMessageSchema, type QueueOutputs, type ReadinessProbe, ReadinessProbeSchema, type ReleaseRequest, ReleaseRequestSchema, type RemoteStackManagementHeartbeatData, RemoteStackManagementHeartbeatDataSchema, type RemoteStackManagementHeartbeatStatus, RemoteStackManagementHeartbeatStatusSchema, type ReplicaStatus, Resource, type ResourceHeartbeat, type ResourceHeartbeatData, ResourceHeartbeatDataSchema, ResourceHeartbeatSchema, type ResourceLifecycle, ResourceLifecycleSchema, ResourceNotFoundError, ResourceOutputsParseError, type ResourceRef, ResourceRefSchema, ResourceSchemaMapping, type ResourceSpec, type ResourceStatus, ResourceStatusSchema, type ResourceType, ResourceTypeSchema, type ResponseHandling, ResponseHandlingSchema, type ScheduledEvent, ScheduledEventSchema, SecretInputOptions, ServiceAccount, type ServiceAccount$1 as ServiceAccountConfig, ServiceAccountSchema as ServiceAccountConfigSchema, type ServiceAccountHeartbeatData, ServiceAccountHeartbeatDataSchema, type ServiceAccountHeartbeatStatus, ServiceAccountHeartbeatStatusSchema, type ServiceAccountOutputs, ServiceAccountOutputsSchema, type ServiceActivationHeartbeatData, ServiceActivationHeartbeatDataSchema, type ServiceActivationHeartbeatStatus, ServiceActivationHeartbeatStatusSchema, Stack, type Stack$1 as StackConfig, StackInputCollection, type StackInputDefaultValue, StackInputDefaultValueSchema, type StackInputDefinition, StackInputDefinitionSchema, StackInputEnvMapping, type StackInputEnvironmentMapping, StackInputEnvironmentMappingSchema, type StackInputEnvironmentVariableType, StackInputEnvironmentVariableTypeSchema, type StackInputKind, StackInputKindSchema, type StackInputProvider, StackInputProviderSchema, StackInputRef, StackInputSet, type StackInputValidation, StackInputValidationSchema, StackInputValue, type StackResourceState, StackResourceStateSchema, StackSchema, type StackSettings, StackSettingsSchema, type StackState, StackStateSchema, type StackStatus, StackStatusSchema, Storage, type Storage$1 as StorageConfig, StorageSchema as StorageConfigSchema, type StorageEvent, StorageEventSchema, type StorageEventType, StorageEventTypeSchema, type StorageEvents, StorageEventsSchema, type StorageHeartbeatData, StorageHeartbeatDataSchema, type StorageHeartbeatStatus, StorageHeartbeatStatusSchema, type StorageOutputs, type StorageUpload, StorageUploadSchema, StringInputOptions, StringListInputOptions, type SubmitResponseRequest, SubmitResponseRequestSchema, type TelemetryMode, TelemetryModeSchema, UnexpectedResourceTypeError, type UpdatesMode, UpdatesModeSchema, type UploadCompleteRequest, UploadCompleteRequestSchema, type UploadCompleteResponse, UploadCompleteResponseSchema, Vault, type Vault$1 as VaultConfig, VaultSchema as VaultConfigSchema, type VaultHeartbeatData, VaultHeartbeatDataSchema, type VaultHeartbeatStatus, VaultHeartbeatStatusSchema, type VaultOutputs, Worker, type Worker$1 as WorkerConfig, WorkerSchema as WorkerConfigSchema, type WorkerHeartbeatData, WorkerHeartbeatDataSchema, type WorkerOutputs, WorkerOutputsSchema, type WorkerPublicEndpoint, WorkerPublicEndpointOptions, WorkerPublicEndpointSchema, type WorkerTrigger, WorkerTriggerSchema, type WorkloadHeartbeatStatus, WorkloadHeartbeatStatusSchema, type WorkloadReplicaStatus, WorkloadReplicaStatusSchema, defineBooleanInput as boolean, defineError, defineEnumInput as enum, getResourceOutputs, getStackInputDefinitions, inputs, defineIntegerInput as integer, defineNumberInput as number, defineSecretInput as secret, defineStringInput as string, defineStringListInput as stringList };
24567
25250
  //# sourceMappingURL=index.d.ts.map