@fractal_cloud/sdk 1.4.0 → 1.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -1886,7 +1886,148 @@ declare namespace VirtualMachine {
1886
1886
  const create: (config: VirtualMachineConfig) => VirtualMachineComponent;
1887
1887
  }
1888
1888
  //#endregion
1889
+ //#region src/fractal/component/api_management/caas/api_gateway.d.ts
1890
+ type CaaSApiGatewayComponent = {
1891
+ readonly component: BlueprintComponent;
1892
+ readonly components: ReadonlyArray<BlueprintComponent>;
1893
+ };
1894
+ type CaaSApiGatewayBuilder = {
1895
+ withId: (id: string) => CaaSApiGatewayBuilder;
1896
+ withVersion: (major: number, minor: number, patch: number) => CaaSApiGatewayBuilder;
1897
+ withDisplayName: (displayName: string) => CaaSApiGatewayBuilder;
1898
+ withDescription: (description: string) => CaaSApiGatewayBuilder;
1899
+ build: () => BlueprintComponent;
1900
+ };
1901
+ type CaaSApiGatewayConfig = {
1902
+ id: string;
1903
+ version: {
1904
+ major: number;
1905
+ minor: number;
1906
+ patch: number;
1907
+ };
1908
+ displayName: string;
1909
+ description?: string;
1910
+ };
1911
+ declare namespace CaaSApiGateway {
1912
+ const getBuilder: () => CaaSApiGatewayBuilder;
1913
+ const create: (config: CaaSApiGatewayConfig) => CaaSApiGatewayComponent;
1914
+ }
1915
+ //#endregion
1916
+ //#region src/fractal/component/messaging/caas/entity.d.ts
1917
+ type CaaSMessagingEntityComponent = {
1918
+ readonly component: BlueprintComponent;
1919
+ readonly components: ReadonlyArray<BlueprintComponent>;
1920
+ };
1921
+ type CaaSMessagingEntityBuilder = {
1922
+ withId: (id: string) => CaaSMessagingEntityBuilder;
1923
+ withVersion: (major: number, minor: number, patch: number) => CaaSMessagingEntityBuilder;
1924
+ withDisplayName: (displayName: string) => CaaSMessagingEntityBuilder;
1925
+ withDescription: (description: string) => CaaSMessagingEntityBuilder;
1926
+ build: () => BlueprintComponent;
1927
+ };
1928
+ type CaaSMessagingEntityConfig = {
1929
+ id: string;
1930
+ version: {
1931
+ major: number;
1932
+ minor: number;
1933
+ patch: number;
1934
+ };
1935
+ displayName: string;
1936
+ description?: string;
1937
+ };
1938
+ declare namespace CaaSMessagingEntity {
1939
+ const getBuilder: () => CaaSMessagingEntityBuilder;
1940
+ const create: (config: CaaSMessagingEntityConfig) => CaaSMessagingEntityComponent;
1941
+ }
1942
+ //#endregion
1943
+ //#region src/fractal/component/messaging/paas/entity.d.ts
1944
+ type MessagingEntityComponent = {
1945
+ readonly component: BlueprintComponent;
1946
+ readonly components: ReadonlyArray<BlueprintComponent>;
1947
+ };
1948
+ type MessagingEntityBuilder = {
1949
+ withId: (id: string) => MessagingEntityBuilder;
1950
+ withVersion: (major: number, minor: number, patch: number) => MessagingEntityBuilder;
1951
+ withDisplayName: (displayName: string) => MessagingEntityBuilder;
1952
+ withDescription: (description: string) => MessagingEntityBuilder;
1953
+ withMessageRetentionHours: (hours: number) => MessagingEntityBuilder;
1954
+ build: () => BlueprintComponent;
1955
+ };
1956
+ type MessagingEntityConfig = {
1957
+ id: string;
1958
+ version: {
1959
+ major: number;
1960
+ minor: number;
1961
+ patch: number;
1962
+ };
1963
+ displayName: string;
1964
+ description?: string;
1965
+ messageRetentionHours?: number;
1966
+ };
1967
+ declare namespace MessagingEntity {
1968
+ const getBuilder: () => MessagingEntityBuilder;
1969
+ const create: (config: MessagingEntityConfig) => MessagingEntityComponent;
1970
+ }
1971
+ //#endregion
1889
1972
  //#region src/fractal/component/custom_workloads/caas/workload.d.ts
1973
+ /**
1974
+ * Container env var. Either a literal value, or a reference to a key in a
1975
+ * ConfigMap or Secret. Settings keys mirror Kubernetes EnvVar/EnvVarSource.
1976
+ */
1977
+ type WorkloadEnvVar = {
1978
+ name: string;
1979
+ value: string;
1980
+ } | {
1981
+ name: string;
1982
+ valueFromConfigMap: {
1983
+ name: string;
1984
+ key: string;
1985
+ };
1986
+ } | {
1987
+ name: string;
1988
+ valueFromSecret: {
1989
+ name: string;
1990
+ key: string;
1991
+ };
1992
+ };
1993
+ type WorkloadEnvFrom = {
1994
+ configMap: {
1995
+ name: string;
1996
+ };
1997
+ } | {
1998
+ secret: {
1999
+ name: string;
2000
+ };
2001
+ };
2002
+ /**
2003
+ * Mount a Kubernetes Secret as files in the container filesystem.
2004
+ * If `items` is omitted every key in the Secret becomes a file at `mountPath/<key>`.
2005
+ */
2006
+ type WorkloadSecretMount = {
2007
+ name: string;
2008
+ mountPath: string;
2009
+ items?: {
2010
+ key: string;
2011
+ path: string;
2012
+ }[];
2013
+ readOnly?: boolean;
2014
+ };
2015
+ type WorkloadResources = {
2016
+ cpu?: string;
2017
+ memory?: string;
2018
+ };
2019
+ /**
2020
+ * Settings for a Workload → APIGateway link. The agent that reconciles the
2021
+ * APIGateway derives one Mapping (or equivalent) per inbound link from these.
2022
+ */
2023
+ type ApiGatewayLinkSettings = {
2024
+ prefix: string;
2025
+ hostname: string;
2026
+ rewrite?: string;
2027
+ timeoutMs?: number;
2028
+ port?: number;
2029
+ tlsSecretName?: string;
2030
+ };
1890
2031
  /**
1891
2032
  * Link from one Workload to another, declaring a traffic rule.
1892
2033
  * The agent derives managed SG egress/ingress rules from these.
@@ -1897,11 +2038,36 @@ type WorkloadPortLink = {
1897
2038
  toPort?: number;
1898
2039
  protocol?: string;
1899
2040
  };
2041
+ type WorkloadApiGatewayLink = {
2042
+ target: CaaSApiGatewayComponent;
2043
+ } & ApiGatewayLinkSettings;
2044
+ /**
2045
+ * Access mode for a Workload → Messaging entity link.
2046
+ * - `publish`: workload only produces messages.
2047
+ * - `subscribe`: workload only consumes messages.
2048
+ * - `publish-subscribe`: workload both produces and consumes.
2049
+ */
2050
+ type MessagingAccessType = 'publish' | 'subscribe' | 'publish-subscribe';
2051
+ /**
2052
+ * Settings for a Workload → MessagingEntity link. The agent that reconciles the
2053
+ * messaging stack uses these to grant the workload the right IAM/ACL on the topic
2054
+ * (and to wire any consumer-side parameters like consumer group / starting position).
2055
+ */
2056
+ type MessagingLinkSettings = {
2057
+ access: MessagingAccessType; /** Consumer group; only meaningful when `access` includes `subscribe`. */
2058
+ consumerGroup?: string; /** Subscriber starting position: `"start"`, `"end"`, or an ISO timestamp. */
2059
+ startingPosition?: string;
2060
+ };
2061
+ type WorkloadMessagingLink = {
2062
+ target: CaaSMessagingEntityComponent | MessagingEntityComponent;
2063
+ } & MessagingLinkSettings;
1900
2064
  type WorkloadComponent = {
1901
2065
  readonly component: BlueprintComponent;
1902
2066
  readonly components: ReadonlyArray<BlueprintComponent>; /** Declares a traffic rule from this workload to another. The agent derives managed SG egress/ingress rules. */
1903
2067
  linkToWorkload: (links: WorkloadPortLink[]) => WorkloadComponent; /** Declares SG membership. The agent assigns the workload to the given security group at launch. No settings required. */
1904
- linkToSecurityGroup: (sgs: SecurityGroupComponent[]) => WorkloadComponent;
2068
+ linkToSecurityGroup: (sgs: SecurityGroupComponent[]) => WorkloadComponent; /** Declares "expose me through this API Gateway". Settings carry the routing contract (prefix, hostname, rewrite, timeoutMs, port, tlsSecretName). The gateway's agent derives a Mapping/Ingress/etc per link. */
2069
+ linkToApiGateway: (links: WorkloadApiGatewayLink[]) => WorkloadComponent; /** Declares "I publish to / subscribe from this messaging topic/queue". Settings carry the access mode and optional consumer-side parameters. The messaging agent uses these to provision IAM/ACLs and wire consumer config. */
2070
+ linkToMessagingEntity: (links: WorkloadMessagingLink[]) => WorkloadComponent;
1905
2071
  };
1906
2072
  type WorkloadBuilder = {
1907
2073
  withId: (id: string) => WorkloadBuilder;
@@ -1913,7 +2079,14 @@ type WorkloadBuilder = {
1913
2079
  withContainerName: (name: string) => WorkloadBuilder;
1914
2080
  withCpu: (cpu: string) => WorkloadBuilder;
1915
2081
  withMemory: (memory: string) => WorkloadBuilder;
1916
- withDesiredCount: (count: number) => WorkloadBuilder;
2082
+ withDesiredCount: (count: number) => WorkloadBuilder; /** Set environment variables on the container. Repeated calls append. */
2083
+ withEnv: (env: WorkloadEnvVar[]) => WorkloadBuilder; /** Pull all keys of a ConfigMap or Secret into the container env. Repeated calls append. */
2084
+ withEnvFrom: (sources: WorkloadEnvFrom[]) => WorkloadBuilder; /** Mount Kubernetes Secrets as files. Repeated calls append. */
2085
+ withSecretMounts: (mounts: WorkloadSecretMount[]) => WorkloadBuilder; /** Image pull secrets (private registries). */
2086
+ withImagePullSecrets: (names: string[]) => WorkloadBuilder; /** Resource requests separate from limits. Use `withCpu`/`withMemory` for the back-compat both-equal shorthand. */
2087
+ withResourceRequests: (r: WorkloadResources) => WorkloadBuilder;
2088
+ withResourceLimits: (r: WorkloadResources) => WorkloadBuilder; /** When true, the agent provisions a dedicated ServiceAccount named after the workload. */
2089
+ withServiceAccount: (enabled: boolean) => WorkloadBuilder;
1917
2090
  build: () => BlueprintComponent;
1918
2091
  };
1919
2092
  type WorkloadConfig = {
@@ -1931,6 +2104,13 @@ type WorkloadConfig = {
1931
2104
  cpu?: string;
1932
2105
  memory?: string;
1933
2106
  desiredCount?: number;
2107
+ env?: WorkloadEnvVar[];
2108
+ envFrom?: WorkloadEnvFrom[];
2109
+ secretMounts?: WorkloadSecretMount[];
2110
+ imagePullSecrets?: string[];
2111
+ resourceRequests?: WorkloadResources;
2112
+ resourceLimits?: WorkloadResources;
2113
+ serviceAccount?: boolean;
1934
2114
  };
1935
2115
  declare namespace Workload {
1936
2116
  const getBuilder: () => WorkloadBuilder;
@@ -3256,35 +3436,20 @@ declare namespace OpenshiftVm {
3256
3436
  const create: (config: OpenshiftVmConfig) => LiveSystemComponent;
3257
3437
  }
3258
3438
  //#endregion
3259
- //#region src/fractal/component/network_and_compute/paas/container_platform.d.ts
3260
- type NodePoolConfig = {
3261
- name: string;
3262
- diskSizeGb?: number;
3263
- minNodeCount?: number;
3264
- maxNodeCount?: number;
3265
- maxPodsPerNode?: number;
3266
- autoscalingEnabled?: boolean;
3267
- initialNodeCount?: number;
3268
- maxSurge?: number;
3269
- };
3270
- type ContainerPlatformComponent = {
3271
- readonly platform: BlueprintComponent;
3272
- /**
3273
- * Workload nodes with the platform dependency auto-wired into each component.
3274
- * Pass these to Subnet.withWorkloads() so the subnet dep is stacked on top.
3275
- */
3276
- readonly workloads: ReadonlyArray<WorkloadComponent>;
3277
- withWorkloads: (workloads: WorkloadComponent[]) => ContainerPlatformComponent;
3439
+ //#region src/fractal/component/messaging/caas/broker.d.ts
3440
+ type CaaSBrokerComponent = {
3441
+ readonly broker: BlueprintComponent;
3442
+ readonly entities: ReadonlyArray<CaaSMessagingEntityComponent>;
3443
+ withEntities: (entities: CaaSMessagingEntityComponent[]) => CaaSBrokerComponent;
3278
3444
  };
3279
- type ContainerPlatformBuilder = {
3280
- withId: (id: string) => ContainerPlatformBuilder;
3281
- withVersion: (major: number, minor: number, patch: number) => ContainerPlatformBuilder;
3282
- withDisplayName: (displayName: string) => ContainerPlatformBuilder;
3283
- withDescription: (description: string) => ContainerPlatformBuilder;
3284
- withNodePools: (nodePools: NodePoolConfig[]) => ContainerPlatformBuilder;
3445
+ type CaaSBrokerBuilder = {
3446
+ withId: (id: string) => CaaSBrokerBuilder;
3447
+ withVersion: (major: number, minor: number, patch: number) => CaaSBrokerBuilder;
3448
+ withDisplayName: (displayName: string) => CaaSBrokerBuilder;
3449
+ withDescription: (description: string) => CaaSBrokerBuilder;
3285
3450
  build: () => BlueprintComponent;
3286
3451
  };
3287
- type ContainerPlatformConfig = {
3452
+ type CaaSBrokerConfig = {
3288
3453
  id: string;
3289
3454
  version: {
3290
3455
  major: number;
@@ -3293,57 +3458,25 @@ type ContainerPlatformConfig = {
3293
3458
  };
3294
3459
  displayName: string;
3295
3460
  description?: string;
3296
- nodePools?: NodePoolConfig[];
3297
3461
  };
3298
- declare namespace ContainerPlatform {
3299
- const getBuilder: () => ContainerPlatformBuilder;
3300
- const create: (config: ContainerPlatformConfig) => ContainerPlatformComponent;
3462
+ declare namespace CaaSBroker {
3463
+ const getBuilder: () => CaaSBrokerBuilder;
3464
+ const create: (config: CaaSBrokerConfig) => CaaSBrokerComponent;
3301
3465
  }
3302
3466
  //#endregion
3303
- //#region src/live_system/component/custom_workloads/caas/openshift_workload.d.ts
3304
- /**
3305
- * Returned by satisfy() — only exposes vendor-specific parameters.
3306
- * Structural properties (id, version, displayName, description,
3307
- * dependencies, links) are locked to the blueprint and cannot be overridden.
3308
- */
3309
- type SatisfiedOpenshiftWorkloadBuilder = {
3310
- withName: (name: string) => SatisfiedOpenshiftWorkloadBuilder;
3311
- withNamespace: (namespace: string) => SatisfiedOpenshiftWorkloadBuilder;
3312
- withWorkloadType: (workloadType: string) => SatisfiedOpenshiftWorkloadBuilder;
3313
- withCpuLimit: (cpuLimit: string) => SatisfiedOpenshiftWorkloadBuilder;
3314
- withMemoryLimit: (memoryLimit: string) => SatisfiedOpenshiftWorkloadBuilder;
3315
- withProtocol: (protocol: string) => SatisfiedOpenshiftWorkloadBuilder;
3316
- withEnvVars: (envVars: string) => SatisfiedOpenshiftWorkloadBuilder;
3317
- withServiceAccountName: (name: string) => SatisfiedOpenshiftWorkloadBuilder;
3318
- withCommand: (command: string) => SatisfiedOpenshiftWorkloadBuilder;
3319
- withArgs: (args: string) => SatisfiedOpenshiftWorkloadBuilder;
3320
- withVolumeMounts: (volumeMounts: string) => SatisfiedOpenshiftWorkloadBuilder;
3321
- build: () => LiveSystemComponent;
3467
+ //#region src/fractal/component/storage/caas/search_entity.d.ts
3468
+ type SearchEntityComponent = {
3469
+ readonly component: BlueprintComponent;
3470
+ readonly components: ReadonlyArray<BlueprintComponent>;
3322
3471
  };
3323
- type OpenshiftWorkloadBuilder = {
3324
- withId: (id: string) => OpenshiftWorkloadBuilder;
3325
- withVersion: (major: number, minor: number, patch: number) => OpenshiftWorkloadBuilder;
3326
- withDisplayName: (displayName: string) => OpenshiftWorkloadBuilder;
3327
- withDescription: (description: string) => OpenshiftWorkloadBuilder;
3328
- withImage: (image: string) => OpenshiftWorkloadBuilder;
3329
- withPort: (port: number) => OpenshiftWorkloadBuilder;
3330
- withName: (name: string) => OpenshiftWorkloadBuilder;
3331
- withReplicas: (replicas: number) => OpenshiftWorkloadBuilder;
3332
- withNamespace: (namespace: string) => OpenshiftWorkloadBuilder;
3333
- withWorkloadType: (workloadType: string) => OpenshiftWorkloadBuilder;
3334
- withCpuRequest: (cpuRequest: string) => OpenshiftWorkloadBuilder;
3335
- withCpuLimit: (cpuLimit: string) => OpenshiftWorkloadBuilder;
3336
- withMemoryRequest: (memoryRequest: string) => OpenshiftWorkloadBuilder;
3337
- withMemoryLimit: (memoryLimit: string) => OpenshiftWorkloadBuilder;
3338
- withProtocol: (protocol: string) => OpenshiftWorkloadBuilder;
3339
- withEnvVars: (envVars: string) => OpenshiftWorkloadBuilder;
3340
- withServiceAccountName: (name: string) => OpenshiftWorkloadBuilder;
3341
- withCommand: (command: string) => OpenshiftWorkloadBuilder;
3342
- withArgs: (args: string) => OpenshiftWorkloadBuilder;
3343
- withVolumeMounts: (volumeMounts: string) => OpenshiftWorkloadBuilder;
3344
- build: () => LiveSystemComponent;
3472
+ type SearchEntityBuilder = {
3473
+ withId: (id: string) => SearchEntityBuilder;
3474
+ withVersion: (major: number, minor: number, patch: number) => SearchEntityBuilder;
3475
+ withDisplayName: (displayName: string) => SearchEntityBuilder;
3476
+ withDescription: (description: string) => SearchEntityBuilder;
3477
+ build: () => BlueprintComponent;
3345
3478
  };
3346
- type OpenshiftWorkloadConfig = {
3479
+ type SearchEntityConfig = {
3347
3480
  id: string;
3348
3481
  version: {
3349
3482
  major: number;
@@ -3352,55 +3485,313 @@ type OpenshiftWorkloadConfig = {
3352
3485
  };
3353
3486
  displayName: string;
3354
3487
  description?: string;
3355
- image: string;
3356
- port?: number;
3357
- name?: string;
3358
- replicas?: number;
3359
- namespace?: string;
3360
- workloadType?: string;
3361
- cpuRequest?: string;
3362
- cpuLimit?: string;
3363
- memoryRequest?: string;
3364
- memoryLimit?: string;
3365
- protocol?: string;
3366
- envVars?: string;
3367
- serviceAccountName?: string;
3368
- command?: string;
3369
- args?: string;
3370
- volumeMounts?: string;
3371
3488
  };
3372
- declare namespace OpenshiftWorkload {
3373
- const getBuilder: () => OpenshiftWorkloadBuilder;
3374
- /**
3375
- * Satisfies a blueprint Workload component as an OpenShift Workload.
3376
- * Blueprint params are mapped to offer-specific param keys:
3377
- * containerImage → image, containerPort → port, containerName → name,
3378
- * cpu → cpuRequest, memory → memoryRequest, desiredCount → replicas.
3379
- */
3380
- const satisfy: (blueprint: BlueprintComponent) => SatisfiedOpenshiftWorkloadBuilder;
3381
- const create: (config: OpenshiftWorkloadConfig) => LiveSystemComponent;
3489
+ declare namespace SearchEntity {
3490
+ const getBuilder: () => SearchEntityBuilder;
3491
+ const create: (config: SearchEntityConfig) => SearchEntityComponent;
3382
3492
  }
3383
3493
  //#endregion
3384
- //#region src/live_system/component/network_and_compute/caas/openshift_service.d.ts
3385
- /**
3386
- * Returned by satisfy() — only exposes vendor-specific parameters.
3387
- * Structural properties (id, version, displayName, description,
3388
- * dependencies, links) are locked to the blueprint and cannot be overridden.
3389
- */
3390
- type SatisfiedOpenshiftServiceBuilder = {
3391
- withName: (name: string) => SatisfiedOpenshiftServiceBuilder;
3392
- withPort: (port: number) => SatisfiedOpenshiftServiceBuilder;
3393
- withTargetPort: (targetPort: number) => SatisfiedOpenshiftServiceBuilder;
3394
- withProtocol: (protocol: string) => SatisfiedOpenshiftServiceBuilder;
3395
- withServiceType: (serviceType: string) => SatisfiedOpenshiftServiceBuilder;
3396
- withCreateRoute: (createRoute: boolean) => SatisfiedOpenshiftServiceBuilder;
3397
- withRouteHostname: (hostname: string) => SatisfiedOpenshiftServiceBuilder;
3398
- withRouteTlsTermination: (termination: string) => SatisfiedOpenshiftServiceBuilder;
3399
- withNamespace: (namespace: string) => SatisfiedOpenshiftServiceBuilder;
3400
- withWorkloadName: (workloadName: string) => SatisfiedOpenshiftServiceBuilder;
3401
- build: () => LiveSystemComponent;
3402
- };
3403
- type OpenshiftServiceBuilder = {
3494
+ //#region src/fractal/component/storage/caas/search.d.ts
3495
+ type SearchComponent = {
3496
+ readonly search: BlueprintComponent;
3497
+ readonly entities: ReadonlyArray<SearchEntityComponent>;
3498
+ withEntities: (entities: SearchEntityComponent[]) => SearchComponent;
3499
+ };
3500
+ type SearchBuilder = {
3501
+ withId: (id: string) => SearchBuilder;
3502
+ withVersion: (major: number, minor: number, patch: number) => SearchBuilder;
3503
+ withDisplayName: (displayName: string) => SearchBuilder;
3504
+ withDescription: (description: string) => SearchBuilder;
3505
+ build: () => BlueprintComponent;
3506
+ };
3507
+ type SearchConfig = {
3508
+ id: string;
3509
+ version: {
3510
+ major: number;
3511
+ minor: number;
3512
+ patch: number;
3513
+ };
3514
+ displayName: string;
3515
+ description?: string;
3516
+ };
3517
+ declare namespace Search {
3518
+ const getBuilder: () => SearchBuilder;
3519
+ const create: (config: SearchConfig) => SearchComponent;
3520
+ }
3521
+ //#endregion
3522
+ //#region src/fractal/component/observability/caas/monitoring.d.ts
3523
+ type MonitoringComponent = {
3524
+ readonly component: BlueprintComponent;
3525
+ readonly components: ReadonlyArray<BlueprintComponent>;
3526
+ };
3527
+ type MonitoringBuilder = {
3528
+ withId: (id: string) => MonitoringBuilder;
3529
+ withVersion: (major: number, minor: number, patch: number) => MonitoringBuilder;
3530
+ withDisplayName: (displayName: string) => MonitoringBuilder;
3531
+ withDescription: (description: string) => MonitoringBuilder;
3532
+ build: () => BlueprintComponent;
3533
+ };
3534
+ type MonitoringConfig = {
3535
+ id: string;
3536
+ version: {
3537
+ major: number;
3538
+ minor: number;
3539
+ patch: number;
3540
+ };
3541
+ displayName: string;
3542
+ description?: string;
3543
+ };
3544
+ declare namespace Monitoring {
3545
+ const getBuilder: () => MonitoringBuilder;
3546
+ const create: (config: MonitoringConfig) => MonitoringComponent;
3547
+ }
3548
+ //#endregion
3549
+ //#region src/fractal/component/observability/caas/tracing.d.ts
3550
+ type TracingComponent = {
3551
+ readonly component: BlueprintComponent;
3552
+ readonly components: ReadonlyArray<BlueprintComponent>;
3553
+ };
3554
+ type TracingBuilder = {
3555
+ withId: (id: string) => TracingBuilder;
3556
+ withVersion: (major: number, minor: number, patch: number) => TracingBuilder;
3557
+ withDisplayName: (displayName: string) => TracingBuilder;
3558
+ withDescription: (description: string) => TracingBuilder;
3559
+ build: () => BlueprintComponent;
3560
+ };
3561
+ type TracingConfig = {
3562
+ id: string;
3563
+ version: {
3564
+ major: number;
3565
+ minor: number;
3566
+ patch: number;
3567
+ };
3568
+ displayName: string;
3569
+ description?: string;
3570
+ };
3571
+ declare namespace Tracing {
3572
+ const getBuilder: () => TracingBuilder;
3573
+ const create: (config: TracingConfig) => TracingComponent;
3574
+ }
3575
+ //#endregion
3576
+ //#region src/fractal/component/observability/caas/logging.d.ts
3577
+ type LoggingComponent = {
3578
+ readonly component: BlueprintComponent;
3579
+ readonly components: ReadonlyArray<BlueprintComponent>;
3580
+ };
3581
+ type LoggingBuilder = {
3582
+ withId: (id: string) => LoggingBuilder;
3583
+ withVersion: (major: number, minor: number, patch: number) => LoggingBuilder;
3584
+ withDisplayName: (displayName: string) => LoggingBuilder;
3585
+ withDescription: (description: string) => LoggingBuilder;
3586
+ build: () => BlueprintComponent;
3587
+ };
3588
+ type LoggingConfig = {
3589
+ id: string;
3590
+ version: {
3591
+ major: number;
3592
+ minor: number;
3593
+ patch: number;
3594
+ };
3595
+ displayName: string;
3596
+ description?: string;
3597
+ };
3598
+ declare namespace Logging {
3599
+ const getBuilder: () => LoggingBuilder;
3600
+ const create: (config: LoggingConfig) => LoggingComponent;
3601
+ }
3602
+ //#endregion
3603
+ //#region src/fractal/component/security/caas/service_mesh.d.ts
3604
+ type ServiceMeshComponent = {
3605
+ readonly component: BlueprintComponent;
3606
+ readonly components: ReadonlyArray<BlueprintComponent>;
3607
+ };
3608
+ type ServiceMeshBuilder = {
3609
+ withId: (id: string) => ServiceMeshBuilder;
3610
+ withVersion: (major: number, minor: number, patch: number) => ServiceMeshBuilder;
3611
+ withDisplayName: (displayName: string) => ServiceMeshBuilder;
3612
+ withDescription: (description: string) => ServiceMeshBuilder;
3613
+ build: () => BlueprintComponent;
3614
+ };
3615
+ type ServiceMeshConfig = {
3616
+ id: string;
3617
+ version: {
3618
+ major: number;
3619
+ minor: number;
3620
+ patch: number;
3621
+ };
3622
+ displayName: string;
3623
+ description?: string;
3624
+ };
3625
+ declare namespace ServiceMesh {
3626
+ const getBuilder: () => ServiceMeshBuilder;
3627
+ const create: (config: ServiceMeshConfig) => ServiceMeshComponent;
3628
+ }
3629
+ //#endregion
3630
+ //#region src/fractal/component/network_and_compute/paas/container_platform.d.ts
3631
+ type NodePoolConfig = {
3632
+ name: string;
3633
+ diskSizeGb?: number;
3634
+ minNodeCount?: number;
3635
+ maxNodeCount?: number;
3636
+ maxPodsPerNode?: number;
3637
+ autoscalingEnabled?: boolean;
3638
+ initialNodeCount?: number;
3639
+ maxSurge?: number;
3640
+ };
3641
+ type ContainerPlatformComponent = {
3642
+ readonly platform: BlueprintComponent;
3643
+ /**
3644
+ * Workload nodes with the platform dependency auto-wired into each component.
3645
+ * Pass these to Subnet.withWorkloads() so the subnet dep is stacked on top.
3646
+ */
3647
+ readonly workloads: ReadonlyArray<WorkloadComponent>; /** API Gateway with the platform dependency auto-wired (at most one per cluster). */
3648
+ readonly apiGateway: CaaSApiGatewayComponent | undefined; /** Messaging brokers with the platform dep auto-wired; entities transitively depend via the broker. */
3649
+ readonly brokers: ReadonlyArray<CaaSBrokerComponent>; /** Search clusters with the platform dep auto-wired; entities transitively depend via the search. */
3650
+ readonly searches: ReadonlyArray<SearchComponent>; /** Monitoring stack with the platform dependency auto-wired (at most one per cluster). */
3651
+ readonly monitoring: MonitoringComponent | undefined; /** Tracing backend with the platform dependency auto-wired (at most one per cluster). */
3652
+ readonly tracing: TracingComponent | undefined; /** Logging pipeline with the platform dependency auto-wired (at most one per cluster). */
3653
+ readonly logging: LoggingComponent | undefined; /** Service mesh with the platform dependency auto-wired (at most one per cluster). */
3654
+ readonly serviceMesh: ServiceMeshComponent | undefined;
3655
+ /**
3656
+ * Flat list of every blueprint component owned by this container platform —
3657
+ * the platform itself plus all wired CaaS services and their child entities.
3658
+ * Spread these into Fractal.withComponents() for direct inclusion.
3659
+ */
3660
+ readonly components: ReadonlyArray<BlueprintComponent>;
3661
+ withWorkloads: (workloads: WorkloadComponent[]) => ContainerPlatformComponent;
3662
+ withApiGateway: (apiGateway: CaaSApiGatewayComponent) => ContainerPlatformComponent;
3663
+ withBrokers: (brokers: CaaSBrokerComponent[]) => ContainerPlatformComponent;
3664
+ withSearches: (searches: SearchComponent[]) => ContainerPlatformComponent;
3665
+ withMonitoring: (monitoring: MonitoringComponent) => ContainerPlatformComponent;
3666
+ withTracing: (tracing: TracingComponent) => ContainerPlatformComponent;
3667
+ withLogging: (logging: LoggingComponent) => ContainerPlatformComponent;
3668
+ withServiceMesh: (serviceMesh: ServiceMeshComponent) => ContainerPlatformComponent;
3669
+ };
3670
+ type ContainerPlatformBuilder = {
3671
+ withId: (id: string) => ContainerPlatformBuilder;
3672
+ withVersion: (major: number, minor: number, patch: number) => ContainerPlatformBuilder;
3673
+ withDisplayName: (displayName: string) => ContainerPlatformBuilder;
3674
+ withDescription: (description: string) => ContainerPlatformBuilder;
3675
+ withNodePools: (nodePools: NodePoolConfig[]) => ContainerPlatformBuilder;
3676
+ build: () => BlueprintComponent;
3677
+ };
3678
+ type ContainerPlatformConfig = {
3679
+ id: string;
3680
+ version: {
3681
+ major: number;
3682
+ minor: number;
3683
+ patch: number;
3684
+ };
3685
+ displayName: string;
3686
+ description?: string;
3687
+ nodePools?: NodePoolConfig[];
3688
+ };
3689
+ declare namespace ContainerPlatform {
3690
+ const getBuilder: () => ContainerPlatformBuilder;
3691
+ const create: (config: ContainerPlatformConfig) => ContainerPlatformComponent;
3692
+ }
3693
+ //#endregion
3694
+ //#region src/live_system/component/custom_workloads/caas/openshift_workload.d.ts
3695
+ /**
3696
+ * Returned by satisfy() — only exposes vendor-specific parameters.
3697
+ * Structural properties (id, version, displayName, description,
3698
+ * dependencies, links) are locked to the blueprint and cannot be overridden.
3699
+ */
3700
+ type SatisfiedOpenshiftWorkloadBuilder = {
3701
+ withName: (name: string) => SatisfiedOpenshiftWorkloadBuilder;
3702
+ withNamespace: (namespace: string) => SatisfiedOpenshiftWorkloadBuilder;
3703
+ withWorkloadType: (workloadType: string) => SatisfiedOpenshiftWorkloadBuilder;
3704
+ withCpuLimit: (cpuLimit: string) => SatisfiedOpenshiftWorkloadBuilder;
3705
+ withMemoryLimit: (memoryLimit: string) => SatisfiedOpenshiftWorkloadBuilder;
3706
+ withProtocol: (protocol: string) => SatisfiedOpenshiftWorkloadBuilder;
3707
+ withEnvVars: (envVars: string) => SatisfiedOpenshiftWorkloadBuilder;
3708
+ withServiceAccountName: (name: string) => SatisfiedOpenshiftWorkloadBuilder;
3709
+ withCommand: (command: string) => SatisfiedOpenshiftWorkloadBuilder;
3710
+ withArgs: (args: string) => SatisfiedOpenshiftWorkloadBuilder;
3711
+ withVolumeMounts: (volumeMounts: string) => SatisfiedOpenshiftWorkloadBuilder;
3712
+ build: () => LiveSystemComponent;
3713
+ };
3714
+ type OpenshiftWorkloadBuilder = {
3715
+ withId: (id: string) => OpenshiftWorkloadBuilder;
3716
+ withVersion: (major: number, minor: number, patch: number) => OpenshiftWorkloadBuilder;
3717
+ withDisplayName: (displayName: string) => OpenshiftWorkloadBuilder;
3718
+ withDescription: (description: string) => OpenshiftWorkloadBuilder;
3719
+ withImage: (image: string) => OpenshiftWorkloadBuilder;
3720
+ withPort: (port: number) => OpenshiftWorkloadBuilder;
3721
+ withName: (name: string) => OpenshiftWorkloadBuilder;
3722
+ withReplicas: (replicas: number) => OpenshiftWorkloadBuilder;
3723
+ withNamespace: (namespace: string) => OpenshiftWorkloadBuilder;
3724
+ withWorkloadType: (workloadType: string) => OpenshiftWorkloadBuilder;
3725
+ withCpuRequest: (cpuRequest: string) => OpenshiftWorkloadBuilder;
3726
+ withCpuLimit: (cpuLimit: string) => OpenshiftWorkloadBuilder;
3727
+ withMemoryRequest: (memoryRequest: string) => OpenshiftWorkloadBuilder;
3728
+ withMemoryLimit: (memoryLimit: string) => OpenshiftWorkloadBuilder;
3729
+ withProtocol: (protocol: string) => OpenshiftWorkloadBuilder;
3730
+ withEnvVars: (envVars: string) => OpenshiftWorkloadBuilder;
3731
+ withServiceAccountName: (name: string) => OpenshiftWorkloadBuilder;
3732
+ withCommand: (command: string) => OpenshiftWorkloadBuilder;
3733
+ withArgs: (args: string) => OpenshiftWorkloadBuilder;
3734
+ withVolumeMounts: (volumeMounts: string) => OpenshiftWorkloadBuilder;
3735
+ build: () => LiveSystemComponent;
3736
+ };
3737
+ type OpenshiftWorkloadConfig = {
3738
+ id: string;
3739
+ version: {
3740
+ major: number;
3741
+ minor: number;
3742
+ patch: number;
3743
+ };
3744
+ displayName: string;
3745
+ description?: string;
3746
+ image: string;
3747
+ port?: number;
3748
+ name?: string;
3749
+ replicas?: number;
3750
+ namespace?: string;
3751
+ workloadType?: string;
3752
+ cpuRequest?: string;
3753
+ cpuLimit?: string;
3754
+ memoryRequest?: string;
3755
+ memoryLimit?: string;
3756
+ protocol?: string;
3757
+ envVars?: string;
3758
+ serviceAccountName?: string;
3759
+ command?: string;
3760
+ args?: string;
3761
+ volumeMounts?: string;
3762
+ };
3763
+ declare namespace OpenshiftWorkload {
3764
+ const getBuilder: () => OpenshiftWorkloadBuilder;
3765
+ /**
3766
+ * Satisfies a blueprint Workload component as an OpenShift Workload.
3767
+ * Blueprint params are mapped to offer-specific param keys:
3768
+ * containerImage → image, containerPort → port, containerName → name,
3769
+ * cpu → cpuRequest, memory → memoryRequest, desiredCount → replicas.
3770
+ */
3771
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedOpenshiftWorkloadBuilder;
3772
+ const create: (config: OpenshiftWorkloadConfig) => LiveSystemComponent;
3773
+ }
3774
+ //#endregion
3775
+ //#region src/live_system/component/network_and_compute/caas/openshift_service.d.ts
3776
+ /**
3777
+ * Returned by satisfy() — only exposes vendor-specific parameters.
3778
+ * Structural properties (id, version, displayName, description,
3779
+ * dependencies, links) are locked to the blueprint and cannot be overridden.
3780
+ */
3781
+ type SatisfiedOpenshiftServiceBuilder = {
3782
+ withName: (name: string) => SatisfiedOpenshiftServiceBuilder;
3783
+ withPort: (port: number) => SatisfiedOpenshiftServiceBuilder;
3784
+ withTargetPort: (targetPort: number) => SatisfiedOpenshiftServiceBuilder;
3785
+ withProtocol: (protocol: string) => SatisfiedOpenshiftServiceBuilder;
3786
+ withServiceType: (serviceType: string) => SatisfiedOpenshiftServiceBuilder;
3787
+ withCreateRoute: (createRoute: boolean) => SatisfiedOpenshiftServiceBuilder;
3788
+ withRouteHostname: (hostname: string) => SatisfiedOpenshiftServiceBuilder;
3789
+ withRouteTlsTermination: (termination: string) => SatisfiedOpenshiftServiceBuilder;
3790
+ withNamespace: (namespace: string) => SatisfiedOpenshiftServiceBuilder;
3791
+ withWorkloadName: (workloadName: string) => SatisfiedOpenshiftServiceBuilder;
3792
+ build: () => LiveSystemComponent;
3793
+ };
3794
+ type OpenshiftServiceBuilder = {
3404
3795
  withId: (id: string) => OpenshiftServiceBuilder;
3405
3796
  withVersion: (major: number, minor: number, patch: number) => OpenshiftServiceBuilder;
3406
3797
  withDisplayName: (displayName: string) => OpenshiftServiceBuilder;
@@ -3417,7 +3808,521 @@ type OpenshiftServiceBuilder = {
3417
3808
  withWorkloadName: (workloadName: string) => OpenshiftServiceBuilder;
3418
3809
  build: () => LiveSystemComponent;
3419
3810
  };
3420
- type OpenshiftServiceConfig = {
3811
+ type OpenshiftServiceConfig = {
3812
+ id: string;
3813
+ version: {
3814
+ major: number;
3815
+ minor: number;
3816
+ patch: number;
3817
+ };
3818
+ displayName: string;
3819
+ description?: string;
3820
+ name: string;
3821
+ port?: number;
3822
+ targetPort?: number;
3823
+ protocol?: string;
3824
+ serviceType?: string;
3825
+ createRoute?: boolean;
3826
+ routeHostname?: string;
3827
+ routeTlsTermination?: string;
3828
+ namespace?: string;
3829
+ workloadName?: string;
3830
+ };
3831
+ declare namespace OpenshiftService {
3832
+ const getBuilder: () => OpenshiftServiceBuilder;
3833
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedOpenshiftServiceBuilder;
3834
+ const create: (config: OpenshiftServiceConfig) => LiveSystemComponent;
3835
+ }
3836
+ //#endregion
3837
+ //#region src/live_system/component/network_and_compute/caas/openshift_security_group.d.ts
3838
+ /**
3839
+ * Returned by satisfy() — only exposes vendor-specific parameters.
3840
+ * Structural properties (id, version, displayName, description,
3841
+ * dependencies, links, ingressRules) are locked to the blueprint
3842
+ * and cannot be overridden.
3843
+ */
3844
+ type SatisfiedOpenshiftSecurityGroupBuilder = {
3845
+ withName: (name: string) => SatisfiedOpenshiftSecurityGroupBuilder;
3846
+ withPolicyType: (policyType: string) => SatisfiedOpenshiftSecurityGroupBuilder;
3847
+ withPodSelector: (podSelector: string) => SatisfiedOpenshiftSecurityGroupBuilder;
3848
+ withEgressRules: (egressRules: string) => SatisfiedOpenshiftSecurityGroupBuilder;
3849
+ build: () => LiveSystemComponent;
3850
+ };
3851
+ type OpenshiftSecurityGroupBuilder = {
3852
+ withId: (id: string) => OpenshiftSecurityGroupBuilder;
3853
+ withVersion: (major: number, minor: number, patch: number) => OpenshiftSecurityGroupBuilder;
3854
+ withDisplayName: (displayName: string) => OpenshiftSecurityGroupBuilder;
3855
+ withDescription: (description: string) => OpenshiftSecurityGroupBuilder;
3856
+ withName: (name: string) => OpenshiftSecurityGroupBuilder;
3857
+ withPolicyType: (policyType: string) => OpenshiftSecurityGroupBuilder;
3858
+ withPodSelector: (podSelector: string) => OpenshiftSecurityGroupBuilder;
3859
+ withIngressRules: (rules: IngressRule[]) => OpenshiftSecurityGroupBuilder;
3860
+ withEgressRules: (egressRules: string) => OpenshiftSecurityGroupBuilder;
3861
+ build: () => LiveSystemComponent;
3862
+ };
3863
+ type OpenshiftSecurityGroupConfig = {
3864
+ id: string;
3865
+ version: {
3866
+ major: number;
3867
+ minor: number;
3868
+ patch: number;
3869
+ };
3870
+ displayName: string;
3871
+ description?: string;
3872
+ name: string;
3873
+ policyType?: string;
3874
+ podSelector?: string;
3875
+ ingressRules?: string;
3876
+ egressRules?: string;
3877
+ };
3878
+ declare namespace OpenshiftSecurityGroup {
3879
+ const getBuilder: () => OpenshiftSecurityGroupBuilder;
3880
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedOpenshiftSecurityGroupBuilder;
3881
+ const create: (config: OpenshiftSecurityGroupConfig) => LiveSystemComponent;
3882
+ }
3883
+ //#endregion
3884
+ //#region src/live_system/component/network_and_compute/paas/eks_cluster.d.ts
3885
+ type SatisfiedAwsEksClusterBuilder = {
3886
+ withKubernetesVersion: (version: string) => SatisfiedAwsEksClusterBuilder;
3887
+ withNetworkPolicyProvider: (provider: string) => SatisfiedAwsEksClusterBuilder;
3888
+ withMasterIpv4CidrBlock: (cidr: string) => SatisfiedAwsEksClusterBuilder;
3889
+ withVpcCidrBlock: (cidr: string) => SatisfiedAwsEksClusterBuilder;
3890
+ withPrivateSubnetCidrs: (cidrs: string[]) => SatisfiedAwsEksClusterBuilder;
3891
+ withDesiredAvailabilityZoneCount: (count: number) => SatisfiedAwsEksClusterBuilder;
3892
+ withNodePools: (nodePools: Record<string, unknown>[]) => SatisfiedAwsEksClusterBuilder;
3893
+ withAddons: (addons: Record<string, unknown>[]) => SatisfiedAwsEksClusterBuilder;
3894
+ withPriorityClasses: (classes: Record<string, unknown>[]) => SatisfiedAwsEksClusterBuilder;
3895
+ withRoles: (roles: Record<string, unknown>[]) => SatisfiedAwsEksClusterBuilder;
3896
+ withWorkloadIdentityEnabled: (enabled: boolean) => SatisfiedAwsEksClusterBuilder;
3897
+ withPrivateClusterDisabled: (disabled: boolean) => SatisfiedAwsEksClusterBuilder;
3898
+ build: () => LiveSystemComponent;
3899
+ };
3900
+ type AwsEksClusterBuilder = {
3901
+ withId: (id: string) => AwsEksClusterBuilder;
3902
+ withVersion: (major: number, minor: number, patch: number) => AwsEksClusterBuilder;
3903
+ withDisplayName: (displayName: string) => AwsEksClusterBuilder;
3904
+ withDescription: (description: string) => AwsEksClusterBuilder;
3905
+ withKubernetesVersion: (version: string) => AwsEksClusterBuilder;
3906
+ withNetworkPolicyProvider: (provider: string) => AwsEksClusterBuilder;
3907
+ withMasterIpv4CidrBlock: (cidr: string) => AwsEksClusterBuilder;
3908
+ withVpcCidrBlock: (cidr: string) => AwsEksClusterBuilder;
3909
+ withPrivateSubnetCidrs: (cidrs: string[]) => AwsEksClusterBuilder;
3910
+ withDesiredAvailabilityZoneCount: (count: number) => AwsEksClusterBuilder;
3911
+ withNodePools: (nodePools: Record<string, unknown>[]) => AwsEksClusterBuilder;
3912
+ withAddons: (addons: Record<string, unknown>[]) => AwsEksClusterBuilder;
3913
+ withPriorityClasses: (classes: Record<string, unknown>[]) => AwsEksClusterBuilder;
3914
+ withRoles: (roles: Record<string, unknown>[]) => AwsEksClusterBuilder;
3915
+ withWorkloadIdentityEnabled: (enabled: boolean) => AwsEksClusterBuilder;
3916
+ withPrivateClusterDisabled: (disabled: boolean) => AwsEksClusterBuilder;
3917
+ build: () => LiveSystemComponent;
3918
+ };
3919
+ type AwsEksClusterConfig = {
3920
+ id: string;
3921
+ version: {
3922
+ major: number;
3923
+ minor: number;
3924
+ patch: number;
3925
+ };
3926
+ displayName: string;
3927
+ description?: string;
3928
+ kubernetesVersion?: string;
3929
+ networkPolicyProvider?: string;
3930
+ masterIpv4CidrBlock?: string;
3931
+ vpcCidrBlock?: string;
3932
+ privateSubnetCidrs?: string[];
3933
+ desiredAvailabilityZoneCount?: number;
3934
+ nodePools?: Record<string, unknown>[];
3935
+ addons?: Record<string, unknown>[];
3936
+ priorityClasses?: Record<string, unknown>[];
3937
+ roles?: Record<string, unknown>[];
3938
+ workloadIdentityEnabled?: boolean;
3939
+ privateClusterDisabled?: boolean;
3940
+ };
3941
+ declare namespace AwsEksCluster {
3942
+ const getBuilder: () => AwsEksClusterBuilder;
3943
+ /**
3944
+ * Satisfies a blueprint ContainerPlatform component as an AWS EKS Cluster.
3945
+ * Carries id, version, displayName, and description from the blueprint.
3946
+ * All cluster-specific parameters (Kubernetes version, node pools, etc.)
3947
+ * are AWS-specific and must be added via the builder methods.
3948
+ */
3949
+ const satisfy: (platform: BlueprintComponent) => SatisfiedAwsEksClusterBuilder;
3950
+ const create: (config: AwsEksClusterConfig) => LiveSystemComponent;
3951
+ }
3952
+ //#endregion
3953
+ //#region src/live_system/component/network_and_compute/paas/ecs_cluster.d.ts
3954
+ /**
3955
+ * Returned by satisfy() — id, version, and displayName are locked from the
3956
+ * blueprint ContainerPlatform. No AWS-specific parameters are needed for a
3957
+ * basic ECS cluster, so only build() is exposed.
3958
+ */
3959
+ type SatisfiedAwsEcsClusterBuilder = {
3960
+ build: () => LiveSystemComponent;
3961
+ };
3962
+ type AwsEcsClusterBuilder = {
3963
+ withId: (id: string) => AwsEcsClusterBuilder;
3964
+ withVersion: (major: number, minor: number, patch: number) => AwsEcsClusterBuilder;
3965
+ withDisplayName: (displayName: string) => AwsEcsClusterBuilder;
3966
+ withDescription: (description: string) => AwsEcsClusterBuilder;
3967
+ build: () => LiveSystemComponent;
3968
+ };
3969
+ type AwsEcsClusterConfig = {
3970
+ id: string;
3971
+ version: {
3972
+ major: number;
3973
+ minor: number;
3974
+ patch: number;
3975
+ };
3976
+ displayName: string;
3977
+ description?: string;
3978
+ };
3979
+ declare namespace AwsEcsCluster {
3980
+ const getBuilder: () => AwsEcsClusterBuilder;
3981
+ /**
3982
+ * Satisfies a blueprint ContainerPlatform component as an AWS ECS Cluster.
3983
+ * Carries id, version, displayName, and description from the blueprint.
3984
+ */
3985
+ const satisfy: (platform: BlueprintComponent) => SatisfiedAwsEcsClusterBuilder;
3986
+ const create: (config: AwsEcsClusterConfig) => LiveSystemComponent;
3987
+ }
3988
+ //#endregion
3989
+ //#region src/live_system/component/network_and_compute/paas/ecs_task_definition.d.ts
3990
+ /**
3991
+ * Branded live-system component produced by AwsEcsTaskDefinition builders.
3992
+ * The brand prevents passing an arbitrary LiveSystemComponent to
3993
+ * AwsEcsService.withTaskDefinition() — only a value produced by
3994
+ * AwsEcsTaskDefinition.satisfy() or AwsEcsTaskDefinition.create() is accepted.
3995
+ */
3996
+ type AwsEcsTaskDefinitionComponent = LiveSystemComponent & {
3997
+ readonly _brand: 'AwsEcsTaskDefinition';
3998
+ };
3999
+ /**
4000
+ * Returned by satisfy() — blueprint params (image, port, cpu, memory) are
4001
+ * locked. Only IAM role ARNs and network mode can be added here.
4002
+ *
4003
+ * The component ID is derived as `${workload.id}-task` to avoid collision
4004
+ * with the AwsEcsService component that satisfies the same blueprint workload.
4005
+ */
4006
+ type SatisfiedAwsEcsTaskDefinitionBuilder = {
4007
+ withNetworkMode: (mode: string) => SatisfiedAwsEcsTaskDefinitionBuilder;
4008
+ withExecutionRoleArn: (arn: string) => SatisfiedAwsEcsTaskDefinitionBuilder;
4009
+ withTaskRoleArn: (arn: string) => SatisfiedAwsEcsTaskDefinitionBuilder;
4010
+ build: () => AwsEcsTaskDefinitionComponent;
4011
+ };
4012
+ type AwsEcsTaskDefinitionBuilder = {
4013
+ withId: (id: string) => AwsEcsTaskDefinitionBuilder;
4014
+ withVersion: (major: number, minor: number, patch: number) => AwsEcsTaskDefinitionBuilder;
4015
+ withDisplayName: (displayName: string) => AwsEcsTaskDefinitionBuilder;
4016
+ withDescription: (description: string) => AwsEcsTaskDefinitionBuilder;
4017
+ withContainerImage: (image: string) => AwsEcsTaskDefinitionBuilder;
4018
+ withContainerPort: (port: number) => AwsEcsTaskDefinitionBuilder;
4019
+ withContainerName: (name: string) => AwsEcsTaskDefinitionBuilder;
4020
+ withCpu: (cpu: string) => AwsEcsTaskDefinitionBuilder;
4021
+ withMemory: (memory: string) => AwsEcsTaskDefinitionBuilder;
4022
+ withNetworkMode: (mode: string) => AwsEcsTaskDefinitionBuilder;
4023
+ withExecutionRoleArn: (arn: string) => AwsEcsTaskDefinitionBuilder;
4024
+ withTaskRoleArn: (arn: string) => AwsEcsTaskDefinitionBuilder;
4025
+ build: () => AwsEcsTaskDefinitionComponent;
4026
+ };
4027
+ type AwsEcsTaskDefinitionConfig = {
4028
+ id: string;
4029
+ version: {
4030
+ major: number;
4031
+ minor: number;
4032
+ patch: number;
4033
+ };
4034
+ displayName: string;
4035
+ description?: string;
4036
+ containerImage: string;
4037
+ containerPort?: number;
4038
+ containerName?: string;
4039
+ cpu?: string;
4040
+ memory?: string;
4041
+ networkMode?: string;
4042
+ executionRoleArn?: string;
4043
+ taskRoleArn?: string;
4044
+ };
4045
+ declare namespace AwsEcsTaskDefinition {
4046
+ const getBuilder: () => AwsEcsTaskDefinitionBuilder;
4047
+ /**
4048
+ * Satisfies a blueprint Workload component as an AWS ECS Task Definition.
4049
+ * The component ID is `${workload.id}-task` to avoid collision with the
4050
+ * AwsEcsService that satisfies the same workload.
4051
+ */
4052
+ const satisfy: (workload: BlueprintComponent) => SatisfiedAwsEcsTaskDefinitionBuilder;
4053
+ const create: (config: AwsEcsTaskDefinitionConfig) => AwsEcsTaskDefinitionComponent;
4054
+ }
4055
+ //#endregion
4056
+ //#region src/live_system/component/network_and_compute/paas/ecs_service.d.ts
4057
+ /**
4058
+ * Returned by satisfy() — all structural properties (dependencies, links,
4059
+ * desiredCount) are locked from the blueprint. Only AWS-specific launch
4060
+ * parameters and live-system sub-component dependencies are set here.
4061
+ */
4062
+ type SatisfiedAwsEcsServiceBuilder = {
4063
+ withLaunchType: (type: string) => SatisfiedAwsEcsServiceBuilder;
4064
+ withAssignPublicIp: (assign: boolean) => SatisfiedAwsEcsServiceBuilder;
4065
+ /**
4066
+ * Declares a live-system-only dependency on the ECS Task Definition that
4067
+ * this service will run. This has no blueprint equivalent — it is an
4068
+ * AWS-specific sub-component relationship.
4069
+ *
4070
+ * Only accepts an AwsEcsTaskDefinitionComponent produced by
4071
+ * AwsEcsTaskDefinition.satisfy() or AwsEcsTaskDefinition.create().
4072
+ */
4073
+ withTaskDefinition: (taskDef: AwsEcsTaskDefinitionComponent) => SatisfiedAwsEcsServiceBuilder;
4074
+ build: () => LiveSystemComponent;
4075
+ };
4076
+ type AwsEcsServiceBuilder = {
4077
+ withId: (id: string) => AwsEcsServiceBuilder;
4078
+ withVersion: (major: number, minor: number, patch: number) => AwsEcsServiceBuilder;
4079
+ withDisplayName: (displayName: string) => AwsEcsServiceBuilder;
4080
+ withDescription: (description: string) => AwsEcsServiceBuilder;
4081
+ withDesiredCount: (count: number) => AwsEcsServiceBuilder;
4082
+ withLaunchType: (type: string) => AwsEcsServiceBuilder;
4083
+ withAssignPublicIp: (assign: boolean) => AwsEcsServiceBuilder;
4084
+ build: () => LiveSystemComponent;
4085
+ };
4086
+ type AwsEcsServiceConfig = {
4087
+ id: string;
4088
+ version: {
4089
+ major: number;
4090
+ minor: number;
4091
+ patch: number;
4092
+ };
4093
+ displayName: string;
4094
+ description?: string;
4095
+ desiredCount?: number;
4096
+ launchType?: string;
4097
+ assignPublicIp?: boolean;
4098
+ };
4099
+ declare namespace AwsEcsService {
4100
+ const getBuilder: () => AwsEcsServiceBuilder;
4101
+ /**
4102
+ * Satisfies a blueprint Workload component as an AWS ECS Service.
4103
+ * All structural properties — dependencies (subnet, cluster), links
4104
+ * (traffic rules, SG membership), and desiredCount — are carried from
4105
+ * the blueprint unchanged. Only AWS-specific launch parameters are added here.
4106
+ */
4107
+ /**
4108
+ * Satisfies a blueprint Workload component as an AWS ECS Service.
4109
+ * All structural properties — dependencies (subnet, cluster), links
4110
+ * (traffic rules, SG membership), and desiredCount — are carried from
4111
+ * the blueprint unchanged. Only AWS-specific launch parameters are added here.
4112
+ */
4113
+ const satisfy: (workload: BlueprintComponent) => SatisfiedAwsEcsServiceBuilder;
4114
+ const create: (config: AwsEcsServiceConfig) => LiveSystemComponent;
4115
+ }
4116
+ //#endregion
4117
+ //#region src/live_system/component/network_and_compute/paas/azure_aks.d.ts
4118
+ type SatisfiedAzureAksClusterBuilder = {
4119
+ withKubernetesVersion: (version: string) => SatisfiedAzureAksClusterBuilder;
4120
+ withNetworkPolicyProvider: (provider: string) => SatisfiedAzureAksClusterBuilder;
4121
+ withMasterIpv4CidrBlock: (cidr: string) => SatisfiedAzureAksClusterBuilder;
4122
+ withVnetSubnetAddressIpRange: (range: string) => SatisfiedAzureAksClusterBuilder;
4123
+ withManagedClusterSkuTier: (tier: string) => SatisfiedAzureAksClusterBuilder;
4124
+ withWindowsAdminUsername: (username: string) => SatisfiedAzureAksClusterBuilder;
4125
+ withExternalWorkspaceResourceId: (id: string) => SatisfiedAzureAksClusterBuilder;
4126
+ withNodePools: (nodePools: Record<string, unknown>[]) => SatisfiedAzureAksClusterBuilder;
4127
+ withAzureActiveDirectoryProfile: (profile: Record<string, unknown>) => SatisfiedAzureAksClusterBuilder;
4128
+ withOutboundIps: (ips: Record<string, unknown>[]) => SatisfiedAzureAksClusterBuilder;
4129
+ withPriorityClasses: (classes: Record<string, unknown>[]) => SatisfiedAzureAksClusterBuilder;
4130
+ withRoles: (roles: Record<string, unknown>[]) => SatisfiedAzureAksClusterBuilder;
4131
+ withWorkloadIdentityEnabled: (enabled: boolean) => SatisfiedAzureAksClusterBuilder;
4132
+ withPrivateClusterDisabled: (disabled: boolean) => SatisfiedAzureAksClusterBuilder;
4133
+ build: () => LiveSystemComponent;
4134
+ };
4135
+ type AzureAksClusterBuilder = {
4136
+ withId: (id: string) => AzureAksClusterBuilder;
4137
+ withVersion: (major: number, minor: number, patch: number) => AzureAksClusterBuilder;
4138
+ withDisplayName: (displayName: string) => AzureAksClusterBuilder;
4139
+ withDescription: (description: string) => AzureAksClusterBuilder;
4140
+ withKubernetesVersion: (version: string) => AzureAksClusterBuilder;
4141
+ withNetworkPolicyProvider: (provider: string) => AzureAksClusterBuilder;
4142
+ withMasterIpv4CidrBlock: (cidr: string) => AzureAksClusterBuilder;
4143
+ withVnetSubnetAddressIpRange: (range: string) => AzureAksClusterBuilder;
4144
+ withManagedClusterSkuTier: (tier: string) => AzureAksClusterBuilder;
4145
+ withWindowsAdminUsername: (username: string) => AzureAksClusterBuilder;
4146
+ withExternalWorkspaceResourceId: (id: string) => AzureAksClusterBuilder;
4147
+ withNodePools: (nodePools: Record<string, unknown>[]) => AzureAksClusterBuilder;
4148
+ withAzureActiveDirectoryProfile: (profile: Record<string, unknown>) => AzureAksClusterBuilder;
4149
+ withOutboundIps: (ips: Record<string, unknown>[]) => AzureAksClusterBuilder;
4150
+ withPriorityClasses: (classes: Record<string, unknown>[]) => AzureAksClusterBuilder;
4151
+ withRoles: (roles: Record<string, unknown>[]) => AzureAksClusterBuilder;
4152
+ withWorkloadIdentityEnabled: (enabled: boolean) => AzureAksClusterBuilder;
4153
+ withPrivateClusterDisabled: (disabled: boolean) => AzureAksClusterBuilder;
4154
+ build: () => LiveSystemComponent;
4155
+ };
4156
+ type AzureAksClusterConfig = {
4157
+ id: string;
4158
+ version: {
4159
+ major: number;
4160
+ minor: number;
4161
+ patch: number;
4162
+ };
4163
+ displayName: string;
4164
+ description?: string;
4165
+ kubernetesVersion?: string;
4166
+ networkPolicyProvider?: string;
4167
+ masterIpv4CidrBlock?: string;
4168
+ vnetSubnetAddressIpRange?: string;
4169
+ managedClusterSkuTier?: string;
4170
+ windowsAdminUsername?: string;
4171
+ externalWorkspaceResourceId?: string;
4172
+ nodePools?: Record<string, unknown>[];
4173
+ azureActiveDirectoryProfile?: Record<string, unknown>;
4174
+ outboundIps?: Record<string, unknown>[];
4175
+ priorityClasses?: Record<string, unknown>[];
4176
+ roles?: Record<string, unknown>[];
4177
+ workloadIdentityEnabled?: boolean;
4178
+ privateClusterDisabled?: boolean;
4179
+ };
4180
+ declare namespace AzureAksCluster {
4181
+ const getBuilder: () => AzureAksClusterBuilder;
4182
+ /**
4183
+ * Satisfies a blueprint ContainerPlatform component as an Azure AKS Cluster.
4184
+ * Carries id, version, displayName, and description from the blueprint.
4185
+ * All cluster-specific parameters are Azure-specific and must be added via
4186
+ * the builder methods.
4187
+ */
4188
+ const satisfy: (platform: BlueprintComponent) => SatisfiedAzureAksClusterBuilder;
4189
+ const create: (config: AzureAksClusterConfig) => LiveSystemComponent;
4190
+ }
4191
+ //#endregion
4192
+ //#region src/live_system/component/network_and_compute/paas/azure_container_apps_environment.d.ts
4193
+ type SatisfiedAzureContainerAppsEnvironmentBuilder = {
4194
+ withLocation: (location: string) => SatisfiedAzureContainerAppsEnvironmentBuilder;
4195
+ withResourceGroup: (resourceGroup: string) => SatisfiedAzureContainerAppsEnvironmentBuilder;
4196
+ withLogAnalyticsWorkspaceId: (id: string) => SatisfiedAzureContainerAppsEnvironmentBuilder;
4197
+ withLogAnalyticsSharedKey: (key: string) => SatisfiedAzureContainerAppsEnvironmentBuilder;
4198
+ build: () => LiveSystemComponent;
4199
+ };
4200
+ type AzureContainerAppsEnvironmentBuilder = {
4201
+ withId: (id: string) => AzureContainerAppsEnvironmentBuilder;
4202
+ withVersion: (major: number, minor: number, patch: number) => AzureContainerAppsEnvironmentBuilder;
4203
+ withDisplayName: (displayName: string) => AzureContainerAppsEnvironmentBuilder;
4204
+ withDescription: (description: string) => AzureContainerAppsEnvironmentBuilder;
4205
+ withLocation: (location: string) => AzureContainerAppsEnvironmentBuilder;
4206
+ withResourceGroup: (resourceGroup: string) => AzureContainerAppsEnvironmentBuilder;
4207
+ withLogAnalyticsWorkspaceId: (id: string) => AzureContainerAppsEnvironmentBuilder;
4208
+ withLogAnalyticsSharedKey: (key: string) => AzureContainerAppsEnvironmentBuilder;
4209
+ build: () => LiveSystemComponent;
4210
+ };
4211
+ type AzureContainerAppsEnvironmentConfig = {
4212
+ id: string;
4213
+ version: {
4214
+ major: number;
4215
+ minor: number;
4216
+ patch: number;
4217
+ };
4218
+ displayName: string;
4219
+ description?: string;
4220
+ location: string;
4221
+ resourceGroup: string;
4222
+ logAnalyticsWorkspaceId?: string;
4223
+ logAnalyticsSharedKey?: string;
4224
+ };
4225
+ declare namespace AzureContainerAppsEnvironment {
4226
+ const getBuilder: () => AzureContainerAppsEnvironmentBuilder;
4227
+ /**
4228
+ * Satisfies a blueprint ContainerPlatform component as an Azure Container
4229
+ * Apps Environment. Carries id, version, displayName, and description from
4230
+ * the blueprint. Location and resourceGroup are Azure-specific and required.
4231
+ *
4232
+ * Dependencies declared in the blueprint (e.g. optional subnet for VNet
4233
+ * integration) are carried automatically.
4234
+ */
4235
+ const satisfy: (platform: BlueprintComponent) => SatisfiedAzureContainerAppsEnvironmentBuilder;
4236
+ const create: (config: AzureContainerAppsEnvironmentConfig) => LiveSystemComponent;
4237
+ }
4238
+ //#endregion
4239
+ //#region src/live_system/component/network_and_compute/paas/azure_container_instance.d.ts
4240
+ type SatisfiedAzureContainerInstanceBuilder = {
4241
+ withLocation: (location: string) => SatisfiedAzureContainerInstanceBuilder;
4242
+ withResourceGroup: (resourceGroup: string) => SatisfiedAzureContainerInstanceBuilder;
4243
+ withCpu: (cpu: number) => SatisfiedAzureContainerInstanceBuilder;
4244
+ withMemoryInGb: (memoryInGb: number) => SatisfiedAzureContainerInstanceBuilder;
4245
+ withRestartPolicy: (policy: string) => SatisfiedAzureContainerInstanceBuilder;
4246
+ withPublicIp: (publicIp: boolean) => SatisfiedAzureContainerInstanceBuilder;
4247
+ withDnsNameLabel: (label: string) => SatisfiedAzureContainerInstanceBuilder;
4248
+ build: () => LiveSystemComponent;
4249
+ };
4250
+ type AzureContainerInstanceBuilder = {
4251
+ withId: (id: string) => AzureContainerInstanceBuilder;
4252
+ withVersion: (major: number, minor: number, patch: number) => AzureContainerInstanceBuilder;
4253
+ withDisplayName: (displayName: string) => AzureContainerInstanceBuilder;
4254
+ withDescription: (description: string) => AzureContainerInstanceBuilder;
4255
+ withImage: (image: string) => AzureContainerInstanceBuilder;
4256
+ withPort: (port: number) => AzureContainerInstanceBuilder;
4257
+ withLocation: (location: string) => AzureContainerInstanceBuilder;
4258
+ withResourceGroup: (resourceGroup: string) => AzureContainerInstanceBuilder;
4259
+ withCpu: (cpu: number) => AzureContainerInstanceBuilder;
4260
+ withMemoryInGb: (memoryInGb: number) => AzureContainerInstanceBuilder;
4261
+ withRestartPolicy: (policy: string) => AzureContainerInstanceBuilder;
4262
+ withPublicIp: (publicIp: boolean) => AzureContainerInstanceBuilder;
4263
+ withDnsNameLabel: (label: string) => AzureContainerInstanceBuilder;
4264
+ build: () => LiveSystemComponent;
4265
+ };
4266
+ type AzureContainerInstanceConfig = {
4267
+ id: string;
4268
+ version: {
4269
+ major: number;
4270
+ minor: number;
4271
+ patch: number;
4272
+ };
4273
+ displayName: string;
4274
+ description?: string;
4275
+ image: string;
4276
+ port?: number;
4277
+ location: string;
4278
+ resourceGroup: string;
4279
+ cpu?: number;
4280
+ memoryInGb?: number;
4281
+ restartPolicy?: string;
4282
+ publicIp?: boolean;
4283
+ dnsNameLabel?: string;
4284
+ };
4285
+ declare namespace AzureContainerInstance {
4286
+ const getBuilder: () => AzureContainerInstanceBuilder;
4287
+ /**
4288
+ * Satisfies a blueprint Workload component as an Azure Container Instance.
4289
+ * Carries id, version, displayName, description, dependencies, links, and
4290
+ * container image/port from the blueprint. Location and resourceGroup are
4291
+ * Azure-specific and required — add them via withLocation/withResourceGroup.
4292
+ *
4293
+ * Note: the container image is immutable after creation — drift on the image
4294
+ * triggers delete + recreate.
4295
+ */
4296
+ const satisfy: (workload: BlueprintComponent) => SatisfiedAzureContainerInstanceBuilder;
4297
+ const create: (config: AzureContainerInstanceConfig) => LiveSystemComponent;
4298
+ }
4299
+ //#endregion
4300
+ //#region src/live_system/component/network_and_compute/paas/azure_container_app.d.ts
4301
+ type SatisfiedAzureContainerAppBuilder = {
4302
+ withLocation: (location: string) => SatisfiedAzureContainerAppBuilder;
4303
+ withResourceGroup: (resourceGroup: string) => SatisfiedAzureContainerAppBuilder;
4304
+ withExternalIngress: (external: boolean) => SatisfiedAzureContainerAppBuilder;
4305
+ withMinReplicas: (min: number) => SatisfiedAzureContainerAppBuilder;
4306
+ withMaxReplicas: (max: number) => SatisfiedAzureContainerAppBuilder;
4307
+ build: () => LiveSystemComponent;
4308
+ };
4309
+ type AzureContainerAppBuilder = {
4310
+ withId: (id: string) => AzureContainerAppBuilder;
4311
+ withVersion: (major: number, minor: number, patch: number) => AzureContainerAppBuilder;
4312
+ withDisplayName: (displayName: string) => AzureContainerAppBuilder;
4313
+ withDescription: (description: string) => AzureContainerAppBuilder;
4314
+ withImage: (image: string) => AzureContainerAppBuilder;
4315
+ withPort: (port: number) => AzureContainerAppBuilder;
4316
+ withCpu: (cpu: number) => AzureContainerAppBuilder;
4317
+ withMemory: (memory: string) => AzureContainerAppBuilder;
4318
+ withLocation: (location: string) => AzureContainerAppBuilder;
4319
+ withResourceGroup: (resourceGroup: string) => AzureContainerAppBuilder;
4320
+ withExternalIngress: (external: boolean) => AzureContainerAppBuilder;
4321
+ withMinReplicas: (min: number) => AzureContainerAppBuilder;
4322
+ withMaxReplicas: (max: number) => AzureContainerAppBuilder;
4323
+ build: () => LiveSystemComponent;
4324
+ };
4325
+ type AzureContainerAppConfig = {
3421
4326
  id: string;
3422
4327
  version: {
3423
4328
  major: number;
@@ -3426,50 +4331,249 @@ type OpenshiftServiceConfig = {
3426
4331
  };
3427
4332
  displayName: string;
3428
4333
  description?: string;
3429
- name: string;
4334
+ image: string;
3430
4335
  port?: number;
3431
- targetPort?: number;
3432
- protocol?: string;
3433
- serviceType?: string;
3434
- createRoute?: boolean;
3435
- routeHostname?: string;
3436
- routeTlsTermination?: string;
3437
- namespace?: string;
3438
- workloadName?: string;
4336
+ cpu?: number;
4337
+ memory?: string;
4338
+ location: string;
4339
+ resourceGroup: string;
4340
+ externalIngress?: boolean;
4341
+ minReplicas?: number;
4342
+ maxReplicas?: number;
3439
4343
  };
3440
- declare namespace OpenshiftService {
3441
- const getBuilder: () => OpenshiftServiceBuilder;
3442
- const satisfy: (blueprint: BlueprintComponent) => SatisfiedOpenshiftServiceBuilder;
3443
- const create: (config: OpenshiftServiceConfig) => LiveSystemComponent;
4344
+ declare namespace AzureContainerApp {
4345
+ const getBuilder: () => AzureContainerAppBuilder;
4346
+ /**
4347
+ * Satisfies a blueprint Workload component as an Azure Container App.
4348
+ * Carries id, version, displayName, description, dependencies (including
4349
+ * the AzureContainerAppsEnvironment dep auto-wired via ContainerPlatform),
4350
+ * links, container image, port, cpu, and memory from the blueprint.
4351
+ * Location and resourceGroup are Azure-specific and required.
4352
+ */
4353
+ const satisfy: (workload: BlueprintComponent) => SatisfiedAzureContainerAppBuilder;
4354
+ const create: (config: AzureContainerAppConfig) => LiveSystemComponent;
4355
+ }
4356
+ //#endregion
4357
+ //#region src/live_system/component/network_and_compute/paas/gcp_gke.d.ts
4358
+ type SatisfiedGcpGkeClusterBuilder = {
4359
+ withKubernetesVersion: (version: string) => SatisfiedGcpGkeClusterBuilder;
4360
+ withNetworkPolicyProvider: (provider: string) => SatisfiedGcpGkeClusterBuilder;
4361
+ withMasterIpv4CidrBlock: (cidr: string) => SatisfiedGcpGkeClusterBuilder;
4362
+ withNetworkName: (name: string) => SatisfiedGcpGkeClusterBuilder;
4363
+ withSubnetworkName: (name: string) => SatisfiedGcpGkeClusterBuilder;
4364
+ withSubnetworkIpRange: (range: string) => SatisfiedGcpGkeClusterBuilder;
4365
+ withServiceIpRange: (range: string) => SatisfiedGcpGkeClusterBuilder;
4366
+ withPodIpRange: (range: string) => SatisfiedGcpGkeClusterBuilder;
4367
+ withPodsRangeName: (name: string) => SatisfiedGcpGkeClusterBuilder;
4368
+ withServicesRangeName: (name: string) => SatisfiedGcpGkeClusterBuilder;
4369
+ withNodePools: (nodePools: Record<string, unknown>[]) => SatisfiedGcpGkeClusterBuilder;
4370
+ withPriorityClasses: (classes: Record<string, unknown>[]) => SatisfiedGcpGkeClusterBuilder;
4371
+ withRoles: (roles: Record<string, unknown>[]) => SatisfiedGcpGkeClusterBuilder;
4372
+ withWorkloadIdentityEnabled: (enabled: boolean) => SatisfiedGcpGkeClusterBuilder;
4373
+ withPrivateClusterDisabled: (disabled: boolean) => SatisfiedGcpGkeClusterBuilder;
4374
+ build: () => LiveSystemComponent;
4375
+ };
4376
+ type GcpGkeClusterBuilder = {
4377
+ withId: (id: string) => GcpGkeClusterBuilder;
4378
+ withVersion: (major: number, minor: number, patch: number) => GcpGkeClusterBuilder;
4379
+ withDisplayName: (displayName: string) => GcpGkeClusterBuilder;
4380
+ withDescription: (description: string) => GcpGkeClusterBuilder;
4381
+ withKubernetesVersion: (version: string) => GcpGkeClusterBuilder;
4382
+ withNetworkPolicyProvider: (provider: string) => GcpGkeClusterBuilder;
4383
+ withMasterIpv4CidrBlock: (cidr: string) => GcpGkeClusterBuilder;
4384
+ withNetworkName: (name: string) => GcpGkeClusterBuilder;
4385
+ withSubnetworkName: (name: string) => GcpGkeClusterBuilder;
4386
+ withSubnetworkIpRange: (range: string) => GcpGkeClusterBuilder;
4387
+ withServiceIpRange: (range: string) => GcpGkeClusterBuilder;
4388
+ withPodIpRange: (range: string) => GcpGkeClusterBuilder;
4389
+ withPodsRangeName: (name: string) => GcpGkeClusterBuilder;
4390
+ withServicesRangeName: (name: string) => GcpGkeClusterBuilder;
4391
+ withNodePools: (nodePools: Record<string, unknown>[]) => GcpGkeClusterBuilder;
4392
+ withPriorityClasses: (classes: Record<string, unknown>[]) => GcpGkeClusterBuilder;
4393
+ withRoles: (roles: Record<string, unknown>[]) => GcpGkeClusterBuilder;
4394
+ withWorkloadIdentityEnabled: (enabled: boolean) => GcpGkeClusterBuilder;
4395
+ withPrivateClusterDisabled: (disabled: boolean) => GcpGkeClusterBuilder;
4396
+ build: () => LiveSystemComponent;
4397
+ };
4398
+ type GcpGkeClusterConfig = {
4399
+ id: string;
4400
+ version: {
4401
+ major: number;
4402
+ minor: number;
4403
+ patch: number;
4404
+ };
4405
+ displayName: string;
4406
+ description?: string;
4407
+ kubernetesVersion?: string;
4408
+ networkPolicyProvider?: string;
4409
+ masterIpv4CidrBlock?: string;
4410
+ networkName?: string;
4411
+ subnetworkName?: string;
4412
+ subnetworkIpRange?: string;
4413
+ serviceIpRange?: string;
4414
+ podIpRange?: string;
4415
+ podsRangeName?: string;
4416
+ servicesRangeName?: string;
4417
+ nodePools?: Record<string, unknown>[];
4418
+ priorityClasses?: Record<string, unknown>[];
4419
+ roles?: Record<string, unknown>[];
4420
+ workloadIdentityEnabled?: boolean;
4421
+ privateClusterDisabled?: boolean;
4422
+ };
4423
+ declare namespace GcpGkeCluster {
4424
+ const getBuilder: () => GcpGkeClusterBuilder;
4425
+ /**
4426
+ * Satisfies a blueprint ContainerPlatform component as a GCP GKE Cluster.
4427
+ * Carries id, version, displayName, and description from the blueprint.
4428
+ * All cluster-specific parameters are GCP-specific and must be added via
4429
+ * the builder methods.
4430
+ */
4431
+ const satisfy: (platform: BlueprintComponent) => SatisfiedGcpGkeClusterBuilder;
4432
+ const create: (config: GcpGkeClusterConfig) => LiveSystemComponent;
4433
+ }
4434
+ //#endregion
4435
+ //#region src/live_system/component/network_and_compute/paas/gcp_cloud_run_service.d.ts
4436
+ type SatisfiedGcpCloudRunServiceBuilder = {
4437
+ withRegion: (region: string) => SatisfiedGcpCloudRunServiceBuilder;
4438
+ withMinInstances: (min: number) => SatisfiedGcpCloudRunServiceBuilder;
4439
+ withMaxInstances: (max: number) => SatisfiedGcpCloudRunServiceBuilder;
4440
+ withConcurrency: (concurrency: number) => SatisfiedGcpCloudRunServiceBuilder;
4441
+ withServiceAccountEmail: (email: string) => SatisfiedGcpCloudRunServiceBuilder;
4442
+ withIngress: (ingress: string) => SatisfiedGcpCloudRunServiceBuilder;
4443
+ build: () => LiveSystemComponent;
4444
+ };
4445
+ type GcpCloudRunServiceBuilder = {
4446
+ withId: (id: string) => GcpCloudRunServiceBuilder;
4447
+ withVersion: (major: number, minor: number, patch: number) => GcpCloudRunServiceBuilder;
4448
+ withDisplayName: (displayName: string) => GcpCloudRunServiceBuilder;
4449
+ withDescription: (description: string) => GcpCloudRunServiceBuilder;
4450
+ withImage: (image: string) => GcpCloudRunServiceBuilder;
4451
+ withPort: (port: number) => GcpCloudRunServiceBuilder;
4452
+ withCpu: (cpu: string) => GcpCloudRunServiceBuilder;
4453
+ withMemory: (memory: string) => GcpCloudRunServiceBuilder;
4454
+ withRegion: (region: string) => GcpCloudRunServiceBuilder;
4455
+ withMinInstances: (min: number) => GcpCloudRunServiceBuilder;
4456
+ withMaxInstances: (max: number) => GcpCloudRunServiceBuilder;
4457
+ withConcurrency: (concurrency: number) => GcpCloudRunServiceBuilder;
4458
+ withServiceAccountEmail: (email: string) => GcpCloudRunServiceBuilder;
4459
+ withIngress: (ingress: string) => GcpCloudRunServiceBuilder;
4460
+ build: () => LiveSystemComponent;
4461
+ };
4462
+ type GcpCloudRunServiceConfig = {
4463
+ id: string;
4464
+ version: {
4465
+ major: number;
4466
+ minor: number;
4467
+ patch: number;
4468
+ };
4469
+ displayName: string;
4470
+ description?: string;
4471
+ image: string;
4472
+ port?: number;
4473
+ cpu?: string;
4474
+ memory?: string;
4475
+ region: string;
4476
+ minInstances?: number;
4477
+ maxInstances?: number;
4478
+ concurrency?: number;
4479
+ serviceAccountEmail?: string;
4480
+ ingress?: string;
4481
+ };
4482
+ declare namespace GcpCloudRunService {
4483
+ const getBuilder: () => GcpCloudRunServiceBuilder;
4484
+ /**
4485
+ * Satisfies a blueprint Workload component as a GCP Cloud Run Service.
4486
+ * Carries id, version, displayName, description, dependencies, links,
4487
+ * container image, port, cpu, and memory from the blueprint.
4488
+ * Region is GCP-specific and required — add it via withRegion().
4489
+ *
4490
+ * An optional dependency on a GcpSubnet blueprint component enables
4491
+ * Direct VPC egress (declare the dependency in the blueprint).
4492
+ */
4493
+ const satisfy: (workload: BlueprintComponent) => SatisfiedGcpCloudRunServiceBuilder;
4494
+ const create: (config: GcpCloudRunServiceConfig) => LiveSystemComponent;
4495
+ }
4496
+ //#endregion
4497
+ //#region src/live_system/component/network_and_compute/paas/oci_container_instance.d.ts
4498
+ type SatisfiedOciContainerInstanceBuilder = {
4499
+ withAvailabilityDomain: (domain: string) => SatisfiedOciContainerInstanceBuilder;
4500
+ withCompartmentId: (compartmentId: string) => SatisfiedOciContainerInstanceBuilder;
4501
+ withOcpus: (ocpus: number) => SatisfiedOciContainerInstanceBuilder;
4502
+ withMemoryInGbs: (memoryInGbs: number) => SatisfiedOciContainerInstanceBuilder;
4503
+ withShape: (shape: string) => SatisfiedOciContainerInstanceBuilder;
4504
+ withAssignPublicIp: (assignPublicIp: boolean) => SatisfiedOciContainerInstanceBuilder;
4505
+ withContainerRestartPolicy: (policy: string) => SatisfiedOciContainerInstanceBuilder;
4506
+ build: () => LiveSystemComponent;
4507
+ };
4508
+ type OciContainerInstanceBuilder = {
4509
+ withId: (id: string) => OciContainerInstanceBuilder;
4510
+ withVersion: (major: number, minor: number, patch: number) => OciContainerInstanceBuilder;
4511
+ withDisplayName: (displayName: string) => OciContainerInstanceBuilder;
4512
+ withDescription: (description: string) => OciContainerInstanceBuilder;
4513
+ withImageUrl: (imageUrl: string) => OciContainerInstanceBuilder;
4514
+ withAvailabilityDomain: (domain: string) => OciContainerInstanceBuilder;
4515
+ withCompartmentId: (compartmentId: string) => OciContainerInstanceBuilder;
4516
+ withOcpus: (ocpus: number) => OciContainerInstanceBuilder;
4517
+ withMemoryInGbs: (memoryInGbs: number) => OciContainerInstanceBuilder;
4518
+ withShape: (shape: string) => OciContainerInstanceBuilder;
4519
+ withPort: (port: number) => OciContainerInstanceBuilder;
4520
+ withAssignPublicIp: (assignPublicIp: boolean) => OciContainerInstanceBuilder;
4521
+ withContainerRestartPolicy: (policy: string) => OciContainerInstanceBuilder;
4522
+ build: () => LiveSystemComponent;
4523
+ };
4524
+ type OciContainerInstanceConfig = {
4525
+ id: string;
4526
+ version: {
4527
+ major: number;
4528
+ minor: number;
4529
+ patch: number;
4530
+ };
4531
+ displayName: string;
4532
+ description?: string;
4533
+ imageUrl: string;
4534
+ availabilityDomain: string;
4535
+ compartmentId: string;
4536
+ ocpus?: number;
4537
+ memoryInGbs?: number;
4538
+ shape?: string;
4539
+ port?: number;
4540
+ assignPublicIp?: boolean;
4541
+ containerRestartPolicy?: string;
4542
+ };
4543
+ declare namespace OciContainerInstance {
4544
+ const getBuilder: () => OciContainerInstanceBuilder;
4545
+ /**
4546
+ * Satisfies a blueprint Workload component as an OCI Container Instance.
4547
+ * Carries id, version, displayName, description, dependencies, and links
4548
+ * from the blueprint. The blueprint containerImage is re-mapped to the
4549
+ * agent's `imageUrl` key.
4550
+ *
4551
+ * availabilityDomain and compartmentId are OCI-specific and required.
4552
+ * The image URL is immutable after creation — drift triggers delete + recreate.
4553
+ *
4554
+ * Dependencies: must declare a dependency on an OciSubnet component in the
4555
+ * blueprint (add it via Subnet.withWorkloads() in fractal.ts).
4556
+ */
4557
+ const satisfy: (workload: BlueprintComponent) => SatisfiedOciContainerInstanceBuilder;
4558
+ const create: (config: OciContainerInstanceConfig) => LiveSystemComponent;
3444
4559
  }
3445
4560
  //#endregion
3446
- //#region src/live_system/component/network_and_compute/caas/openshift_security_group.d.ts
3447
- /**
3448
- * Returned by satisfy() only exposes vendor-specific parameters.
3449
- * Structural properties (id, version, displayName, description,
3450
- * dependencies, links, ingressRules) are locked to the blueprint
3451
- * and cannot be overridden.
3452
- */
3453
- type SatisfiedOpenshiftSecurityGroupBuilder = {
3454
- withName: (name: string) => SatisfiedOpenshiftSecurityGroupBuilder;
3455
- withPolicyType: (policyType: string) => SatisfiedOpenshiftSecurityGroupBuilder;
3456
- withPodSelector: (podSelector: string) => SatisfiedOpenshiftSecurityGroupBuilder;
3457
- withEgressRules: (egressRules: string) => SatisfiedOpenshiftSecurityGroupBuilder;
4561
+ //#region src/live_system/component/network_and_compute/iaas/aruba_vpc.d.ts
4562
+ type SatisfiedArubaVpcBuilder = {
4563
+ withName: (name: string) => SatisfiedArubaVpcBuilder;
4564
+ withLocation: (location: string) => SatisfiedArubaVpcBuilder;
3458
4565
  build: () => LiveSystemComponent;
3459
4566
  };
3460
- type OpenshiftSecurityGroupBuilder = {
3461
- withId: (id: string) => OpenshiftSecurityGroupBuilder;
3462
- withVersion: (major: number, minor: number, patch: number) => OpenshiftSecurityGroupBuilder;
3463
- withDisplayName: (displayName: string) => OpenshiftSecurityGroupBuilder;
3464
- withDescription: (description: string) => OpenshiftSecurityGroupBuilder;
3465
- withName: (name: string) => OpenshiftSecurityGroupBuilder;
3466
- withPolicyType: (policyType: string) => OpenshiftSecurityGroupBuilder;
3467
- withPodSelector: (podSelector: string) => OpenshiftSecurityGroupBuilder;
3468
- withIngressRules: (rules: IngressRule[]) => OpenshiftSecurityGroupBuilder;
3469
- withEgressRules: (egressRules: string) => OpenshiftSecurityGroupBuilder;
4567
+ type ArubaVpcBuilder = {
4568
+ withId: (id: string) => ArubaVpcBuilder;
4569
+ withVersion: (major: number, minor: number, patch: number) => ArubaVpcBuilder;
4570
+ withDisplayName: (displayName: string) => ArubaVpcBuilder;
4571
+ withDescription: (description: string) => ArubaVpcBuilder;
4572
+ withName: (name: string) => ArubaVpcBuilder;
4573
+ withLocation: (location: string) => ArubaVpcBuilder;
3470
4574
  build: () => LiveSystemComponent;
3471
4575
  };
3472
- type OpenshiftSecurityGroupConfig = {
4576
+ type ArubaVpcConfig = {
3473
4577
  id: string;
3474
4578
  version: {
3475
4579
  major: number;
@@ -3478,54 +4582,28 @@ type OpenshiftSecurityGroupConfig = {
3478
4582
  };
3479
4583
  displayName: string;
3480
4584
  description?: string;
3481
- name: string;
3482
- policyType?: string;
3483
- podSelector?: string;
3484
- ingressRules?: string;
3485
- egressRules?: string;
4585
+ name?: string;
4586
+ location?: string;
3486
4587
  };
3487
- declare namespace OpenshiftSecurityGroup {
3488
- const getBuilder: () => OpenshiftSecurityGroupBuilder;
3489
- const satisfy: (blueprint: BlueprintComponent) => SatisfiedOpenshiftSecurityGroupBuilder;
3490
- const create: (config: OpenshiftSecurityGroupConfig) => LiveSystemComponent;
4588
+ declare namespace ArubaVpc {
4589
+ const getBuilder: () => ArubaVpcBuilder;
4590
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedArubaVpcBuilder;
4591
+ const create: (config: ArubaVpcConfig) => LiveSystemComponent;
3491
4592
  }
3492
4593
  //#endregion
3493
- //#region src/live_system/component/network_and_compute/paas/eks_cluster.d.ts
3494
- type SatisfiedAwsEksClusterBuilder = {
3495
- withKubernetesVersion: (version: string) => SatisfiedAwsEksClusterBuilder;
3496
- withNetworkPolicyProvider: (provider: string) => SatisfiedAwsEksClusterBuilder;
3497
- withMasterIpv4CidrBlock: (cidr: string) => SatisfiedAwsEksClusterBuilder;
3498
- withVpcCidrBlock: (cidr: string) => SatisfiedAwsEksClusterBuilder;
3499
- withPrivateSubnetCidrs: (cidrs: string[]) => SatisfiedAwsEksClusterBuilder;
3500
- withDesiredAvailabilityZoneCount: (count: number) => SatisfiedAwsEksClusterBuilder;
3501
- withNodePools: (nodePools: Record<string, unknown>[]) => SatisfiedAwsEksClusterBuilder;
3502
- withAddons: (addons: Record<string, unknown>[]) => SatisfiedAwsEksClusterBuilder;
3503
- withPriorityClasses: (classes: Record<string, unknown>[]) => SatisfiedAwsEksClusterBuilder;
3504
- withRoles: (roles: Record<string, unknown>[]) => SatisfiedAwsEksClusterBuilder;
3505
- withWorkloadIdentityEnabled: (enabled: boolean) => SatisfiedAwsEksClusterBuilder;
3506
- withPrivateClusterDisabled: (disabled: boolean) => SatisfiedAwsEksClusterBuilder;
4594
+ //#region src/live_system/component/network_and_compute/iaas/aruba_subnet.d.ts
4595
+ type SatisfiedArubaSubnetBuilder = {
3507
4596
  build: () => LiveSystemComponent;
3508
4597
  };
3509
- type AwsEksClusterBuilder = {
3510
- withId: (id: string) => AwsEksClusterBuilder;
3511
- withVersion: (major: number, minor: number, patch: number) => AwsEksClusterBuilder;
3512
- withDisplayName: (displayName: string) => AwsEksClusterBuilder;
3513
- withDescription: (description: string) => AwsEksClusterBuilder;
3514
- withKubernetesVersion: (version: string) => AwsEksClusterBuilder;
3515
- withNetworkPolicyProvider: (provider: string) => AwsEksClusterBuilder;
3516
- withMasterIpv4CidrBlock: (cidr: string) => AwsEksClusterBuilder;
3517
- withVpcCidrBlock: (cidr: string) => AwsEksClusterBuilder;
3518
- withPrivateSubnetCidrs: (cidrs: string[]) => AwsEksClusterBuilder;
3519
- withDesiredAvailabilityZoneCount: (count: number) => AwsEksClusterBuilder;
3520
- withNodePools: (nodePools: Record<string, unknown>[]) => AwsEksClusterBuilder;
3521
- withAddons: (addons: Record<string, unknown>[]) => AwsEksClusterBuilder;
3522
- withPriorityClasses: (classes: Record<string, unknown>[]) => AwsEksClusterBuilder;
3523
- withRoles: (roles: Record<string, unknown>[]) => AwsEksClusterBuilder;
3524
- withWorkloadIdentityEnabled: (enabled: boolean) => AwsEksClusterBuilder;
3525
- withPrivateClusterDisabled: (disabled: boolean) => AwsEksClusterBuilder;
4598
+ type ArubaSubnetBuilder = {
4599
+ withId: (id: string) => ArubaSubnetBuilder;
4600
+ withVersion: (major: number, minor: number, patch: number) => ArubaSubnetBuilder;
4601
+ withDisplayName: (displayName: string) => ArubaSubnetBuilder;
4602
+ withDescription: (description: string) => ArubaSubnetBuilder;
4603
+ withCidrBlock: (cidrBlock: string) => ArubaSubnetBuilder;
3526
4604
  build: () => LiveSystemComponent;
3527
4605
  };
3528
- type AwsEksClusterConfig = {
4606
+ type ArubaSubnetConfig = {
3529
4607
  id: string;
3530
4608
  version: {
3531
4609
  major: number;
@@ -3534,48 +4612,29 @@ type AwsEksClusterConfig = {
3534
4612
  };
3535
4613
  displayName: string;
3536
4614
  description?: string;
3537
- kubernetesVersion?: string;
3538
- networkPolicyProvider?: string;
3539
- masterIpv4CidrBlock?: string;
3540
- vpcCidrBlock?: string;
3541
- privateSubnetCidrs?: string[];
3542
- desiredAvailabilityZoneCount?: number;
3543
- nodePools?: Record<string, unknown>[];
3544
- addons?: Record<string, unknown>[];
3545
- priorityClasses?: Record<string, unknown>[];
3546
- roles?: Record<string, unknown>[];
3547
- workloadIdentityEnabled?: boolean;
3548
- privateClusterDisabled?: boolean;
4615
+ cidrBlock: string;
3549
4616
  };
3550
- declare namespace AwsEksCluster {
3551
- const getBuilder: () => AwsEksClusterBuilder;
3552
- /**
3553
- * Satisfies a blueprint ContainerPlatform component as an AWS EKS Cluster.
3554
- * Carries id, version, displayName, and description from the blueprint.
3555
- * All cluster-specific parameters (Kubernetes version, node pools, etc.)
3556
- * are AWS-specific and must be added via the builder methods.
3557
- */
3558
- const satisfy: (platform: BlueprintComponent) => SatisfiedAwsEksClusterBuilder;
3559
- const create: (config: AwsEksClusterConfig) => LiveSystemComponent;
4617
+ declare namespace ArubaSubnet {
4618
+ const getBuilder: () => ArubaSubnetBuilder;
4619
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedArubaSubnetBuilder;
4620
+ const create: (config: ArubaSubnetConfig) => LiveSystemComponent;
3560
4621
  }
3561
4622
  //#endregion
3562
- //#region src/live_system/component/network_and_compute/paas/ecs_cluster.d.ts
3563
- /**
3564
- * Returned by satisfy() id, version, and displayName are locked from the
3565
- * blueprint ContainerPlatform. No AWS-specific parameters are needed for a
3566
- * basic ECS cluster, so only build() is exposed.
3567
- */
3568
- type SatisfiedAwsEcsClusterBuilder = {
4623
+ //#region src/live_system/component/network_and_compute/iaas/aruba_security_group.d.ts
4624
+ type SatisfiedArubaSecurityGroupBuilder = {
4625
+ withName: (name: string) => SatisfiedArubaSecurityGroupBuilder;
3569
4626
  build: () => LiveSystemComponent;
3570
4627
  };
3571
- type AwsEcsClusterBuilder = {
3572
- withId: (id: string) => AwsEcsClusterBuilder;
3573
- withVersion: (major: number, minor: number, patch: number) => AwsEcsClusterBuilder;
3574
- withDisplayName: (displayName: string) => AwsEcsClusterBuilder;
3575
- withDescription: (description: string) => AwsEcsClusterBuilder;
4628
+ type ArubaSecurityGroupBuilder = {
4629
+ withId: (id: string) => ArubaSecurityGroupBuilder;
4630
+ withVersion: (major: number, minor: number, patch: number) => ArubaSecurityGroupBuilder;
4631
+ withDisplayName: (displayName: string) => ArubaSecurityGroupBuilder;
4632
+ withDescription: (description: string) => ArubaSecurityGroupBuilder;
4633
+ withIngressRules: (rules: IngressRule[]) => ArubaSecurityGroupBuilder;
4634
+ withName: (name: string) => ArubaSecurityGroupBuilder;
3576
4635
  build: () => LiveSystemComponent;
3577
4636
  };
3578
- type AwsEcsClusterConfig = {
4637
+ type ArubaSecurityGroupConfig = {
3579
4638
  id: string;
3580
4639
  version: {
3581
4640
  major: number;
@@ -3584,56 +4643,26 @@ type AwsEcsClusterConfig = {
3584
4643
  };
3585
4644
  displayName: string;
3586
4645
  description?: string;
4646
+ ingressRules?: IngressRule[];
4647
+ name?: string;
3587
4648
  };
3588
- declare namespace AwsEcsCluster {
3589
- const getBuilder: () => AwsEcsClusterBuilder;
3590
- /**
3591
- * Satisfies a blueprint ContainerPlatform component as an AWS ECS Cluster.
3592
- * Carries id, version, displayName, and description from the blueprint.
3593
- */
3594
- const satisfy: (platform: BlueprintComponent) => SatisfiedAwsEcsClusterBuilder;
3595
- const create: (config: AwsEcsClusterConfig) => LiveSystemComponent;
4649
+ declare namespace ArubaSecurityGroup {
4650
+ const getBuilder: () => ArubaSecurityGroupBuilder;
4651
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedArubaSecurityGroupBuilder;
4652
+ const create: (config: ArubaSecurityGroupConfig) => LiveSystemComponent;
3596
4653
  }
3597
4654
  //#endregion
3598
- //#region src/live_system/component/network_and_compute/paas/ecs_task_definition.d.ts
3599
- /**
3600
- * Branded live-system component produced by AwsEcsTaskDefinition builders.
3601
- * The brand prevents passing an arbitrary LiveSystemComponent to
3602
- * AwsEcsService.withTaskDefinition() only a value produced by
3603
- * AwsEcsTaskDefinition.satisfy() or AwsEcsTaskDefinition.create() is accepted.
3604
- */
3605
- type AwsEcsTaskDefinitionComponent = LiveSystemComponent & {
3606
- readonly _brand: 'AwsEcsTaskDefinition';
3607
- };
3608
- /**
3609
- * Returned by satisfy() — blueprint params (image, port, cpu, memory) are
3610
- * locked. Only IAM role ARNs and network mode can be added here.
3611
- *
3612
- * The component ID is derived as `${workload.id}-task` to avoid collision
3613
- * with the AwsEcsService component that satisfies the same blueprint workload.
3614
- */
3615
- type SatisfiedAwsEcsTaskDefinitionBuilder = {
3616
- withNetworkMode: (mode: string) => SatisfiedAwsEcsTaskDefinitionBuilder;
3617
- withExecutionRoleArn: (arn: string) => SatisfiedAwsEcsTaskDefinitionBuilder;
3618
- withTaskRoleArn: (arn: string) => SatisfiedAwsEcsTaskDefinitionBuilder;
3619
- build: () => AwsEcsTaskDefinitionComponent;
3620
- };
3621
- type AwsEcsTaskDefinitionBuilder = {
3622
- withId: (id: string) => AwsEcsTaskDefinitionBuilder;
3623
- withVersion: (major: number, minor: number, patch: number) => AwsEcsTaskDefinitionBuilder;
3624
- withDisplayName: (displayName: string) => AwsEcsTaskDefinitionBuilder;
3625
- withDescription: (description: string) => AwsEcsTaskDefinitionBuilder;
3626
- withContainerImage: (image: string) => AwsEcsTaskDefinitionBuilder;
3627
- withContainerPort: (port: number) => AwsEcsTaskDefinitionBuilder;
3628
- withContainerName: (name: string) => AwsEcsTaskDefinitionBuilder;
3629
- withCpu: (cpu: string) => AwsEcsTaskDefinitionBuilder;
3630
- withMemory: (memory: string) => AwsEcsTaskDefinitionBuilder;
3631
- withNetworkMode: (mode: string) => AwsEcsTaskDefinitionBuilder;
3632
- withExecutionRoleArn: (arn: string) => AwsEcsTaskDefinitionBuilder;
3633
- withTaskRoleArn: (arn: string) => AwsEcsTaskDefinitionBuilder;
3634
- build: () => AwsEcsTaskDefinitionComponent;
4655
+ //#region src/live_system/component/network_and_compute/iaas/aruba_ssh_key_pair.d.ts
4656
+ type ArubaSshKeyPairBuilder = {
4657
+ withId: (id: string) => ArubaSshKeyPairBuilder;
4658
+ withVersion: (major: number, minor: number, patch: number) => ArubaSshKeyPairBuilder;
4659
+ withDisplayName: (displayName: string) => ArubaSshKeyPairBuilder;
4660
+ withDescription: (description: string) => ArubaSshKeyPairBuilder;
4661
+ withKeyName: (keyName: string) => ArubaSshKeyPairBuilder;
4662
+ withPublicKey: (publicKey: string) => ArubaSshKeyPairBuilder;
4663
+ build: () => LiveSystemComponent;
3635
4664
  };
3636
- type AwsEcsTaskDefinitionConfig = {
4665
+ type ArubaSshKeyPairConfig = {
3637
4666
  id: string;
3638
4667
  version: {
3639
4668
  major: number;
@@ -3642,57 +4671,32 @@ type AwsEcsTaskDefinitionConfig = {
3642
4671
  };
3643
4672
  displayName: string;
3644
4673
  description?: string;
3645
- containerImage: string;
3646
- containerPort?: number;
3647
- containerName?: string;
3648
- cpu?: string;
3649
- memory?: string;
3650
- networkMode?: string;
3651
- executionRoleArn?: string;
3652
- taskRoleArn?: string;
4674
+ keyName?: string;
4675
+ publicKey: string;
3653
4676
  };
3654
- declare namespace AwsEcsTaskDefinition {
3655
- const getBuilder: () => AwsEcsTaskDefinitionBuilder;
3656
- /**
3657
- * Satisfies a blueprint Workload component as an AWS ECS Task Definition.
3658
- * The component ID is `${workload.id}-task` to avoid collision with the
3659
- * AwsEcsService that satisfies the same workload.
3660
- */
3661
- const satisfy: (workload: BlueprintComponent) => SatisfiedAwsEcsTaskDefinitionBuilder;
3662
- const create: (config: AwsEcsTaskDefinitionConfig) => AwsEcsTaskDefinitionComponent;
4677
+ declare namespace ArubaSshKeyPair {
4678
+ const getBuilder: () => ArubaSshKeyPairBuilder;
4679
+ const create: (config: ArubaSshKeyPairConfig) => LiveSystemComponent;
3663
4680
  }
3664
4681
  //#endregion
3665
- //#region src/live_system/component/network_and_compute/paas/ecs_service.d.ts
3666
- /**
3667
- * Returned by satisfy() all structural properties (dependencies, links,
3668
- * desiredCount) are locked from the blueprint. Only AWS-specific launch
3669
- * parameters and live-system sub-component dependencies are set here.
3670
- */
3671
- type SatisfiedAwsEcsServiceBuilder = {
3672
- withLaunchType: (type: string) => SatisfiedAwsEcsServiceBuilder;
3673
- withAssignPublicIp: (assign: boolean) => SatisfiedAwsEcsServiceBuilder;
3674
- /**
3675
- * Declares a live-system-only dependency on the ECS Task Definition that
3676
- * this service will run. This has no blueprint equivalent — it is an
3677
- * AWS-specific sub-component relationship.
3678
- *
3679
- * Only accepts an AwsEcsTaskDefinitionComponent produced by
3680
- * AwsEcsTaskDefinition.satisfy() or AwsEcsTaskDefinition.create().
3681
- */
3682
- withTaskDefinition: (taskDef: AwsEcsTaskDefinitionComponent) => SatisfiedAwsEcsServiceBuilder;
4682
+ //#region src/live_system/component/network_and_compute/iaas/aruba_cloud_server.d.ts
4683
+ type SatisfiedArubaCloudServerBuilder = {
4684
+ withFlavorName: (flavorName: string) => SatisfiedArubaCloudServerBuilder;
4685
+ withBootVolume: (bootVolume: string) => SatisfiedArubaCloudServerBuilder;
4686
+ withUserData: (userData: string) => SatisfiedArubaCloudServerBuilder;
3683
4687
  build: () => LiveSystemComponent;
3684
4688
  };
3685
- type AwsEcsServiceBuilder = {
3686
- withId: (id: string) => AwsEcsServiceBuilder;
3687
- withVersion: (major: number, minor: number, patch: number) => AwsEcsServiceBuilder;
3688
- withDisplayName: (displayName: string) => AwsEcsServiceBuilder;
3689
- withDescription: (description: string) => AwsEcsServiceBuilder;
3690
- withDesiredCount: (count: number) => AwsEcsServiceBuilder;
3691
- withLaunchType: (type: string) => AwsEcsServiceBuilder;
3692
- withAssignPublicIp: (assign: boolean) => AwsEcsServiceBuilder;
4689
+ type ArubaCloudServerBuilder = {
4690
+ withId: (id: string) => ArubaCloudServerBuilder;
4691
+ withVersion: (major: number, minor: number, patch: number) => ArubaCloudServerBuilder;
4692
+ withDisplayName: (displayName: string) => ArubaCloudServerBuilder;
4693
+ withDescription: (description: string) => ArubaCloudServerBuilder;
4694
+ withFlavorName: (flavorName: string) => ArubaCloudServerBuilder;
4695
+ withBootVolume: (bootVolume: string) => ArubaCloudServerBuilder;
4696
+ withUserData: (userData: string) => ArubaCloudServerBuilder;
3693
4697
  build: () => LiveSystemComponent;
3694
4698
  };
3695
- type AwsEcsServiceConfig = {
4699
+ type ArubaCloudServerConfig = {
3696
4700
  id: string;
3697
4701
  version: {
3698
4702
  major: number;
@@ -3701,68 +4705,53 @@ type AwsEcsServiceConfig = {
3701
4705
  };
3702
4706
  displayName: string;
3703
4707
  description?: string;
3704
- desiredCount?: number;
3705
- launchType?: string;
3706
- assignPublicIp?: boolean;
4708
+ flavorName?: string;
4709
+ bootVolume?: string;
4710
+ userData?: string;
3707
4711
  };
3708
- declare namespace AwsEcsService {
3709
- const getBuilder: () => AwsEcsServiceBuilder;
3710
- /**
3711
- * Satisfies a blueprint Workload component as an AWS ECS Service.
3712
- * All structural properties — dependencies (subnet, cluster), links
3713
- * (traffic rules, SG membership), and desiredCount — are carried from
3714
- * the blueprint unchanged. Only AWS-specific launch parameters are added here.
3715
- */
3716
- /**
3717
- * Satisfies a blueprint Workload component as an AWS ECS Service.
3718
- * All structural properties — dependencies (subnet, cluster), links
3719
- * (traffic rules, SG membership), and desiredCount — are carried from
3720
- * the blueprint unchanged. Only AWS-specific launch parameters are added here.
3721
- */
3722
- const satisfy: (workload: BlueprintComponent) => SatisfiedAwsEcsServiceBuilder;
3723
- const create: (config: AwsEcsServiceConfig) => LiveSystemComponent;
4712
+ declare namespace ArubaCloudServer {
4713
+ const getBuilder: () => ArubaCloudServerBuilder;
4714
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedArubaCloudServerBuilder;
4715
+ const create: (config: ArubaCloudServerConfig) => LiveSystemComponent;
3724
4716
  }
3725
4717
  //#endregion
3726
- //#region src/live_system/component/network_and_compute/paas/azure_aks.d.ts
3727
- type SatisfiedAzureAksClusterBuilder = {
3728
- withKubernetesVersion: (version: string) => SatisfiedAzureAksClusterBuilder;
3729
- withNetworkPolicyProvider: (provider: string) => SatisfiedAzureAksClusterBuilder;
3730
- withMasterIpv4CidrBlock: (cidr: string) => SatisfiedAzureAksClusterBuilder;
3731
- withVnetSubnetAddressIpRange: (range: string) => SatisfiedAzureAksClusterBuilder;
3732
- withManagedClusterSkuTier: (tier: string) => SatisfiedAzureAksClusterBuilder;
3733
- withWindowsAdminUsername: (username: string) => SatisfiedAzureAksClusterBuilder;
3734
- withExternalWorkspaceResourceId: (id: string) => SatisfiedAzureAksClusterBuilder;
3735
- withNodePools: (nodePools: Record<string, unknown>[]) => SatisfiedAzureAksClusterBuilder;
3736
- withAzureActiveDirectoryProfile: (profile: Record<string, unknown>) => SatisfiedAzureAksClusterBuilder;
3737
- withOutboundIps: (ips: Record<string, unknown>[]) => SatisfiedAzureAksClusterBuilder;
3738
- withPriorityClasses: (classes: Record<string, unknown>[]) => SatisfiedAzureAksClusterBuilder;
3739
- withRoles: (roles: Record<string, unknown>[]) => SatisfiedAzureAksClusterBuilder;
3740
- withWorkloadIdentityEnabled: (enabled: boolean) => SatisfiedAzureAksClusterBuilder;
3741
- withPrivateClusterDisabled: (disabled: boolean) => SatisfiedAzureAksClusterBuilder;
4718
+ //#region src/live_system/component/network_and_compute/iaas/aruba_vpc_peering.d.ts
4719
+ type ArubaVpcPeeringBuilder = {
4720
+ withId: (id: string) => ArubaVpcPeeringBuilder;
4721
+ withVersion: (major: number, minor: number, patch: number) => ArubaVpcPeeringBuilder;
4722
+ withDisplayName: (displayName: string) => ArubaVpcPeeringBuilder;
4723
+ withDescription: (description: string) => ArubaVpcPeeringBuilder;
4724
+ withPeerVpcId: (peerVpcId: string) => ArubaVpcPeeringBuilder;
3742
4725
  build: () => LiveSystemComponent;
3743
4726
  };
3744
- type AzureAksClusterBuilder = {
3745
- withId: (id: string) => AzureAksClusterBuilder;
3746
- withVersion: (major: number, minor: number, patch: number) => AzureAksClusterBuilder;
3747
- withDisplayName: (displayName: string) => AzureAksClusterBuilder;
3748
- withDescription: (description: string) => AzureAksClusterBuilder;
3749
- withKubernetesVersion: (version: string) => AzureAksClusterBuilder;
3750
- withNetworkPolicyProvider: (provider: string) => AzureAksClusterBuilder;
3751
- withMasterIpv4CidrBlock: (cidr: string) => AzureAksClusterBuilder;
3752
- withVnetSubnetAddressIpRange: (range: string) => AzureAksClusterBuilder;
3753
- withManagedClusterSkuTier: (tier: string) => AzureAksClusterBuilder;
3754
- withWindowsAdminUsername: (username: string) => AzureAksClusterBuilder;
3755
- withExternalWorkspaceResourceId: (id: string) => AzureAksClusterBuilder;
3756
- withNodePools: (nodePools: Record<string, unknown>[]) => AzureAksClusterBuilder;
3757
- withAzureActiveDirectoryProfile: (profile: Record<string, unknown>) => AzureAksClusterBuilder;
3758
- withOutboundIps: (ips: Record<string, unknown>[]) => AzureAksClusterBuilder;
3759
- withPriorityClasses: (classes: Record<string, unknown>[]) => AzureAksClusterBuilder;
3760
- withRoles: (roles: Record<string, unknown>[]) => AzureAksClusterBuilder;
3761
- withWorkloadIdentityEnabled: (enabled: boolean) => AzureAksClusterBuilder;
3762
- withPrivateClusterDisabled: (disabled: boolean) => AzureAksClusterBuilder;
4727
+ type ArubaVpcPeeringConfig = {
4728
+ id: string;
4729
+ version: {
4730
+ major: number;
4731
+ minor: number;
4732
+ patch: number;
4733
+ };
4734
+ displayName: string;
4735
+ description?: string;
4736
+ peerVpcId: string;
4737
+ };
4738
+ declare namespace ArubaVpcPeering {
4739
+ const getBuilder: () => ArubaVpcPeeringBuilder;
4740
+ const create: (config: ArubaVpcPeeringConfig) => LiveSystemComponent;
4741
+ }
4742
+ //#endregion
4743
+ //#region src/live_system/component/network_and_compute/iaas/aruba_vpn_tunnel.d.ts
4744
+ type ArubaVpnTunnelBuilder = {
4745
+ withId: (id: string) => ArubaVpnTunnelBuilder;
4746
+ withVersion: (major: number, minor: number, patch: number) => ArubaVpnTunnelBuilder;
4747
+ withDisplayName: (displayName: string) => ArubaVpnTunnelBuilder;
4748
+ withDescription: (description: string) => ArubaVpnTunnelBuilder;
4749
+ withPeerPublicIp: (ip: string) => ArubaVpnTunnelBuilder;
4750
+ withPresharedKey: (key: string) => ArubaVpnTunnelBuilder;
4751
+ withSubnetCidr: (cidr: string) => ArubaVpnTunnelBuilder;
3763
4752
  build: () => LiveSystemComponent;
3764
4753
  };
3765
- type AzureAksClusterConfig = {
4754
+ type ArubaVpnTunnelConfig = {
3766
4755
  id: string;
3767
4756
  version: {
3768
4757
  major: number;
@@ -3771,53 +4760,24 @@ type AzureAksClusterConfig = {
3771
4760
  };
3772
4761
  displayName: string;
3773
4762
  description?: string;
3774
- kubernetesVersion?: string;
3775
- networkPolicyProvider?: string;
3776
- masterIpv4CidrBlock?: string;
3777
- vnetSubnetAddressIpRange?: string;
3778
- managedClusterSkuTier?: string;
3779
- windowsAdminUsername?: string;
3780
- externalWorkspaceResourceId?: string;
3781
- nodePools?: Record<string, unknown>[];
3782
- azureActiveDirectoryProfile?: Record<string, unknown>;
3783
- outboundIps?: Record<string, unknown>[];
3784
- priorityClasses?: Record<string, unknown>[];
3785
- roles?: Record<string, unknown>[];
3786
- workloadIdentityEnabled?: boolean;
3787
- privateClusterDisabled?: boolean;
4763
+ peerPublicIp?: string;
4764
+ presharedKey?: string;
4765
+ subnetCidr?: string;
3788
4766
  };
3789
- declare namespace AzureAksCluster {
3790
- const getBuilder: () => AzureAksClusterBuilder;
3791
- /**
3792
- * Satisfies a blueprint ContainerPlatform component as an Azure AKS Cluster.
3793
- * Carries id, version, displayName, and description from the blueprint.
3794
- * All cluster-specific parameters are Azure-specific and must be added via
3795
- * the builder methods.
3796
- */
3797
- const satisfy: (platform: BlueprintComponent) => SatisfiedAzureAksClusterBuilder;
3798
- const create: (config: AzureAksClusterConfig) => LiveSystemComponent;
4767
+ declare namespace ArubaVpnTunnel {
4768
+ const getBuilder: () => ArubaVpnTunnelBuilder;
4769
+ const create: (config: ArubaVpnTunnelConfig) => LiveSystemComponent;
3799
4770
  }
3800
4771
  //#endregion
3801
- //#region src/live_system/component/network_and_compute/paas/azure_container_apps_environment.d.ts
3802
- type SatisfiedAzureContainerAppsEnvironmentBuilder = {
3803
- withLocation: (location: string) => SatisfiedAzureContainerAppsEnvironmentBuilder;
3804
- withResourceGroup: (resourceGroup: string) => SatisfiedAzureContainerAppsEnvironmentBuilder;
3805
- withLogAnalyticsWorkspaceId: (id: string) => SatisfiedAzureContainerAppsEnvironmentBuilder;
3806
- withLogAnalyticsSharedKey: (key: string) => SatisfiedAzureContainerAppsEnvironmentBuilder;
3807
- build: () => LiveSystemComponent;
3808
- };
3809
- type AzureContainerAppsEnvironmentBuilder = {
3810
- withId: (id: string) => AzureContainerAppsEnvironmentBuilder;
3811
- withVersion: (major: number, minor: number, patch: number) => AzureContainerAppsEnvironmentBuilder;
3812
- withDisplayName: (displayName: string) => AzureContainerAppsEnvironmentBuilder;
3813
- withDescription: (description: string) => AzureContainerAppsEnvironmentBuilder;
3814
- withLocation: (location: string) => AzureContainerAppsEnvironmentBuilder;
3815
- withResourceGroup: (resourceGroup: string) => AzureContainerAppsEnvironmentBuilder;
3816
- withLogAnalyticsWorkspaceId: (id: string) => AzureContainerAppsEnvironmentBuilder;
3817
- withLogAnalyticsSharedKey: (key: string) => AzureContainerAppsEnvironmentBuilder;
4772
+ //#region src/live_system/component/network_and_compute/iaas/aruba_elastic_ip.d.ts
4773
+ type ArubaElasticIpBuilder = {
4774
+ withId: (id: string) => ArubaElasticIpBuilder;
4775
+ withVersion: (major: number, minor: number, patch: number) => ArubaElasticIpBuilder;
4776
+ withDisplayName: (displayName: string) => ArubaElasticIpBuilder;
4777
+ withDescription: (description: string) => ArubaElasticIpBuilder;
3818
4778
  build: () => LiveSystemComponent;
3819
4779
  };
3820
- type AzureContainerAppsEnvironmentConfig = {
4780
+ type ArubaElasticIpConfig = {
3821
4781
  id: string;
3822
4782
  version: {
3823
4783
  major: number;
@@ -3826,53 +4786,34 @@ type AzureContainerAppsEnvironmentConfig = {
3826
4786
  };
3827
4787
  displayName: string;
3828
4788
  description?: string;
3829
- location: string;
3830
- resourceGroup: string;
3831
- logAnalyticsWorkspaceId?: string;
3832
- logAnalyticsSharedKey?: string;
3833
4789
  };
3834
- declare namespace AzureContainerAppsEnvironment {
3835
- const getBuilder: () => AzureContainerAppsEnvironmentBuilder;
3836
- /**
3837
- * Satisfies a blueprint ContainerPlatform component as an Azure Container
3838
- * Apps Environment. Carries id, version, displayName, and description from
3839
- * the blueprint. Location and resourceGroup are Azure-specific and required.
3840
- *
3841
- * Dependencies declared in the blueprint (e.g. optional subnet for VNet
3842
- * integration) are carried automatically.
3843
- */
3844
- const satisfy: (platform: BlueprintComponent) => SatisfiedAzureContainerAppsEnvironmentBuilder;
3845
- const create: (config: AzureContainerAppsEnvironmentConfig) => LiveSystemComponent;
4790
+ declare namespace ArubaElasticIp {
4791
+ const getBuilder: () => ArubaElasticIpBuilder;
4792
+ const create: (config: ArubaElasticIpConfig) => LiveSystemComponent;
3846
4793
  }
3847
4794
  //#endregion
3848
- //#region src/live_system/component/network_and_compute/paas/azure_container_instance.d.ts
3849
- type SatisfiedAzureContainerInstanceBuilder = {
3850
- withLocation: (location: string) => SatisfiedAzureContainerInstanceBuilder;
3851
- withResourceGroup: (resourceGroup: string) => SatisfiedAzureContainerInstanceBuilder;
3852
- withCpu: (cpu: number) => SatisfiedAzureContainerInstanceBuilder;
3853
- withMemoryInGb: (memoryInGb: number) => SatisfiedAzureContainerInstanceBuilder;
3854
- withRestartPolicy: (policy: string) => SatisfiedAzureContainerInstanceBuilder;
3855
- withPublicIp: (publicIp: boolean) => SatisfiedAzureContainerInstanceBuilder;
3856
- withDnsNameLabel: (label: string) => SatisfiedAzureContainerInstanceBuilder;
4795
+ //#region src/live_system/component/network_and_compute/paas/aruba_kaas.d.ts
4796
+ type SatisfiedArubaKaaSBuilder = {
4797
+ withKubernetesVersion: (version: string) => SatisfiedArubaKaaSBuilder;
4798
+ withHa: (ha: boolean) => SatisfiedArubaKaaSBuilder;
4799
+ withNodePoolFlavor: (flavor: string) => SatisfiedArubaKaaSBuilder;
4800
+ withNodePoolCount: (count: number) => SatisfiedArubaKaaSBuilder;
4801
+ withLocation: (location: string) => SatisfiedArubaKaaSBuilder;
3857
4802
  build: () => LiveSystemComponent;
3858
4803
  };
3859
- type AzureContainerInstanceBuilder = {
3860
- withId: (id: string) => AzureContainerInstanceBuilder;
3861
- withVersion: (major: number, minor: number, patch: number) => AzureContainerInstanceBuilder;
3862
- withDisplayName: (displayName: string) => AzureContainerInstanceBuilder;
3863
- withDescription: (description: string) => AzureContainerInstanceBuilder;
3864
- withImage: (image: string) => AzureContainerInstanceBuilder;
3865
- withPort: (port: number) => AzureContainerInstanceBuilder;
3866
- withLocation: (location: string) => AzureContainerInstanceBuilder;
3867
- withResourceGroup: (resourceGroup: string) => AzureContainerInstanceBuilder;
3868
- withCpu: (cpu: number) => AzureContainerInstanceBuilder;
3869
- withMemoryInGb: (memoryInGb: number) => AzureContainerInstanceBuilder;
3870
- withRestartPolicy: (policy: string) => AzureContainerInstanceBuilder;
3871
- withPublicIp: (publicIp: boolean) => AzureContainerInstanceBuilder;
3872
- withDnsNameLabel: (label: string) => AzureContainerInstanceBuilder;
4804
+ type ArubaKaaSBuilder = {
4805
+ withId: (id: string) => ArubaKaaSBuilder;
4806
+ withVersion: (major: number, minor: number, patch: number) => ArubaKaaSBuilder;
4807
+ withDisplayName: (displayName: string) => ArubaKaaSBuilder;
4808
+ withDescription: (description: string) => ArubaKaaSBuilder;
4809
+ withKubernetesVersion: (version: string) => ArubaKaaSBuilder;
4810
+ withHa: (ha: boolean) => ArubaKaaSBuilder;
4811
+ withNodePoolFlavor: (flavor: string) => ArubaKaaSBuilder;
4812
+ withNodePoolCount: (count: number) => ArubaKaaSBuilder;
4813
+ withLocation: (location: string) => ArubaKaaSBuilder;
3873
4814
  build: () => LiveSystemComponent;
3874
4815
  };
3875
- type AzureContainerInstanceConfig = {
4816
+ type ArubaKaaSConfig = {
3876
4817
  id: string;
3877
4818
  version: {
3878
4819
  major: number;
@@ -3881,57 +4822,28 @@ type AzureContainerInstanceConfig = {
3881
4822
  };
3882
4823
  displayName: string;
3883
4824
  description?: string;
3884
- image: string;
3885
- port?: number;
3886
- location: string;
3887
- resourceGroup: string;
3888
- cpu?: number;
3889
- memoryInGb?: number;
3890
- restartPolicy?: string;
3891
- publicIp?: boolean;
3892
- dnsNameLabel?: string;
4825
+ kubernetesVersion?: string;
4826
+ ha?: boolean;
4827
+ nodePoolFlavor?: string;
4828
+ nodePoolCount?: number;
4829
+ location?: string;
3893
4830
  };
3894
- declare namespace AzureContainerInstance {
3895
- const getBuilder: () => AzureContainerInstanceBuilder;
3896
- /**
3897
- * Satisfies a blueprint Workload component as an Azure Container Instance.
3898
- * Carries id, version, displayName, description, dependencies, links, and
3899
- * container image/port from the blueprint. Location and resourceGroup are
3900
- * Azure-specific and required — add them via withLocation/withResourceGroup.
3901
- *
3902
- * Note: the container image is immutable after creation — drift on the image
3903
- * triggers delete + recreate.
3904
- */
3905
- const satisfy: (workload: BlueprintComponent) => SatisfiedAzureContainerInstanceBuilder;
3906
- const create: (config: AzureContainerInstanceConfig) => LiveSystemComponent;
4831
+ declare namespace ArubaKaaS {
4832
+ const getBuilder: () => ArubaKaaSBuilder;
4833
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedArubaKaaSBuilder;
4834
+ const create: (config: ArubaKaaSConfig) => LiveSystemComponent;
3907
4835
  }
3908
4836
  //#endregion
3909
- //#region src/live_system/component/network_and_compute/paas/azure_container_app.d.ts
3910
- type SatisfiedAzureContainerAppBuilder = {
3911
- withLocation: (location: string) => SatisfiedAzureContainerAppBuilder;
3912
- withResourceGroup: (resourceGroup: string) => SatisfiedAzureContainerAppBuilder;
3913
- withExternalIngress: (external: boolean) => SatisfiedAzureContainerAppBuilder;
3914
- withMinReplicas: (min: number) => SatisfiedAzureContainerAppBuilder;
3915
- withMaxReplicas: (max: number) => SatisfiedAzureContainerAppBuilder;
3916
- build: () => LiveSystemComponent;
3917
- };
3918
- type AzureContainerAppBuilder = {
3919
- withId: (id: string) => AzureContainerAppBuilder;
3920
- withVersion: (major: number, minor: number, patch: number) => AzureContainerAppBuilder;
3921
- withDisplayName: (displayName: string) => AzureContainerAppBuilder;
3922
- withDescription: (description: string) => AzureContainerAppBuilder;
3923
- withImage: (image: string) => AzureContainerAppBuilder;
3924
- withPort: (port: number) => AzureContainerAppBuilder;
3925
- withCpu: (cpu: number) => AzureContainerAppBuilder;
3926
- withMemory: (memory: string) => AzureContainerAppBuilder;
3927
- withLocation: (location: string) => AzureContainerAppBuilder;
3928
- withResourceGroup: (resourceGroup: string) => AzureContainerAppBuilder;
3929
- withExternalIngress: (external: boolean) => AzureContainerAppBuilder;
3930
- withMinReplicas: (min: number) => AzureContainerAppBuilder;
3931
- withMaxReplicas: (max: number) => AzureContainerAppBuilder;
4837
+ //#region src/live_system/component/network_and_compute/paas/aruba_container_registry.d.ts
4838
+ type ArubaContainerRegistryBuilder = {
4839
+ withId: (id: string) => ArubaContainerRegistryBuilder;
4840
+ withVersion: (major: number, minor: number, patch: number) => ArubaContainerRegistryBuilder;
4841
+ withDisplayName: (displayName: string) => ArubaContainerRegistryBuilder;
4842
+ withDescription: (description: string) => ArubaContainerRegistryBuilder;
4843
+ withSize: (size: string) => ArubaContainerRegistryBuilder;
3932
4844
  build: () => LiveSystemComponent;
3933
4845
  };
3934
- type AzureContainerAppConfig = {
4846
+ type ArubaContainerRegistryConfig = {
3935
4847
  id: string;
3936
4848
  version: {
3937
4849
  major: number;
@@ -3940,71 +4852,24 @@ type AzureContainerAppConfig = {
3940
4852
  };
3941
4853
  displayName: string;
3942
4854
  description?: string;
3943
- image: string;
3944
- port?: number;
3945
- cpu?: number;
3946
- memory?: string;
3947
- location: string;
3948
- resourceGroup: string;
3949
- externalIngress?: boolean;
3950
- minReplicas?: number;
3951
- maxReplicas?: number;
4855
+ size?: string;
3952
4856
  };
3953
- declare namespace AzureContainerApp {
3954
- const getBuilder: () => AzureContainerAppBuilder;
3955
- /**
3956
- * Satisfies a blueprint Workload component as an Azure Container App.
3957
- * Carries id, version, displayName, description, dependencies (including
3958
- * the AzureContainerAppsEnvironment dep auto-wired via ContainerPlatform),
3959
- * links, container image, port, cpu, and memory from the blueprint.
3960
- * Location and resourceGroup are Azure-specific and required.
3961
- */
3962
- const satisfy: (workload: BlueprintComponent) => SatisfiedAzureContainerAppBuilder;
3963
- const create: (config: AzureContainerAppConfig) => LiveSystemComponent;
4857
+ declare namespace ArubaContainerRegistry {
4858
+ const getBuilder: () => ArubaContainerRegistryBuilder;
4859
+ const create: (config: ArubaContainerRegistryConfig) => LiveSystemComponent;
3964
4860
  }
3965
4861
  //#endregion
3966
- //#region src/live_system/component/network_and_compute/paas/gcp_gke.d.ts
3967
- type SatisfiedGcpGkeClusterBuilder = {
3968
- withKubernetesVersion: (version: string) => SatisfiedGcpGkeClusterBuilder;
3969
- withNetworkPolicyProvider: (provider: string) => SatisfiedGcpGkeClusterBuilder;
3970
- withMasterIpv4CidrBlock: (cidr: string) => SatisfiedGcpGkeClusterBuilder;
3971
- withNetworkName: (name: string) => SatisfiedGcpGkeClusterBuilder;
3972
- withSubnetworkName: (name: string) => SatisfiedGcpGkeClusterBuilder;
3973
- withSubnetworkIpRange: (range: string) => SatisfiedGcpGkeClusterBuilder;
3974
- withServiceIpRange: (range: string) => SatisfiedGcpGkeClusterBuilder;
3975
- withPodIpRange: (range: string) => SatisfiedGcpGkeClusterBuilder;
3976
- withPodsRangeName: (name: string) => SatisfiedGcpGkeClusterBuilder;
3977
- withServicesRangeName: (name: string) => SatisfiedGcpGkeClusterBuilder;
3978
- withNodePools: (nodePools: Record<string, unknown>[]) => SatisfiedGcpGkeClusterBuilder;
3979
- withPriorityClasses: (classes: Record<string, unknown>[]) => SatisfiedGcpGkeClusterBuilder;
3980
- withRoles: (roles: Record<string, unknown>[]) => SatisfiedGcpGkeClusterBuilder;
3981
- withWorkloadIdentityEnabled: (enabled: boolean) => SatisfiedGcpGkeClusterBuilder;
3982
- withPrivateClusterDisabled: (disabled: boolean) => SatisfiedGcpGkeClusterBuilder;
3983
- build: () => LiveSystemComponent;
3984
- };
3985
- type GcpGkeClusterBuilder = {
3986
- withId: (id: string) => GcpGkeClusterBuilder;
3987
- withVersion: (major: number, minor: number, patch: number) => GcpGkeClusterBuilder;
3988
- withDisplayName: (displayName: string) => GcpGkeClusterBuilder;
3989
- withDescription: (description: string) => GcpGkeClusterBuilder;
3990
- withKubernetesVersion: (version: string) => GcpGkeClusterBuilder;
3991
- withNetworkPolicyProvider: (provider: string) => GcpGkeClusterBuilder;
3992
- withMasterIpv4CidrBlock: (cidr: string) => GcpGkeClusterBuilder;
3993
- withNetworkName: (name: string) => GcpGkeClusterBuilder;
3994
- withSubnetworkName: (name: string) => GcpGkeClusterBuilder;
3995
- withSubnetworkIpRange: (range: string) => GcpGkeClusterBuilder;
3996
- withServiceIpRange: (range: string) => GcpGkeClusterBuilder;
3997
- withPodIpRange: (range: string) => GcpGkeClusterBuilder;
3998
- withPodsRangeName: (name: string) => GcpGkeClusterBuilder;
3999
- withServicesRangeName: (name: string) => GcpGkeClusterBuilder;
4000
- withNodePools: (nodePools: Record<string, unknown>[]) => GcpGkeClusterBuilder;
4001
- withPriorityClasses: (classes: Record<string, unknown>[]) => GcpGkeClusterBuilder;
4002
- withRoles: (roles: Record<string, unknown>[]) => GcpGkeClusterBuilder;
4003
- withWorkloadIdentityEnabled: (enabled: boolean) => GcpGkeClusterBuilder;
4004
- withPrivateClusterDisabled: (disabled: boolean) => GcpGkeClusterBuilder;
4862
+ //#region src/live_system/component/storage/iaas/aruba_block_storage.d.ts
4863
+ type ArubaBlockStorageBuilder = {
4864
+ withId: (id: string) => ArubaBlockStorageBuilder;
4865
+ withVersion: (major: number, minor: number, patch: number) => ArubaBlockStorageBuilder;
4866
+ withDisplayName: (displayName: string) => ArubaBlockStorageBuilder;
4867
+ withDescription: (description: string) => ArubaBlockStorageBuilder;
4868
+ withSizeGb: (sizeGb: number) => ArubaBlockStorageBuilder;
4869
+ withStorageType: (storageType: string) => ArubaBlockStorageBuilder;
4005
4870
  build: () => LiveSystemComponent;
4006
4871
  };
4007
- type GcpGkeClusterConfig = {
4872
+ type ArubaBlockStorageConfig = {
4008
4873
  id: string;
4009
4874
  version: {
4010
4875
  major: number;
@@ -4013,62 +4878,61 @@ type GcpGkeClusterConfig = {
4013
4878
  };
4014
4879
  displayName: string;
4015
4880
  description?: string;
4016
- kubernetesVersion?: string;
4017
- networkPolicyProvider?: string;
4018
- masterIpv4CidrBlock?: string;
4019
- networkName?: string;
4020
- subnetworkName?: string;
4021
- subnetworkIpRange?: string;
4022
- serviceIpRange?: string;
4023
- podIpRange?: string;
4024
- podsRangeName?: string;
4025
- servicesRangeName?: string;
4026
- nodePools?: Record<string, unknown>[];
4027
- priorityClasses?: Record<string, unknown>[];
4028
- roles?: Record<string, unknown>[];
4029
- workloadIdentityEnabled?: boolean;
4030
- privateClusterDisabled?: boolean;
4881
+ sizeGb: number;
4882
+ storageType?: string;
4031
4883
  };
4032
- declare namespace GcpGkeCluster {
4033
- const getBuilder: () => GcpGkeClusterBuilder;
4034
- /**
4035
- * Satisfies a blueprint ContainerPlatform component as a GCP GKE Cluster.
4036
- * Carries id, version, displayName, and description from the blueprint.
4037
- * All cluster-specific parameters are GCP-specific and must be added via
4038
- * the builder methods.
4039
- */
4040
- const satisfy: (platform: BlueprintComponent) => SatisfiedGcpGkeClusterBuilder;
4041
- const create: (config: GcpGkeClusterConfig) => LiveSystemComponent;
4884
+ declare namespace ArubaBlockStorage {
4885
+ const getBuilder: () => ArubaBlockStorageBuilder;
4886
+ const create: (config: ArubaBlockStorageConfig) => LiveSystemComponent;
4042
4887
  }
4043
4888
  //#endregion
4044
- //#region src/live_system/component/network_and_compute/paas/gcp_cloud_run_service.d.ts
4045
- type SatisfiedGcpCloudRunServiceBuilder = {
4046
- withRegion: (region: string) => SatisfiedGcpCloudRunServiceBuilder;
4047
- withMinInstances: (min: number) => SatisfiedGcpCloudRunServiceBuilder;
4048
- withMaxInstances: (max: number) => SatisfiedGcpCloudRunServiceBuilder;
4049
- withConcurrency: (concurrency: number) => SatisfiedGcpCloudRunServiceBuilder;
4050
- withServiceAccountEmail: (email: string) => SatisfiedGcpCloudRunServiceBuilder;
4051
- withIngress: (ingress: string) => SatisfiedGcpCloudRunServiceBuilder;
4889
+ //#region src/live_system/component/storage/paas/aruba_mysql_dbms.d.ts
4890
+ type SatisfiedArubaMySqlDbmsBuilder = {
4891
+ withFlavorName: (flavorName: string) => SatisfiedArubaMySqlDbmsBuilder;
4052
4892
  build: () => LiveSystemComponent;
4053
4893
  };
4054
- type GcpCloudRunServiceBuilder = {
4055
- withId: (id: string) => GcpCloudRunServiceBuilder;
4056
- withVersion: (major: number, minor: number, patch: number) => GcpCloudRunServiceBuilder;
4057
- withDisplayName: (displayName: string) => GcpCloudRunServiceBuilder;
4058
- withDescription: (description: string) => GcpCloudRunServiceBuilder;
4059
- withImage: (image: string) => GcpCloudRunServiceBuilder;
4060
- withPort: (port: number) => GcpCloudRunServiceBuilder;
4061
- withCpu: (cpu: string) => GcpCloudRunServiceBuilder;
4062
- withMemory: (memory: string) => GcpCloudRunServiceBuilder;
4063
- withRegion: (region: string) => GcpCloudRunServiceBuilder;
4064
- withMinInstances: (min: number) => GcpCloudRunServiceBuilder;
4065
- withMaxInstances: (max: number) => GcpCloudRunServiceBuilder;
4066
- withConcurrency: (concurrency: number) => GcpCloudRunServiceBuilder;
4067
- withServiceAccountEmail: (email: string) => GcpCloudRunServiceBuilder;
4068
- withIngress: (ingress: string) => GcpCloudRunServiceBuilder;
4894
+ type ArubaMySqlDbmsBuilder = {
4895
+ withId: (id: string) => ArubaMySqlDbmsBuilder;
4896
+ withVersion: (major: number, minor: number, patch: number) => ArubaMySqlDbmsBuilder;
4897
+ withDisplayName: (displayName: string) => ArubaMySqlDbmsBuilder;
4898
+ withDescription: (description: string) => ArubaMySqlDbmsBuilder;
4899
+ withDbVersion: (version: string) => ArubaMySqlDbmsBuilder;
4900
+ withFlavorName: (flavorName: string) => ArubaMySqlDbmsBuilder;
4901
+ build: () => LiveSystemComponent;
4902
+ };
4903
+ type ArubaMySqlDbmsConfig = {
4904
+ id: string;
4905
+ version: {
4906
+ major: number;
4907
+ minor: number;
4908
+ patch: number;
4909
+ };
4910
+ displayName: string;
4911
+ description?: string;
4912
+ dbVersion?: string;
4913
+ flavorName?: string;
4914
+ };
4915
+ declare namespace ArubaMySqlDbms {
4916
+ const getBuilder: () => ArubaMySqlDbmsBuilder;
4917
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedArubaMySqlDbmsBuilder;
4918
+ const create: (config: ArubaMySqlDbmsConfig) => LiveSystemComponent;
4919
+ }
4920
+ //#endregion
4921
+ //#region src/live_system/component/storage/paas/aruba_mssql_dbms.d.ts
4922
+ type SatisfiedArubaMsSqlDbmsBuilder = {
4923
+ withFlavorName: (flavorName: string) => SatisfiedArubaMsSqlDbmsBuilder;
4069
4924
  build: () => LiveSystemComponent;
4070
4925
  };
4071
- type GcpCloudRunServiceConfig = {
4926
+ type ArubaMsSqlDbmsBuilder = {
4927
+ withId: (id: string) => ArubaMsSqlDbmsBuilder;
4928
+ withVersion: (major: number, minor: number, patch: number) => ArubaMsSqlDbmsBuilder;
4929
+ withDisplayName: (displayName: string) => ArubaMsSqlDbmsBuilder;
4930
+ withDescription: (description: string) => ArubaMsSqlDbmsBuilder;
4931
+ withDbVersion: (version: string) => ArubaMsSqlDbmsBuilder;
4932
+ withFlavorName: (flavorName: string) => ArubaMsSqlDbmsBuilder;
4933
+ build: () => LiveSystemComponent;
4934
+ };
4935
+ type ArubaMsSqlDbmsConfig = {
4072
4936
  id: string;
4073
4937
  version: {
4074
4938
  major: number;
@@ -4077,60 +4941,33 @@ type GcpCloudRunServiceConfig = {
4077
4941
  };
4078
4942
  displayName: string;
4079
4943
  description?: string;
4080
- image: string;
4081
- port?: number;
4082
- cpu?: string;
4083
- memory?: string;
4084
- region: string;
4085
- minInstances?: number;
4086
- maxInstances?: number;
4087
- concurrency?: number;
4088
- serviceAccountEmail?: string;
4089
- ingress?: string;
4944
+ dbVersion?: string;
4945
+ flavorName?: string;
4090
4946
  };
4091
- declare namespace GcpCloudRunService {
4092
- const getBuilder: () => GcpCloudRunServiceBuilder;
4093
- /**
4094
- * Satisfies a blueprint Workload component as a GCP Cloud Run Service.
4095
- * Carries id, version, displayName, description, dependencies, links,
4096
- * container image, port, cpu, and memory from the blueprint.
4097
- * Region is GCP-specific and required — add it via withRegion().
4098
- *
4099
- * An optional dependency on a GcpSubnet blueprint component enables
4100
- * Direct VPC egress (declare the dependency in the blueprint).
4101
- */
4102
- const satisfy: (workload: BlueprintComponent) => SatisfiedGcpCloudRunServiceBuilder;
4103
- const create: (config: GcpCloudRunServiceConfig) => LiveSystemComponent;
4947
+ declare namespace ArubaMsSqlDbms {
4948
+ const getBuilder: () => ArubaMsSqlDbmsBuilder;
4949
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedArubaMsSqlDbmsBuilder;
4950
+ const create: (config: ArubaMsSqlDbmsConfig) => LiveSystemComponent;
4104
4951
  }
4105
4952
  //#endregion
4106
- //#region src/live_system/component/network_and_compute/paas/oci_container_instance.d.ts
4107
- type SatisfiedOciContainerInstanceBuilder = {
4108
- withAvailabilityDomain: (domain: string) => SatisfiedOciContainerInstanceBuilder;
4109
- withCompartmentId: (compartmentId: string) => SatisfiedOciContainerInstanceBuilder;
4110
- withOcpus: (ocpus: number) => SatisfiedOciContainerInstanceBuilder;
4111
- withMemoryInGbs: (memoryInGbs: number) => SatisfiedOciContainerInstanceBuilder;
4112
- withShape: (shape: string) => SatisfiedOciContainerInstanceBuilder;
4113
- withAssignPublicIp: (assignPublicIp: boolean) => SatisfiedOciContainerInstanceBuilder;
4114
- withContainerRestartPolicy: (policy: string) => SatisfiedOciContainerInstanceBuilder;
4953
+ //#region src/live_system/component/storage/paas/aruba_object_storage_account.d.ts
4954
+ type SatisfiedArubaObjectStorageAccountBuilder = {
4955
+ withAccountName: (accountName: string) => SatisfiedArubaObjectStorageAccountBuilder;
4956
+ withPassword: (password: string) => SatisfiedArubaObjectStorageAccountBuilder;
4957
+ withRegionCode: (regionCode: string) => SatisfiedArubaObjectStorageAccountBuilder;
4115
4958
  build: () => LiveSystemComponent;
4116
4959
  };
4117
- type OciContainerInstanceBuilder = {
4118
- withId: (id: string) => OciContainerInstanceBuilder;
4119
- withVersion: (major: number, minor: number, patch: number) => OciContainerInstanceBuilder;
4120
- withDisplayName: (displayName: string) => OciContainerInstanceBuilder;
4121
- withDescription: (description: string) => OciContainerInstanceBuilder;
4122
- withImageUrl: (imageUrl: string) => OciContainerInstanceBuilder;
4123
- withAvailabilityDomain: (domain: string) => OciContainerInstanceBuilder;
4124
- withCompartmentId: (compartmentId: string) => OciContainerInstanceBuilder;
4125
- withOcpus: (ocpus: number) => OciContainerInstanceBuilder;
4126
- withMemoryInGbs: (memoryInGbs: number) => OciContainerInstanceBuilder;
4127
- withShape: (shape: string) => OciContainerInstanceBuilder;
4128
- withPort: (port: number) => OciContainerInstanceBuilder;
4129
- withAssignPublicIp: (assignPublicIp: boolean) => OciContainerInstanceBuilder;
4130
- withContainerRestartPolicy: (policy: string) => OciContainerInstanceBuilder;
4960
+ type ArubaObjectStorageAccountBuilder = {
4961
+ withId: (id: string) => ArubaObjectStorageAccountBuilder;
4962
+ withVersion: (major: number, minor: number, patch: number) => ArubaObjectStorageAccountBuilder;
4963
+ withDisplayName: (displayName: string) => ArubaObjectStorageAccountBuilder;
4964
+ withDescription: (description: string) => ArubaObjectStorageAccountBuilder;
4965
+ withAccountName: (accountName: string) => ArubaObjectStorageAccountBuilder;
4966
+ withPassword: (password: string) => ArubaObjectStorageAccountBuilder;
4967
+ withRegionCode: (regionCode: string) => ArubaObjectStorageAccountBuilder;
4131
4968
  build: () => LiveSystemComponent;
4132
4969
  };
4133
- type OciContainerInstanceConfig = {
4970
+ type ArubaObjectStorageAccountConfig = {
4134
4971
  id: string;
4135
4972
  version: {
4136
4973
  major: number;
@@ -4139,32 +4976,69 @@ type OciContainerInstanceConfig = {
4139
4976
  };
4140
4977
  displayName: string;
4141
4978
  description?: string;
4142
- imageUrl: string;
4143
- availabilityDomain: string;
4144
- compartmentId: string;
4145
- ocpus?: number;
4146
- memoryInGbs?: number;
4147
- shape?: string;
4148
- port?: number;
4149
- assignPublicIp?: boolean;
4150
- containerRestartPolicy?: string;
4979
+ accountName?: string;
4980
+ password: string;
4981
+ regionCode?: string;
4151
4982
  };
4152
- declare namespace OciContainerInstance {
4153
- const getBuilder: () => OciContainerInstanceBuilder;
4983
+ declare namespace ArubaObjectStorageAccount {
4984
+ const getBuilder: () => ArubaObjectStorageAccountBuilder;
4985
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedArubaObjectStorageAccountBuilder;
4986
+ const create: (config: ArubaObjectStorageAccountConfig) => LiveSystemComponent;
4987
+ }
4988
+ //#endregion
4989
+ //#region src/live_system/component/custom_workloads/caas/caas_k8s_workload.d.ts
4990
+ type SatisfiedCaaSK8sWorkloadBuilder = {
4991
+ withReplicas: (replicas: number) => SatisfiedCaaSK8sWorkloadBuilder;
4154
4992
  /**
4155
- * Satisfies a blueprint Workload component as an OCI Container Instance.
4156
- * Carries id, version, displayName, description, dependencies, and links
4157
- * from the blueprint. The blueprint containerImage is re-mapped to the
4158
- * agent's `imageUrl` key.
4993
+ * OCI artifact URI carrying a `.fractal/` bundle.
4159
4994
  *
4160
- * availabilityDomain and compartmentId are OCI-specific and required.
4161
- * The image URL is immutable after creation — drift triggers delete + recreate.
4995
+ * Format: `<registry>/<repo>:<tag>` or `<registry>/<repo>@sha256:<digest>`.
4996
+ * The bundle must contain `<componentId>-fdeploy.yaml` for this workload
4997
+ * and a `fractal-parameters.yml` with an entry whose `name` matches the
4998
+ * LiveSystem's environment short-name. SDK-derived fields (replicas,
4999
+ * containerImage, etc.) overlay onto whichever workload-shaped doc the
5000
+ * bundle declares (Deployment, StatefulSet, DaemonSet, ...).
4162
5001
  *
4163
- * Dependencies: must declare a dependency on an OciSubnet component in the
4164
- * blueprint (add it via Subnet.withWorkloads() in fractal.ts).
5002
+ * Optional. When omitted, the agent generates a Deployment from SDK
5003
+ * params alone. There is intentionally no default location — devs name
5004
+ * artifacts however they want.
4165
5005
  */
4166
- const satisfy: (workload: BlueprintComponent) => SatisfiedOciContainerInstanceBuilder;
4167
- const create: (config: OciContainerInstanceConfig) => LiveSystemComponent;
5006
+ withManifestUri: (uri: string) => SatisfiedCaaSK8sWorkloadBuilder;
5007
+ build: () => LiveSystemComponent;
5008
+ };
5009
+ type CaaSK8sWorkloadBuilder = {
5010
+ withId: (id: string) => CaaSK8sWorkloadBuilder;
5011
+ withVersion: (major: number, minor: number, patch: number) => CaaSK8sWorkloadBuilder;
5012
+ withDisplayName: (displayName: string) => CaaSK8sWorkloadBuilder;
5013
+ withDescription: (description: string) => CaaSK8sWorkloadBuilder;
5014
+ withContainerImage: (image: string) => CaaSK8sWorkloadBuilder;
5015
+ withContainerPort: (port: number) => CaaSK8sWorkloadBuilder;
5016
+ withCpu: (cpu: string) => CaaSK8sWorkloadBuilder;
5017
+ withMemory: (memory: string) => CaaSK8sWorkloadBuilder;
5018
+ withReplicas: (replicas: number) => CaaSK8sWorkloadBuilder; /** See SatisfiedCaaSK8sWorkloadBuilder.withManifestUri. */
5019
+ withManifestUri: (uri: string) => CaaSK8sWorkloadBuilder;
5020
+ build: () => LiveSystemComponent;
5021
+ };
5022
+ type CaaSK8sWorkloadConfig = {
5023
+ id: string;
5024
+ version: {
5025
+ major: number;
5026
+ minor: number;
5027
+ patch: number;
5028
+ };
5029
+ displayName: string;
5030
+ description?: string;
5031
+ containerImage?: string;
5032
+ containerPort?: number;
5033
+ cpu?: string;
5034
+ memory?: string;
5035
+ replicas?: number; /** OCI artifact URI of the `.fractal/` bundle. See builder docs. */
5036
+ manifestUri?: string;
5037
+ };
5038
+ declare namespace CaaSK8sWorkload {
5039
+ const getBuilder: () => CaaSK8sWorkloadBuilder;
5040
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedCaaSK8sWorkloadBuilder;
5041
+ const create: (config: CaaSK8sWorkloadConfig) => LiveSystemComponent;
4168
5042
  }
4169
5043
  //#endregion
4170
5044
  //#region src/fractal/component/storage/paas/files_and_blobs.d.ts
@@ -4333,33 +5207,6 @@ declare namespace GraphDatabase {
4333
5207
  const create: (config: GraphDatabaseConfig) => GraphDatabaseComponent;
4334
5208
  }
4335
5209
  //#endregion
4336
- //#region src/fractal/component/storage/caas/search_entity.d.ts
4337
- type SearchEntityComponent = {
4338
- readonly component: BlueprintComponent;
4339
- readonly components: ReadonlyArray<BlueprintComponent>;
4340
- };
4341
- type SearchEntityBuilder = {
4342
- withId: (id: string) => SearchEntityBuilder;
4343
- withVersion: (major: number, minor: number, patch: number) => SearchEntityBuilder;
4344
- withDisplayName: (displayName: string) => SearchEntityBuilder;
4345
- withDescription: (description: string) => SearchEntityBuilder;
4346
- build: () => BlueprintComponent;
4347
- };
4348
- type SearchEntityConfig = {
4349
- id: string;
4350
- version: {
4351
- major: number;
4352
- minor: number;
4353
- patch: number;
4354
- };
4355
- displayName: string;
4356
- description?: string;
4357
- };
4358
- declare namespace SearchEntity {
4359
- const getBuilder: () => SearchEntityBuilder;
4360
- const create: (config: SearchEntityConfig) => SearchEntityComponent;
4361
- }
4362
- //#endregion
4363
5210
  //#region src/fractal/component/storage/saas/unmanaged.d.ts
4364
5211
  type UnmanagedComponent = {
4365
5212
  readonly component: BlueprintComponent;
@@ -4529,34 +5376,6 @@ declare namespace GraphDbms {
4529
5376
  const create: (config: GraphDbmsConfig) => GraphDbmsComponent;
4530
5377
  }
4531
5378
  //#endregion
4532
- //#region src/fractal/component/storage/caas/search.d.ts
4533
- type SearchComponent = {
4534
- readonly search: BlueprintComponent;
4535
- readonly entities: ReadonlyArray<SearchEntityComponent>;
4536
- withEntities: (entities: SearchEntityComponent[]) => SearchComponent;
4537
- };
4538
- type SearchBuilder = {
4539
- withId: (id: string) => SearchBuilder;
4540
- withVersion: (major: number, minor: number, patch: number) => SearchBuilder;
4541
- withDisplayName: (displayName: string) => SearchBuilder;
4542
- withDescription: (description: string) => SearchBuilder;
4543
- build: () => BlueprintComponent;
4544
- };
4545
- type SearchConfig = {
4546
- id: string;
4547
- version: {
4548
- major: number;
4549
- minor: number;
4550
- patch: number;
4551
- };
4552
- displayName: string;
4553
- description?: string;
4554
- };
4555
- declare namespace Search {
4556
- const getBuilder: () => SearchBuilder;
4557
- const create: (config: SearchConfig) => SearchComponent;
4558
- }
4559
- //#endregion
4560
5379
  //#region src/live_system/component/storage/paas/aws_s3.d.ts
4561
5380
  /**
4562
5381
  * Returned by satisfy() — only exposes vendor-specific parameters.
@@ -5431,35 +6250,6 @@ declare namespace SaaSUnmanaged {
5431
6250
  const create: (config: SaaSUnmanagedConfig) => LiveSystemComponent;
5432
6251
  }
5433
6252
  //#endregion
5434
- //#region src/fractal/component/messaging/paas/entity.d.ts
5435
- type MessagingEntityComponent = {
5436
- readonly component: BlueprintComponent;
5437
- readonly components: ReadonlyArray<BlueprintComponent>;
5438
- };
5439
- type MessagingEntityBuilder = {
5440
- withId: (id: string) => MessagingEntityBuilder;
5441
- withVersion: (major: number, minor: number, patch: number) => MessagingEntityBuilder;
5442
- withDisplayName: (displayName: string) => MessagingEntityBuilder;
5443
- withDescription: (description: string) => MessagingEntityBuilder;
5444
- withMessageRetentionHours: (hours: number) => MessagingEntityBuilder;
5445
- build: () => BlueprintComponent;
5446
- };
5447
- type MessagingEntityConfig = {
5448
- id: string;
5449
- version: {
5450
- major: number;
5451
- minor: number;
5452
- patch: number;
5453
- };
5454
- displayName: string;
5455
- description?: string;
5456
- messageRetentionHours?: number;
5457
- };
5458
- declare namespace MessagingEntity {
5459
- const getBuilder: () => MessagingEntityBuilder;
5460
- const create: (config: MessagingEntityConfig) => MessagingEntityComponent;
5461
- }
5462
- //#endregion
5463
6253
  //#region src/fractal/component/messaging/paas/broker.d.ts
5464
6254
  type BrokerComponent = {
5465
6255
  readonly broker: BlueprintComponent;
@@ -5488,61 +6278,6 @@ declare namespace Broker {
5488
6278
  const create: (config: BrokerConfig) => BrokerComponent;
5489
6279
  }
5490
6280
  //#endregion
5491
- //#region src/fractal/component/messaging/caas/entity.d.ts
5492
- type CaaSMessagingEntityComponent = {
5493
- readonly component: BlueprintComponent;
5494
- readonly components: ReadonlyArray<BlueprintComponent>;
5495
- };
5496
- type CaaSMessagingEntityBuilder = {
5497
- withId: (id: string) => CaaSMessagingEntityBuilder;
5498
- withVersion: (major: number, minor: number, patch: number) => CaaSMessagingEntityBuilder;
5499
- withDisplayName: (displayName: string) => CaaSMessagingEntityBuilder;
5500
- withDescription: (description: string) => CaaSMessagingEntityBuilder;
5501
- build: () => BlueprintComponent;
5502
- };
5503
- type CaaSMessagingEntityConfig = {
5504
- id: string;
5505
- version: {
5506
- major: number;
5507
- minor: number;
5508
- patch: number;
5509
- };
5510
- displayName: string;
5511
- description?: string;
5512
- };
5513
- declare namespace CaaSMessagingEntity {
5514
- const getBuilder: () => CaaSMessagingEntityBuilder;
5515
- const create: (config: CaaSMessagingEntityConfig) => CaaSMessagingEntityComponent;
5516
- }
5517
- //#endregion
5518
- //#region src/fractal/component/messaging/caas/broker.d.ts
5519
- type CaaSBrokerComponent = {
5520
- readonly broker: BlueprintComponent;
5521
- readonly entities: ReadonlyArray<CaaSMessagingEntityComponent>;
5522
- withEntities: (entities: CaaSMessagingEntityComponent[]) => CaaSBrokerComponent;
5523
- };
5524
- type CaaSBrokerBuilder = {
5525
- withId: (id: string) => CaaSBrokerBuilder;
5526
- withVersion: (major: number, minor: number, patch: number) => CaaSBrokerBuilder;
5527
- withDisplayName: (displayName: string) => CaaSBrokerBuilder;
5528
- withDescription: (description: string) => CaaSBrokerBuilder;
5529
- build: () => BlueprintComponent;
5530
- };
5531
- type CaaSBrokerConfig = {
5532
- id: string;
5533
- version: {
5534
- major: number;
5535
- minor: number;
5536
- patch: number;
5537
- };
5538
- displayName: string;
5539
- description?: string;
5540
- };
5541
- declare namespace CaaSBroker {
5542
- const getBuilder: () => CaaSBrokerBuilder;
5543
- const create: (config: CaaSBrokerConfig) => CaaSBrokerComponent;
5544
- }
5545
- //#endregion
5546
6281
  //#region src/fractal/component/messaging/saas/unmanaged.d.ts
5547
6282
  type MessagingUnmanagedComponent = {
5548
6283
  readonly component: BlueprintComponent;
@@ -6053,10 +6788,90 @@ declare namespace ComputeCluster {
6053
6788
  const create: (config: ComputeClusterConfig) => ComputeClusterComponent;
6054
6789
  }
6055
6790
  //#endregion
6791
+ //#region src/fractal/component/big_data/paas/datalake.d.ts
6792
+ type DatalakeComponent = {
6793
+ readonly component: BlueprintComponent;
6794
+ readonly components: ReadonlyArray<BlueprintComponent>;
6795
+ };
6796
+ type DatalakeBuilder = {
6797
+ withId: (id: string) => DatalakeBuilder;
6798
+ withVersion: (major: number, minor: number, patch: number) => DatalakeBuilder;
6799
+ withDisplayName: (displayName: string) => DatalakeBuilder;
6800
+ withDescription: (description: string) => DatalakeBuilder;
6801
+ build: () => BlueprintComponent;
6802
+ };
6803
+ type DatalakeConfig = {
6804
+ id: string;
6805
+ version: {
6806
+ major: number;
6807
+ minor: number;
6808
+ patch: number;
6809
+ };
6810
+ displayName: string;
6811
+ description?: string;
6812
+ };
6813
+ declare namespace Datalake {
6814
+ const getBuilder: () => DatalakeBuilder;
6815
+ const create: (config: DatalakeConfig) => DatalakeComponent;
6816
+ }
6817
+ //#endregion
6056
6818
  //#region src/fractal/component/big_data/paas/data_processing_job.d.ts
6819
+ /**
6820
+ * Purpose of a DataProcessingJob → Datalake link.
6821
+ * - `raw`: ingestion zone for unprocessed inputs
6822
+ * - `curated`: processed / cleaned outputs
6823
+ * - `checkpoint`: streaming checkpoint location (Spark Structured Streaming, etc.)
6824
+ */
6825
+ type DatalakePurpose = 'raw' | 'curated' | 'checkpoint';
6826
+ /**
6827
+ * Settings for a DataProcessingJob → Datalake link. The agent uses these to
6828
+ * inject the right URI into the job runtime (e.g. LAKE_RAW_URI, LAKE_CURATED_URI,
6829
+ * LAKE_CHECKPOINT_URI as env vars / Spark conf), composed as `<lake-uri>/<path>`
6830
+ * when `path` is set.
6831
+ */
6832
+ type DatalakeLinkSettings = {
6833
+ purpose: DatalakePurpose; /** Optional subpath within the lake. Agent composes `<lake-uri>/<path>`. */
6834
+ path?: string;
6835
+ };
6836
+ type DataProcessingJobDatalakeLink = {
6837
+ target: DatalakeComponent;
6838
+ } & DatalakeLinkSettings;
6839
+ /**
6840
+ * Access mode for a DataProcessingJob → MessagingEntity link.
6841
+ * - `publish`: job only writes messages.
6842
+ * - `subscribe`: job only consumes messages.
6843
+ * - `publish-subscribe`: job both writes and consumes.
6844
+ */
6845
+ type DataProcessingJobMessagingAccessType = 'publish' | 'subscribe' | 'publish-subscribe';
6846
+ /**
6847
+ * Settings for a DataProcessingJob → MessagingEntity link. The messaging
6848
+ * agent uses these to grant the job the right IAM/ACL on the topic and to
6849
+ * wire any consumer-side parameters (consumer group / starting position).
6850
+ */
6851
+ type DataProcessingJobMessagingLinkSettings = {
6852
+ access: DataProcessingJobMessagingAccessType; /** Consumer group; only meaningful when `access` includes `subscribe`. */
6853
+ consumerGroup?: string; /** Subscriber starting position: `"start"`, `"end"`, or an ISO timestamp. */
6854
+ startingPosition?: string;
6855
+ };
6856
+ type DataProcessingJobMessagingLink = {
6857
+ target: MessagingEntityComponent | CaaSMessagingEntityComponent;
6858
+ } & DataProcessingJobMessagingLinkSettings;
6057
6859
  type DataProcessingJobComponent = {
6058
6860
  readonly component: BlueprintComponent;
6059
6861
  readonly components: ReadonlyArray<BlueprintComponent>;
6862
+ /**
6863
+ * Declares "this job reads from / writes to this Datalake for the given purpose".
6864
+ * The agent injects the corresponding URI into the job runtime. Multiple links
6865
+ * are allowed and may target different Datalakes.
6866
+ */
6867
+ linkToDatalake: (links: DataProcessingJobDatalakeLink[]) => DataProcessingJobComponent;
6868
+ /**
6869
+ * Declares "this job publishes to / subscribes from this messaging topic/queue".
6870
+ * Settings carry the access mode and optional consumer-side parameters
6871
+ * (consumer group, starting position). The messaging agent uses these to
6872
+ * provision IAM/ACLs and wire consumer config.
6873
+ */
6874
+ linkToMessagingEntity: (links: DataProcessingJobMessagingLink[]) => DataProcessingJobComponent;
6060
6875
  };
6061
6876
  type DataProcessingJobBuilder = {
6062
6877
  withId: (id: string) => DataProcessingJobBuilder;
@@ -6072,7 +6887,12 @@ type DataProcessingJobBuilder = {
6072
6887
  withParameters: (params: string[]) => DataProcessingJobBuilder;
6073
6888
  withCronSchedule: (cron: string) => DataProcessingJobBuilder;
6074
6889
  withMaxRetries: (retries: number) => DataProcessingJobBuilder;
6075
- withExistingCluster: (useExisting: boolean) => DataProcessingJobBuilder;
6890
+ withExistingCluster: (useExisting: boolean) => DataProcessingJobBuilder; /** Vendor-agnostic Python wheel execution. The agent downloads from artifactUri and wraps for the runtime. */
6891
+ withArtifactType: (type: string) => DataProcessingJobBuilder;
6892
+ withArtifactUri: (uri: string) => DataProcessingJobBuilder;
6893
+ withPackageName: (name: string) => DataProcessingJobBuilder;
6894
+ withEntryPoint: (entry: string) => DataProcessingJobBuilder;
6895
+ withEntryPointArgs: (args: string[]) => DataProcessingJobBuilder;
6076
6896
  build: () => BlueprintComponent;
6077
6897
  };
6078
6898
  type DataProcessingJobConfig = {
@@ -6094,6 +6914,11 @@ type DataProcessingJobConfig = {
6094
6914
  cronSchedule?: string;
6095
6915
  maxRetries?: number;
6096
6916
  existingCluster?: boolean;
6917
+ artifactType?: string;
6918
+ artifactUri?: string;
6919
+ packageName?: string;
6920
+ entryPoint?: string;
6921
+ entryPointArgs?: string[];
6097
6922
  };
6098
6923
  declare namespace DataProcessingJob {
6099
6924
  const getBuilder: () => DataProcessingJobBuilder;
@@ -6161,33 +6986,6 @@ declare namespace DistributedDataProcessing {
6161
6986
  const create: (config: DistributedDataProcessingConfig) => DistributedDataProcessingComponent;
6162
6987
  }
6163
6988
  //#endregion
6164
- //#region src/fractal/component/big_data/paas/datalake.d.ts
6165
- type DatalakeComponent = {
6166
- readonly component: BlueprintComponent;
6167
- readonly components: ReadonlyArray<BlueprintComponent>;
6168
- };
6169
- type DatalakeBuilder = {
6170
- withId: (id: string) => DatalakeBuilder;
6171
- withVersion: (major: number, minor: number, patch: number) => DatalakeBuilder;
6172
- withDisplayName: (displayName: string) => DatalakeBuilder;
6173
- withDescription: (description: string) => DatalakeBuilder;
6174
- build: () => BlueprintComponent;
6175
- };
6176
- type DatalakeConfig = {
6177
- id: string;
6178
- version: {
6179
- major: number;
6180
- minor: number;
6181
- patch: number;
6182
- };
6183
- displayName: string;
6184
- description?: string;
6185
- };
6186
- declare namespace Datalake {
6187
- const getBuilder: () => DatalakeBuilder;
6188
- const create: (config: DatalakeConfig) => DatalakeComponent;
6189
- }
6190
- //#endregion
6191
6989
  //#region src/fractal/component/big_data/saas/unmanaged.d.ts
6192
6990
  type BigDataUnmanagedComponent = {
6193
6991
  readonly component: BlueprintComponent;
@@ -6828,19 +7626,36 @@ declare namespace BigDataSaaSUnmanaged {
6828
7626
  const create: (config: BigDataSaaSUnmanagedConfig) => LiveSystemComponent;
6829
7627
  }
6830
7628
  //#endregion
6831
- //#region src/fractal/component/api_management/paas/api_gateway.d.ts
6832
- type PaaSApiGatewayComponent = {
6833
- readonly component: BlueprintComponent;
6834
- readonly components: ReadonlyArray<BlueprintComponent>;
7629
+ //#region src/live_system/component/storage/caas/caas_minio_tenant.d.ts
7630
+ type SatisfiedCaaSMinioTenantBuilder = {
7631
+ withNamespace: (ns: string) => SatisfiedCaaSMinioTenantBuilder;
7632
+ withTenantName: (name: string) => SatisfiedCaaSMinioTenantBuilder;
7633
+ withBucketName: (bucket: string) => SatisfiedCaaSMinioTenantBuilder;
7634
+ withMinioVersion: (version: string) => SatisfiedCaaSMinioTenantBuilder;
7635
+ withServers: (servers: number) => SatisfiedCaaSMinioTenantBuilder;
7636
+ withVolumesPerServer: (volumesPerServer: number) => SatisfiedCaaSMinioTenantBuilder;
7637
+ withVolumeSize: (size: string) => SatisfiedCaaSMinioTenantBuilder;
7638
+ withStorageClass: (storageClass: string) => SatisfiedCaaSMinioTenantBuilder;
7639
+ withRequestAutoCert: (requestAutoCert: boolean) => SatisfiedCaaSMinioTenantBuilder;
7640
+ build: () => LiveSystemComponent;
6835
7641
  };
6836
- type PaaSApiGatewayBuilder = {
6837
- withId: (id: string) => PaaSApiGatewayBuilder;
6838
- withVersion: (major: number, minor: number, patch: number) => PaaSApiGatewayBuilder;
6839
- withDisplayName: (displayName: string) => PaaSApiGatewayBuilder;
6840
- withDescription: (description: string) => PaaSApiGatewayBuilder;
6841
- build: () => BlueprintComponent;
7642
+ type CaaSMinioTenantBuilder = {
7643
+ withId: (id: string) => CaaSMinioTenantBuilder;
7644
+ withVersion: (major: number, minor: number, patch: number) => CaaSMinioTenantBuilder;
7645
+ withDisplayName: (displayName: string) => CaaSMinioTenantBuilder;
7646
+ withDescription: (description: string) => CaaSMinioTenantBuilder;
7647
+ withNamespace: (ns: string) => CaaSMinioTenantBuilder;
7648
+ withTenantName: (name: string) => CaaSMinioTenantBuilder;
7649
+ withBucketName: (bucket: string) => CaaSMinioTenantBuilder;
7650
+ withMinioVersion: (version: string) => CaaSMinioTenantBuilder;
7651
+ withServers: (servers: number) => CaaSMinioTenantBuilder;
7652
+ withVolumesPerServer: (volumesPerServer: number) => CaaSMinioTenantBuilder;
7653
+ withVolumeSize: (size: string) => CaaSMinioTenantBuilder;
7654
+ withStorageClass: (storageClass: string) => CaaSMinioTenantBuilder;
7655
+ withRequestAutoCert: (requestAutoCert: boolean) => CaaSMinioTenantBuilder;
7656
+ build: () => LiveSystemComponent;
6842
7657
  };
6843
- type PaaSApiGatewayConfig = {
7658
+ type CaaSMinioTenantConfig = {
6844
7659
  id: string;
6845
7660
  version: {
6846
7661
  major: number;
@@ -6849,25 +7664,182 @@ type PaaSApiGatewayConfig = {
6849
7664
  };
6850
7665
  displayName: string;
6851
7666
  description?: string;
7667
+ namespace?: string;
7668
+ tenantName?: string;
7669
+ bucketName?: string;
7670
+ minioVersion?: string;
7671
+ servers?: number;
7672
+ volumesPerServer?: number;
7673
+ volumeSize?: string;
7674
+ storageClass?: string;
7675
+ requestAutoCert?: boolean;
6852
7676
  };
6853
- declare namespace PaaSApiGateway {
6854
- const getBuilder: () => PaaSApiGatewayBuilder;
6855
- const create: (config: PaaSApiGatewayConfig) => PaaSApiGatewayComponent;
7677
+ declare namespace CaaSMinioTenant {
7678
+ const getBuilder: () => CaaSMinioTenantBuilder;
7679
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedCaaSMinioTenantBuilder;
7680
+ const create: (config: CaaSMinioTenantConfig) => LiveSystemComponent;
6856
7681
  }
6857
7682
  //#endregion
6858
- //#region src/fractal/component/api_management/caas/api_gateway.d.ts
6859
- type CaaSApiGatewayComponent = {
7683
+ //#region src/live_system/component/big_data/caas/caas_spark_operator.d.ts
7684
+ type SatisfiedCaaSSparkOperatorBuilder = {
7685
+ withNamespace: (ns: string) => SatisfiedCaaSSparkOperatorBuilder;
7686
+ withWebhookEnabled: (enabled: boolean) => SatisfiedCaaSSparkOperatorBuilder;
7687
+ build: () => LiveSystemComponent;
7688
+ };
7689
+ type CaaSSparkOperatorBuilder = {
7690
+ withId: (id: string) => CaaSSparkOperatorBuilder;
7691
+ withVersion: (major: number, minor: number, patch: number) => CaaSSparkOperatorBuilder;
7692
+ withDisplayName: (displayName: string) => CaaSSparkOperatorBuilder;
7693
+ withDescription: (description: string) => CaaSSparkOperatorBuilder;
7694
+ withNamespace: (ns: string) => CaaSSparkOperatorBuilder;
7695
+ withWebhookEnabled: (enabled: boolean) => CaaSSparkOperatorBuilder;
7696
+ build: () => LiveSystemComponent;
7697
+ };
7698
+ type CaaSSparkOperatorConfig = {
7699
+ id: string;
7700
+ version: {
7701
+ major: number;
7702
+ minor: number;
7703
+ patch: number;
7704
+ };
7705
+ displayName: string;
7706
+ description?: string;
7707
+ namespace?: string;
7708
+ webhookEnabled?: boolean;
7709
+ };
7710
+ declare namespace CaaSSparkOperator {
7711
+ const getBuilder: () => CaaSSparkOperatorBuilder;
7712
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedCaaSSparkOperatorBuilder;
7713
+ const create: (config: CaaSSparkOperatorConfig) => LiveSystemComponent;
7714
+ }
7715
+ //#endregion
7716
+ //#region src/live_system/component/big_data/caas/caas_spark_cluster.d.ts
7717
+ type SatisfiedCaaSSparkClusterBuilder = {
7718
+ withDriverCores: (cores: string) => SatisfiedCaaSSparkClusterBuilder;
7719
+ withDriverMemory: (memory: string) => SatisfiedCaaSSparkClusterBuilder;
7720
+ withExecutorCores: (cores: string) => SatisfiedCaaSSparkClusterBuilder;
7721
+ withExecutorMemory: (memory: string) => SatisfiedCaaSSparkClusterBuilder;
7722
+ withExecutorInstances: (count: number) => SatisfiedCaaSSparkClusterBuilder;
7723
+ build: () => LiveSystemComponent;
7724
+ };
7725
+ type CaaSSparkClusterBuilder = {
7726
+ withId: (id: string) => CaaSSparkClusterBuilder;
7727
+ withVersion: (major: number, minor: number, patch: number) => CaaSSparkClusterBuilder;
7728
+ withDisplayName: (displayName: string) => CaaSSparkClusterBuilder;
7729
+ withDescription: (description: string) => CaaSSparkClusterBuilder;
7730
+ withDriverCores: (cores: string) => CaaSSparkClusterBuilder;
7731
+ withDriverMemory: (memory: string) => CaaSSparkClusterBuilder;
7732
+ withExecutorCores: (cores: string) => CaaSSparkClusterBuilder;
7733
+ withExecutorMemory: (memory: string) => CaaSSparkClusterBuilder;
7734
+ withExecutorInstances: (count: number) => CaaSSparkClusterBuilder;
7735
+ build: () => LiveSystemComponent;
7736
+ };
7737
+ type CaaSSparkClusterConfig = {
7738
+ id: string;
7739
+ version: {
7740
+ major: number;
7741
+ minor: number;
7742
+ patch: number;
7743
+ };
7744
+ displayName: string;
7745
+ description?: string;
7746
+ driverCores?: string;
7747
+ driverMemory?: string;
7748
+ executorCores?: string;
7749
+ executorMemory?: string;
7750
+ executorInstances?: number;
7751
+ };
7752
+ declare namespace CaaSSparkCluster {
7753
+ const getBuilder: () => CaaSSparkClusterBuilder;
7754
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedCaaSSparkClusterBuilder;
7755
+ const create: (config: CaaSSparkClusterConfig) => LiveSystemComponent;
7756
+ }
7757
+ //#endregion
7758
+ //#region src/live_system/component/big_data/caas/caas_spark_job.d.ts
7759
+ type SatisfiedCaaSSparkJobBuilder = {
7760
+ withSchedule: (schedule: string) => SatisfiedCaaSSparkJobBuilder;
7761
+ withJarUri: (jarUri: string) => SatisfiedCaaSSparkJobBuilder;
7762
+ withMainClass: (mainClass: string) => SatisfiedCaaSSparkJobBuilder;
7763
+ build: () => LiveSystemComponent;
7764
+ };
7765
+ type CaaSSparkJobBuilder = {
7766
+ withId: (id: string) => CaaSSparkJobBuilder;
7767
+ withVersion: (major: number, minor: number, patch: number) => CaaSSparkJobBuilder;
7768
+ withDisplayName: (displayName: string) => CaaSSparkJobBuilder;
7769
+ withDescription: (description: string) => CaaSSparkJobBuilder;
7770
+ withSchedule: (schedule: string) => CaaSSparkJobBuilder;
7771
+ withJarUri: (jarUri: string) => CaaSSparkJobBuilder;
7772
+ withMainClass: (mainClass: string) => CaaSSparkJobBuilder;
7773
+ build: () => LiveSystemComponent;
7774
+ };
7775
+ type CaaSSparkJobConfig = {
7776
+ id: string;
7777
+ version: {
7778
+ major: number;
7779
+ minor: number;
7780
+ patch: number;
7781
+ };
7782
+ displayName: string;
7783
+ description?: string;
7784
+ schedule?: string;
7785
+ jarUri?: string;
7786
+ mainClass?: string;
7787
+ };
7788
+ declare namespace CaaSSparkJob {
7789
+ const getBuilder: () => CaaSSparkJobBuilder;
7790
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedCaaSSparkJobBuilder;
7791
+ const create: (config: CaaSSparkJobConfig) => LiveSystemComponent;
7792
+ }
7793
+ //#endregion
7794
+ //#region src/live_system/component/big_data/caas/caas_mlflow.d.ts
7795
+ type SatisfiedCaaSMlflowBuilder = {
7796
+ withNamespace: (ns: string) => SatisfiedCaaSMlflowBuilder;
7797
+ withTrackingUri: (uri: string) => SatisfiedCaaSMlflowBuilder;
7798
+ withArtifactRoot: (root: string) => SatisfiedCaaSMlflowBuilder;
7799
+ build: () => LiveSystemComponent;
7800
+ };
7801
+ type CaaSMlflowBuilder = {
7802
+ withId: (id: string) => CaaSMlflowBuilder;
7803
+ withVersion: (major: number, minor: number, patch: number) => CaaSMlflowBuilder;
7804
+ withDisplayName: (displayName: string) => CaaSMlflowBuilder;
7805
+ withDescription: (description: string) => CaaSMlflowBuilder;
7806
+ withNamespace: (ns: string) => CaaSMlflowBuilder;
7807
+ withTrackingUri: (uri: string) => CaaSMlflowBuilder;
7808
+ withArtifactRoot: (root: string) => CaaSMlflowBuilder;
7809
+ build: () => LiveSystemComponent;
7810
+ };
7811
+ type CaaSMlflowConfig = {
7812
+ id: string;
7813
+ version: {
7814
+ major: number;
7815
+ minor: number;
7816
+ patch: number;
7817
+ };
7818
+ displayName: string;
7819
+ description?: string;
7820
+ namespace?: string;
7821
+ trackingUri?: string;
7822
+ artifactRoot?: string;
7823
+ };
7824
+ declare namespace CaaSMlflow {
7825
+ const getBuilder: () => CaaSMlflowBuilder;
7826
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedCaaSMlflowBuilder;
7827
+ const create: (config: CaaSMlflowConfig) => LiveSystemComponent;
7828
+ }
7829
+ //#endregion
7830
+ //#region src/fractal/component/api_management/paas/api_gateway.d.ts
7831
+ type PaaSApiGatewayComponent = {
6860
7832
  readonly component: BlueprintComponent;
6861
7833
  readonly components: ReadonlyArray<BlueprintComponent>;
6862
7834
  };
6863
- type CaaSApiGatewayBuilder = {
6864
- withId: (id: string) => CaaSApiGatewayBuilder;
6865
- withVersion: (major: number, minor: number, patch: number) => CaaSApiGatewayBuilder;
6866
- withDisplayName: (displayName: string) => CaaSApiGatewayBuilder;
6867
- withDescription: (description: string) => CaaSApiGatewayBuilder;
7835
+ type PaaSApiGatewayBuilder = {
7836
+ withId: (id: string) => PaaSApiGatewayBuilder;
7837
+ withVersion: (major: number, minor: number, patch: number) => PaaSApiGatewayBuilder;
7838
+ withDisplayName: (displayName: string) => PaaSApiGatewayBuilder;
7839
+ withDescription: (description: string) => PaaSApiGatewayBuilder;
6868
7840
  build: () => BlueprintComponent;
6869
7841
  };
6870
- type CaaSApiGatewayConfig = {
7842
+ type PaaSApiGatewayConfig = {
6871
7843
  id: string;
6872
7844
  version: {
6873
7845
  major: number;
@@ -6877,9 +7849,9 @@ type CaaSApiGatewayConfig = {
6877
7849
  displayName: string;
6878
7850
  description?: string;
6879
7851
  };
6880
- declare namespace CaaSApiGateway {
6881
- const getBuilder: () => CaaSApiGatewayBuilder;
6882
- const create: (config: CaaSApiGatewayConfig) => CaaSApiGatewayComponent;
7852
+ declare namespace PaaSApiGateway {
7853
+ const getBuilder: () => PaaSApiGatewayBuilder;
7854
+ const create: (config: PaaSApiGatewayConfig) => PaaSApiGatewayComponent;
6883
7855
  }
6884
7856
  //#endregion
6885
7857
  //#region src/fractal/component/api_management/saas/unmanaged.d.ts
@@ -7197,87 +8169,6 @@ declare namespace ApiManagementSaaSUnmanaged {
7197
8169
  const create: (config: ApiManagementSaaSUnmanagedConfig) => LiveSystemComponent;
7198
8170
  }
7199
8171
  //#endregion
7200
- //#region src/fractal/component/observability/caas/monitoring.d.ts
7201
- type MonitoringComponent = {
7202
- readonly component: BlueprintComponent;
7203
- readonly components: ReadonlyArray<BlueprintComponent>;
7204
- };
7205
- type MonitoringBuilder = {
7206
- withId: (id: string) => MonitoringBuilder;
7207
- withVersion: (major: number, minor: number, patch: number) => MonitoringBuilder;
7208
- withDisplayName: (displayName: string) => MonitoringBuilder;
7209
- withDescription: (description: string) => MonitoringBuilder;
7210
- build: () => BlueprintComponent;
7211
- };
7212
- type MonitoringConfig = {
7213
- id: string;
7214
- version: {
7215
- major: number;
7216
- minor: number;
7217
- patch: number;
7218
- };
7219
- displayName: string;
7220
- description?: string;
7221
- };
7222
- declare namespace Monitoring {
7223
- const getBuilder: () => MonitoringBuilder;
7224
- const create: (config: MonitoringConfig) => MonitoringComponent;
7225
- }
7226
- //#endregion
7227
- //#region src/fractal/component/observability/caas/tracing.d.ts
7228
- type TracingComponent = {
7229
- readonly component: BlueprintComponent;
7230
- readonly components: ReadonlyArray<BlueprintComponent>;
7231
- };
7232
- type TracingBuilder = {
7233
- withId: (id: string) => TracingBuilder;
7234
- withVersion: (major: number, minor: number, patch: number) => TracingBuilder;
7235
- withDisplayName: (displayName: string) => TracingBuilder;
7236
- withDescription: (description: string) => TracingBuilder;
7237
- build: () => BlueprintComponent;
7238
- };
7239
- type TracingConfig = {
7240
- id: string;
7241
- version: {
7242
- major: number;
7243
- minor: number;
7244
- patch: number;
7245
- };
7246
- displayName: string;
7247
- description?: string;
7248
- };
7249
- declare namespace Tracing {
7250
- const getBuilder: () => TracingBuilder;
7251
- const create: (config: TracingConfig) => TracingComponent;
7252
- }
7253
- //#endregion
7254
- //#region src/fractal/component/observability/caas/logging.d.ts
7255
- type LoggingComponent = {
7256
- readonly component: BlueprintComponent;
7257
- readonly components: ReadonlyArray<BlueprintComponent>;
7258
- };
7259
- type LoggingBuilder = {
7260
- withId: (id: string) => LoggingBuilder;
7261
- withVersion: (major: number, minor: number, patch: number) => LoggingBuilder;
7262
- withDisplayName: (displayName: string) => LoggingBuilder;
7263
- withDescription: (description: string) => LoggingBuilder;
7264
- build: () => BlueprintComponent;
7265
- };
7266
- type LoggingConfig = {
7267
- id: string;
7268
- version: {
7269
- major: number;
7270
- minor: number;
7271
- patch: number;
7272
- };
7273
- displayName: string;
7274
- description?: string;
7275
- };
7276
- declare namespace Logging {
7277
- const getBuilder: () => LoggingBuilder;
7278
- const create: (config: LoggingConfig) => LoggingComponent;
7279
- }
7280
- //#endregion
7281
8172
  //#region src/fractal/component/observability/saas/unmanaged.d.ts
7282
8173
  type ObservabilityUnmanagedComponent = {
7283
8174
  readonly component: BlueprintComponent;
@@ -7469,33 +8360,6 @@ declare namespace ObservabilitySaaSUnmanaged {
7469
8360
  const create: (config: ObservabilitySaaSUnmanagedConfig) => LiveSystemComponent;
7470
8361
  }
7471
8362
  //#endregion
7472
- //#region src/fractal/component/security/caas/service_mesh.d.ts
7473
- type ServiceMeshComponent = {
7474
- readonly component: BlueprintComponent;
7475
- readonly components: ReadonlyArray<BlueprintComponent>;
7476
- };
7477
- type ServiceMeshBuilder = {
7478
- withId: (id: string) => ServiceMeshBuilder;
7479
- withVersion: (major: number, minor: number, patch: number) => ServiceMeshBuilder;
7480
- withDisplayName: (displayName: string) => ServiceMeshBuilder;
7481
- withDescription: (description: string) => ServiceMeshBuilder;
7482
- build: () => BlueprintComponent;
7483
- };
7484
- type ServiceMeshConfig = {
7485
- id: string;
7486
- version: {
7487
- major: number;
7488
- minor: number;
7489
- patch: number;
7490
- };
7491
- displayName: string;
7492
- description?: string;
7493
- };
7494
- declare namespace ServiceMesh {
7495
- const getBuilder: () => ServiceMeshBuilder;
7496
- const create: (config: ServiceMeshConfig) => ServiceMeshComponent;
7497
- }
7498
- //#endregion
7499
8363
  //#region src/fractal/component/security/saas/unmanaged.d.ts
7500
8364
  type SecurityUnmanagedComponent = {
7501
8365
  readonly component: BlueprintComponent;
@@ -7646,4 +8510,4 @@ declare const LiveSystem: typeof LiveSystem$1;
7646
8510
  type LiveSystem = LiveSystem$1;
7647
8511
  declare const Custom: typeof Custom$1;
7648
8512
  //#endregion
7649
- export { Ambassador, type AmbassadorBuilder, type AmbassadorConfig, ApiManagementSaaSUnmanaged, type ApiManagementSaaSUnmanagedBuilder, type ApiManagementSaaSUnmanagedConfig, ApiManagementUnmanaged, type ApiManagementUnmanagedBuilder, type ApiManagementUnmanagedComponent, type ApiManagementUnmanagedConfig, AwsCloudFront, type AwsCloudFrontBuilder, type AwsCloudFrontConfig, AwsDatabricks, type AwsDatabricksBuilder, AwsDatabricksCluster, type AwsDatabricksClusterBuilder, type AwsDatabricksClusterConfig, type AwsDatabricksConfig, AwsDatabricksJob, type AwsDatabricksJobBuilder, type AwsDatabricksJobConfig, AwsDatabricksMlflow, type AwsDatabricksMlflowBuilder, type AwsDatabricksMlflowConfig, AwsEcsCluster, type AwsEcsClusterBuilder, type AwsEcsClusterConfig, AwsEcsService, type AwsEcsServiceBuilder, type AwsEcsServiceConfig, AwsEcsTaskDefinition, type AwsEcsTaskDefinitionBuilder, type AwsEcsTaskDefinitionComponent, type AwsEcsTaskDefinitionConfig, AwsEksCluster, type AwsEksClusterBuilder, type AwsEksClusterConfig, AwsLb, type AwsLbBuilder, type AwsLbConfig, AwsS3, type AwsS3Builder, type AwsS3Config, AwsS3Datalake, type AwsS3DatalakeBuilder, type AwsS3DatalakeConfig, AwsSecurityGroup, type AwsSecurityGroupBuilder, type AwsSecurityGroupConfig, AwsSubnet, type AwsSubnetBuilder, type AwsSubnetConfig, AwsVpc, type AwsVpcBuilder, type AwsVpcConfig, AzureAksCluster, type AzureAksClusterBuilder, type AzureAksClusterConfig, AzureApiManagement, type AzureApiManagementBuilder, type AzureApiManagementConfig, AzureBlobContainer, type AzureBlobContainerBuilder, type AzureBlobContainerConfig, AzureContainerApp, type AzureContainerAppBuilder, type AzureContainerAppConfig, AzureContainerAppsEnvironment, type AzureContainerAppsEnvironmentBuilder, type AzureContainerAppsEnvironmentConfig, AzureContainerInstance, type AzureContainerInstanceBuilder, type AzureContainerInstanceConfig, AzureCosmosDbAccount, type AzureCosmosDbAccountBuilder, type AzureCosmosDbAccountConfig, AzureCosmosDbCassandra, type AzureCosmosDbCassandraBuilder, type AzureCosmosDbCassandraConfig, AzureCosmosDbGremlinDatabase, type AzureCosmosDbGremlinDatabaseBuilder, type AzureCosmosDbGremlinDatabaseConfig, AzureCosmosDbMongoDatabase, type AzureCosmosDbMongoDatabaseBuilder, type AzureCosmosDbMongoDatabaseConfig, AzureCosmosDbPostgreSqlDatabase, type AzureCosmosDbPostgreSqlDatabaseBuilder, type AzureCosmosDbPostgreSqlDatabaseConfig, AzureCosmosDbTable, type AzureCosmosDbTableBuilder, type AzureCosmosDbTableConfig, AzureDatabricks, type AzureDatabricksBuilder, AzureDatabricksCluster, type AzureDatabricksClusterBuilder, type AzureDatabricksClusterConfig, type AzureDatabricksConfig, AzureDatabricksJob, type AzureDatabricksJobBuilder, type AzureDatabricksJobConfig, AzureDatabricksMlflow, type AzureDatabricksMlflowBuilder, type AzureDatabricksMlflowConfig, AzureDatalake, type AzureDatalakeBuilder, type AzureDatalakeConfig, AzureEventHub, type AzureEventHubBuilder, type AzureEventHubConfig, AzureEventHubNamespace, type AzureEventHubNamespaceBuilder, type AzureEventHubNamespaceConfig, AzureFileStorage, type AzureFileStorageBuilder, type AzureFileStorageConfig, AzureLb, type AzureLbBuilder, type AzureLbConfig, AzureNsg, type AzureNsgBuilder, type AzureNsgConfig, AzurePostgreSqlDatabase, type AzurePostgreSqlDatabaseBuilder, type AzurePostgreSqlDatabaseConfig, AzurePostgreSqlDbms, type AzurePostgreSqlDbmsBuilder, type AzurePostgreSqlDbmsConfig, AzureRelay, type AzureRelayBuilder, type AzureRelayConfig, AzureServiceBus, type AzureServiceBusBuilder, type AzureServiceBusConfig, AzureServiceBusQueue, type AzureServiceBusQueueBuilder, type AzureServiceBusQueueConfig, AzureServiceBusTopic, type AzureServiceBusTopicBuilder, type AzureServiceBusTopicConfig, AzureStorageAccount, type AzureStorageAccountBuilder, type AzureStorageAccountConfig, AzureSubnet, type AzureSubnetBuilder, type AzureSubnetConfig, AzureVm, type AzureVmBuilder, type AzureVmConfig, AzureVnet, type AzureVnetBuilder, type AzureVnetConfig, BigDataSaaSUnmanaged, type BigDataSaaSUnmanagedBuilder, type BigDataSaaSUnmanagedConfig, BigDataUnmanaged, type BigDataUnmanagedBuilder, type BigDataUnmanagedComponent, type BigDataUnmanagedConfig, BoundedContext, Broker, type BrokerBuilder, type BrokerComponent, type BrokerConfig, CaaSApiGateway, type CaaSApiGatewayBuilder, type CaaSApiGatewayComponent, type CaaSApiGatewayConfig, CaaSBroker, type CaaSBrokerBuilder, type CaaSBrokerComponent, type CaaSBrokerConfig, CaaSMessagingEntity, type CaaSMessagingEntityBuilder, type CaaSMessagingEntityComponent, type CaaSMessagingEntityConfig, ColumnOrientedDbms, type ColumnOrientedDbmsBuilder, type ColumnOrientedDbmsComponent, type ColumnOrientedDbmsConfig, ColumnOrientedEntity, type ColumnOrientedEntityBuilder, type ColumnOrientedEntityComponent, type ColumnOrientedEntityConfig, ComputeCluster, type ComputeClusterBuilder, type ComputeClusterComponent, type ComputeClusterConfig, ContainerPlatform, type ContainerPlatformBuilder, type ContainerPlatformComponent, type ContainerPlatformConfig, Custom, type CustomBlueprintBuilder, type CustomBlueprintConfig, type CustomBlueprintFactory, type CustomComponentConfig, type CustomOfferBuilder, type CustomOfferConfig, type CustomOfferFactory, type CustomSatisfiedBuilder, DataProcessingJob, type DataProcessingJobBuilder, type DataProcessingJobComponent, type DataProcessingJobConfig, Datalake, type DatalakeBuilder, type DatalakeComponent, type DatalakeConfig, DistributedDataProcessing, type DistributedDataProcessingBuilder, type DistributedDataProcessingComponent, type DistributedDataProcessingConfig, DocumentDatabase, type DocumentDatabaseBuilder, type DocumentDatabaseComponent, type DocumentDatabaseConfig, DocumentDbms, type DocumentDbmsBuilder, type DocumentDbmsComponent, type DocumentDbmsConfig, Ec2Instance, type Ec2InstanceBuilder, type Ec2InstanceConfig, Elastic, type ElasticBuilder, type ElasticConfig, Environment, FilesAndBlobs, type FilesAndBlobsBuilder, type FilesAndBlobsComponent, type FilesAndBlobsConfig, Fractal, type FrontendIpConfiguration, GcpApiGateway, type GcpApiGatewayBuilder, type GcpApiGatewayConfig, GcpBigTable, type GcpBigTableBuilder, type GcpBigTableConfig, GcpBigTableTable, type GcpBigTableTableBuilder, type GcpBigTableTableConfig, GcpCloudRunService, type GcpCloudRunServiceBuilder, type GcpCloudRunServiceConfig, GcpCloudStorage, type GcpCloudStorageBuilder, type GcpCloudStorageConfig, GcpDatabricks, type GcpDatabricksBuilder, GcpDatabricksCluster, type GcpDatabricksClusterBuilder, type GcpDatabricksClusterConfig, type GcpDatabricksConfig, GcpDatabricksJob, type GcpDatabricksJobBuilder, type GcpDatabricksJobConfig, GcpDatabricksMlflow, type GcpDatabricksMlflowBuilder, type GcpDatabricksMlflowConfig, GcpDatalake, type GcpDatalakeBuilder, type GcpDatalakeConfig, GcpFirestore, type GcpFirestoreBuilder, GcpFirestoreCollection, type GcpFirestoreCollectionBuilder, type GcpFirestoreCollectionConfig, type GcpFirestoreConfig, GcpFirewall, type GcpFirewallBuilder, type GcpFirewallConfig, GcpGkeCluster, type GcpGkeClusterBuilder, type GcpGkeClusterConfig, GcpGlb, type GcpGlbBuilder, type GcpGlbConfig, GcpPostgreSqlDatabase, type GcpPostgreSqlDatabaseBuilder, type GcpPostgreSqlDatabaseConfig, GcpPostgreSqlDbms, type GcpPostgreSqlDbmsBuilder, type GcpPostgreSqlDbmsConfig, GcpPubSub, type GcpPubSubBuilder, type GcpPubSubConfig, GcpPubSubSubscription, type GcpPubSubSubscriptionBuilder, type GcpPubSubSubscriptionConfig, GcpPubSubTopic, type GcpPubSubTopicBuilder, type GcpPubSubTopicConfig, GcpSubnet, type GcpSubnetBuilder, type GcpSubnetConfig, GcpVm, type GcpVmBuilder, type GcpVmConfig, GcpVpc, type GcpVpcBuilder, type GcpVpcConfig, GraphDatabase, type GraphDatabaseBuilder, type GraphDatabaseComponent, type GraphDatabaseConfig, GraphDbms, type GraphDbmsBuilder, type GraphDbmsComponent, type GraphDbmsConfig, HetznerFirewall, type HetznerFirewallBuilder, type HetznerFirewallConfig, HetznerNetwork, type HetznerNetworkBuilder, type HetznerNetworkConfig, HetznerServer, type HetznerServerBuilder, type HetznerServerConfig, HetznerSubnet, type HetznerSubnetBuilder, type HetznerSubnetConfig, IndexPattern, type IndexPatternBuilder, type IndexPatternConfig, InfrastructureDomain, type IngressRule, Jaeger, type JaegerBuilder, type JaegerConfig, Kafka, type KafkaBuilder, type KafkaConfig, KafkaTopic, type KafkaTopicBuilder, type KafkaTopicConfig, KebabCaseString, KeyValueDbms, type KeyValueDbmsBuilder, type KeyValueDbmsComponent, type KeyValueDbmsConfig, KeyValueEntity, type KeyValueEntityBuilder, type KeyValueEntityComponent, type KeyValueEntityConfig, LiveSystem, LoadBalancer, type LoadBalancerBuilder, type LoadBalancerComponent, type LoadBalancerConfig, Logging, type LoggingBuilder, type LoggingComponent, type LoggingConfig, MessagingEntity, type MessagingEntityBuilder, type MessagingEntityComponent, type MessagingEntityConfig, MessagingSaaSUnmanaged, type MessagingSaaSUnmanagedBuilder, type MessagingSaaSUnmanagedConfig, MessagingUnmanaged, type MessagingUnmanagedBuilder, type MessagingUnmanagedComponent, type MessagingUnmanagedConfig, MlExperiment, type MlExperimentBuilder, type MlExperimentComponent, type MlExperimentConfig, Monitoring, type MonitoringBuilder, type MonitoringComponent, type MonitoringConfig, type NodePoolConfig, ObservabilityElastic, type ObservabilityElasticBuilder, type ObservabilityElasticConfig, ObservabilitySaaSUnmanaged, type ObservabilitySaaSUnmanagedBuilder, type ObservabilitySaaSUnmanagedConfig, ObservabilityUnmanaged, type ObservabilityUnmanagedBuilder, type ObservabilityUnmanagedComponent, type ObservabilityUnmanagedConfig, Ocelot, type OcelotBuilder, type OcelotConfig, OciContainerInstance, type OciContainerInstanceBuilder, type OciContainerInstanceConfig, OciInstance, type OciInstanceBuilder, type OciInstanceConfig, OciSecurityList, type OciSecurityListBuilder, type OciSecurityListConfig, OciSubnet, type OciSubnetBuilder, type OciSubnetConfig, OciVcn, type OciVcnBuilder, type OciVcnConfig, OpenshiftPersistentVolume, type OpenshiftPersistentVolumeBuilder, type OpenshiftPersistentVolumeConfig, OpenshiftSecurityGroup, type OpenshiftSecurityGroupBuilder, type OpenshiftSecurityGroupConfig, OpenshiftService, type OpenshiftServiceBuilder, type OpenshiftServiceConfig, OpenshiftVm, type OpenshiftVmBuilder, type OpenshiftVmConfig, OpenshiftWorkload, type OpenshiftWorkloadBuilder, type OpenshiftWorkloadConfig, OwnerId, OwnerType, PaaSApiGateway, type PaaSApiGatewayBuilder, type PaaSApiGatewayComponent, type PaaSApiGatewayConfig, PascalCaseString, Prometheus, type PrometheusBuilder, type PrometheusConfig, RelationalDatabase, type RelationalDatabaseBuilder, type RelationalDatabaseComponent, type RelationalDatabaseConfig, RelationalDbms, type RelationalDbmsBuilder, type RelationalDbmsComponent, type RelationalDbmsConfig, SaaSUnmanaged, type SaaSUnmanagedBuilder, type SaaSUnmanagedConfig, type SatisfiedAmbassadorBuilder, type SatisfiedApiManagementSaaSUnmanagedBuilder, type SatisfiedAwsCloudFrontBuilder, type SatisfiedAwsDatabricksBuilder, type SatisfiedAwsDatabricksClusterBuilder, type SatisfiedAwsDatabricksJobBuilder, type SatisfiedAwsDatabricksMlflowBuilder, type SatisfiedAwsEcsClusterBuilder, type SatisfiedAwsEcsServiceBuilder, type SatisfiedAwsEcsTaskDefinitionBuilder, type SatisfiedAwsEksClusterBuilder, type SatisfiedAwsLbBuilder, type SatisfiedAwsS3Builder, type SatisfiedAwsS3DatalakeBuilder, type SatisfiedAwsSecurityGroupBuilder, type SatisfiedAwsSubnetBuilder, type SatisfiedAwsVpcBuilder, type SatisfiedAzureAksClusterBuilder, type SatisfiedAzureApiManagementBuilder, type SatisfiedAzureBlobContainerBuilder, type SatisfiedAzureContainerAppBuilder, type SatisfiedAzureContainerAppsEnvironmentBuilder, type SatisfiedAzureContainerInstanceBuilder, type SatisfiedAzureCosmosDbAccountBuilder, type SatisfiedAzureCosmosDbCassandraBuilder, type SatisfiedAzureCosmosDbGremlinDatabaseBuilder, type SatisfiedAzureCosmosDbMongoDatabaseBuilder, type SatisfiedAzureCosmosDbPostgreSqlDatabaseBuilder, type SatisfiedAzureCosmosDbTableBuilder, type SatisfiedAzureDatabricksBuilder, type SatisfiedAzureDatabricksClusterBuilder, type SatisfiedAzureDatabricksJobBuilder, type SatisfiedAzureDatabricksMlflowBuilder, type SatisfiedAzureDatalakeBuilder, type SatisfiedAzureEventHubBuilder, type SatisfiedAzureEventHubNamespaceBuilder, type SatisfiedAzureFileStorageBuilder, type SatisfiedAzureLbBuilder, type SatisfiedAzureNsgBuilder, type SatisfiedAzurePostgreSqlDatabaseBuilder, type SatisfiedAzurePostgreSqlDbmsBuilder, type SatisfiedAzureRelayBuilder, type SatisfiedAzureServiceBusBuilder, type SatisfiedAzureServiceBusQueueBuilder, type SatisfiedAzureServiceBusTopicBuilder, type SatisfiedAzureStorageAccountBuilder, type SatisfiedAzureSubnetBuilder, type SatisfiedAzureVmBuilder, type SatisfiedAzureVnetBuilder, type SatisfiedBigDataSaaSUnmanagedBuilder, type SatisfiedEc2Builder, type SatisfiedElasticBuilder, type SatisfiedGcpApiGatewayBuilder, type SatisfiedGcpBigTableBuilder, type SatisfiedGcpBigTableTableBuilder, type SatisfiedGcpCloudRunServiceBuilder, type SatisfiedGcpCloudStorageBuilder, type SatisfiedGcpDatabricksBuilder, type SatisfiedGcpDatabricksClusterBuilder, type SatisfiedGcpDatabricksJobBuilder, type SatisfiedGcpDatabricksMlflowBuilder, type SatisfiedGcpDatalakeBuilder, type SatisfiedGcpFirestoreBuilder, type SatisfiedGcpFirestoreCollectionBuilder, type SatisfiedGcpFirewallBuilder, type SatisfiedGcpGkeClusterBuilder, type SatisfiedGcpGlbBuilder, type SatisfiedGcpPostgreSqlDatabaseBuilder, type SatisfiedGcpPostgreSqlDbmsBuilder, type SatisfiedGcpPubSubBuilder, type SatisfiedGcpPubSubSubscriptionBuilder, type SatisfiedGcpPubSubTopicBuilder, type SatisfiedGcpSubnetBuilder, type SatisfiedGcpVmBuilder, type SatisfiedGcpVpcBuilder, type SatisfiedHetznerFirewallBuilder, type SatisfiedHetznerNetworkBuilder, type SatisfiedHetznerServerBuilder, type SatisfiedHetznerSubnetBuilder, type SatisfiedIndexPatternBuilder, type SatisfiedJaegerBuilder, type SatisfiedKafkaBuilder, type SatisfiedKafkaTopicBuilder, type SatisfiedMessagingSaaSUnmanagedBuilder, type SatisfiedObservabilityElasticBuilder, type SatisfiedObservabilitySaaSUnmanagedBuilder, type SatisfiedOcelotBuilder, type SatisfiedOciContainerInstanceBuilder, type SatisfiedOciInstanceBuilder, type SatisfiedOciSecurityListBuilder, type SatisfiedOciSubnetBuilder, type SatisfiedOciVcnBuilder, type SatisfiedOpenshiftPersistentVolumeBuilder, type SatisfiedOpenshiftSecurityGroupBuilder, type SatisfiedOpenshiftServiceBuilder, type SatisfiedOpenshiftVmBuilder, type SatisfiedOpenshiftWorkloadBuilder, type SatisfiedPrometheusBuilder, type SatisfiedSaaSUnmanagedBuilder, type SatisfiedSecuritySaaSUnmanagedBuilder, type SatisfiedTraefikBuilder, type SatisfiedVspherePortGroupBuilder, type SatisfiedVsphereVlanBuilder, type SatisfiedVsphereVmBuilder, Search, type SearchBuilder, type SearchComponent, type SearchConfig, SearchEntity, type SearchEntityBuilder, type SearchEntityComponent, type SearchEntityConfig, SecurityGroup, type SecurityGroupBuilder, type SecurityGroupComponent, type SecurityGroupConfig, SecuritySaaSUnmanaged, type SecuritySaaSUnmanagedBuilder, type SecuritySaaSUnmanagedConfig, SecurityUnmanaged, type SecurityUnmanagedBuilder, type SecurityUnmanagedComponent, type SecurityUnmanagedConfig, ServiceAccountCredentials, ServiceAccountId, ServiceDeliveryModel, ServiceMesh, type ServiceMeshBuilder, type ServiceMeshComponent, type ServiceMeshConfig, Subnet, type SubnetBuilder, type SubnetComponent, type SubnetConfig, type SubnetResult, Tracing, type TracingBuilder, type TracingComponent, type TracingConfig, Traefik, type TraefikBuilder, type TraefikConfig, Unmanaged, type UnmanagedBuilder, type UnmanagedComponent, type UnmanagedConfig, Version, VirtualMachine, type VirtualMachineBuilder, type VirtualMachineComponent, type VirtualMachineConfig, VirtualNetwork, type VirtualNetworkBuilder, type VirtualNetworkComponent, type VirtualNetworkConfig, type VirtualNetworkResult, type VmPortLink, VspherePortGroup, type VspherePortGroupBuilder, type VspherePortGroupConfig, VsphereVlan, type VsphereVlanBuilder, type VsphereVlanConfig, VsphereVm, type VsphereVmBuilder, type VsphereVmConfig, Workload, type WorkloadBuilder, type WorkloadComponent, type WorkloadConfig, type WorkloadPortLink };
8513
+ export { Ambassador, type AmbassadorBuilder, type AmbassadorConfig, type ApiGatewayLinkSettings, ApiManagementSaaSUnmanaged, type ApiManagementSaaSUnmanagedBuilder, type ApiManagementSaaSUnmanagedConfig, ApiManagementUnmanaged, type ApiManagementUnmanagedBuilder, type ApiManagementUnmanagedComponent, type ApiManagementUnmanagedConfig, ArubaBlockStorage, type ArubaBlockStorageBuilder, type ArubaBlockStorageConfig, ArubaCloudServer, type ArubaCloudServerBuilder, type ArubaCloudServerConfig, ArubaContainerRegistry, type ArubaContainerRegistryBuilder, type ArubaContainerRegistryConfig, ArubaElasticIp, type ArubaElasticIpBuilder, type ArubaElasticIpConfig, ArubaKaaS, type ArubaKaaSBuilder, type ArubaKaaSConfig, ArubaMsSqlDbms, type ArubaMsSqlDbmsBuilder, type ArubaMsSqlDbmsConfig, ArubaMySqlDbms, type ArubaMySqlDbmsBuilder, type ArubaMySqlDbmsConfig, ArubaObjectStorageAccount, type ArubaObjectStorageAccountBuilder, type ArubaObjectStorageAccountConfig, ArubaSecurityGroup, type ArubaSecurityGroupBuilder, type ArubaSecurityGroupConfig, ArubaSshKeyPair, type ArubaSshKeyPairBuilder, type ArubaSshKeyPairConfig, ArubaSubnet, type ArubaSubnetBuilder, type ArubaSubnetConfig, ArubaVpc, type ArubaVpcBuilder, type ArubaVpcConfig, ArubaVpcPeering, type ArubaVpcPeeringBuilder, type ArubaVpcPeeringConfig, ArubaVpnTunnel, type ArubaVpnTunnelBuilder, type ArubaVpnTunnelConfig, AwsCloudFront, type AwsCloudFrontBuilder, type AwsCloudFrontConfig, AwsDatabricks, type AwsDatabricksBuilder, AwsDatabricksCluster, type AwsDatabricksClusterBuilder, type AwsDatabricksClusterConfig, type AwsDatabricksConfig, AwsDatabricksJob, type AwsDatabricksJobBuilder, type AwsDatabricksJobConfig, AwsDatabricksMlflow, type AwsDatabricksMlflowBuilder, type AwsDatabricksMlflowConfig, AwsEcsCluster, type AwsEcsClusterBuilder, type AwsEcsClusterConfig, AwsEcsService, type AwsEcsServiceBuilder, type AwsEcsServiceConfig, AwsEcsTaskDefinition, type AwsEcsTaskDefinitionBuilder, type AwsEcsTaskDefinitionComponent, type AwsEcsTaskDefinitionConfig, AwsEksCluster, type AwsEksClusterBuilder, type AwsEksClusterConfig, AwsLb, type AwsLbBuilder, type AwsLbConfig, AwsS3, type AwsS3Builder, type AwsS3Config, AwsS3Datalake, type AwsS3DatalakeBuilder, type AwsS3DatalakeConfig, AwsSecurityGroup, type AwsSecurityGroupBuilder, type AwsSecurityGroupConfig, AwsSubnet, type AwsSubnetBuilder, type AwsSubnetConfig, AwsVpc, type AwsVpcBuilder, type AwsVpcConfig, AzureAksCluster, type AzureAksClusterBuilder, type AzureAksClusterConfig, AzureApiManagement, type AzureApiManagementBuilder, type AzureApiManagementConfig, AzureBlobContainer, type AzureBlobContainerBuilder, type AzureBlobContainerConfig, AzureContainerApp, type AzureContainerAppBuilder, type AzureContainerAppConfig, AzureContainerAppsEnvironment, type AzureContainerAppsEnvironmentBuilder, type AzureContainerAppsEnvironmentConfig, AzureContainerInstance, type AzureContainerInstanceBuilder, type AzureContainerInstanceConfig, AzureCosmosDbAccount, type AzureCosmosDbAccountBuilder, type AzureCosmosDbAccountConfig, AzureCosmosDbCassandra, type AzureCosmosDbCassandraBuilder, type AzureCosmosDbCassandraConfig, AzureCosmosDbGremlinDatabase, type AzureCosmosDbGremlinDatabaseBuilder, type AzureCosmosDbGremlinDatabaseConfig, AzureCosmosDbMongoDatabase, type AzureCosmosDbMongoDatabaseBuilder, type AzureCosmosDbMongoDatabaseConfig, AzureCosmosDbPostgreSqlDatabase, type AzureCosmosDbPostgreSqlDatabaseBuilder, type AzureCosmosDbPostgreSqlDatabaseConfig, AzureCosmosDbTable, type AzureCosmosDbTableBuilder, type AzureCosmosDbTableConfig, AzureDatabricks, type AzureDatabricksBuilder, AzureDatabricksCluster, type AzureDatabricksClusterBuilder, type AzureDatabricksClusterConfig, type AzureDatabricksConfig, AzureDatabricksJob, type AzureDatabricksJobBuilder, type AzureDatabricksJobConfig, AzureDatabricksMlflow, type AzureDatabricksMlflowBuilder, type AzureDatabricksMlflowConfig, AzureDatalake, type AzureDatalakeBuilder, type AzureDatalakeConfig, AzureEventHub, type AzureEventHubBuilder, type AzureEventHubConfig, AzureEventHubNamespace, type AzureEventHubNamespaceBuilder, type AzureEventHubNamespaceConfig, AzureFileStorage, type AzureFileStorageBuilder, type AzureFileStorageConfig, AzureLb, type AzureLbBuilder, type AzureLbConfig, AzureNsg, type AzureNsgBuilder, type AzureNsgConfig, AzurePostgreSqlDatabase, type AzurePostgreSqlDatabaseBuilder, type AzurePostgreSqlDatabaseConfig, AzurePostgreSqlDbms, type AzurePostgreSqlDbmsBuilder, type AzurePostgreSqlDbmsConfig, AzureRelay, type AzureRelayBuilder, type AzureRelayConfig, AzureServiceBus, type AzureServiceBusBuilder, type AzureServiceBusConfig, AzureServiceBusQueue, type AzureServiceBusQueueBuilder, type AzureServiceBusQueueConfig, AzureServiceBusTopic, type AzureServiceBusTopicBuilder, type AzureServiceBusTopicConfig, AzureStorageAccount, type AzureStorageAccountBuilder, type AzureStorageAccountConfig, AzureSubnet, type AzureSubnetBuilder, type AzureSubnetConfig, AzureVm, type AzureVmBuilder, type AzureVmConfig, AzureVnet, type AzureVnetBuilder, type AzureVnetConfig, BigDataSaaSUnmanaged, type BigDataSaaSUnmanagedBuilder, type BigDataSaaSUnmanagedConfig, BigDataUnmanaged, type BigDataUnmanagedBuilder, type BigDataUnmanagedComponent, type BigDataUnmanagedConfig, BoundedContext, Broker, type BrokerBuilder, type BrokerComponent, type BrokerConfig, CaaSApiGateway, type CaaSApiGatewayBuilder, type CaaSApiGatewayComponent, type CaaSApiGatewayConfig, CaaSBroker, type CaaSBrokerBuilder, type CaaSBrokerComponent, type CaaSBrokerConfig, CaaSK8sWorkload, type CaaSK8sWorkloadBuilder, type CaaSK8sWorkloadConfig, CaaSMessagingEntity, type CaaSMessagingEntityBuilder, type CaaSMessagingEntityComponent, type CaaSMessagingEntityConfig, CaaSMinioTenant, type CaaSMinioTenantBuilder, type CaaSMinioTenantConfig, CaaSMlflow, type CaaSMlflowBuilder, type CaaSMlflowConfig, CaaSSparkCluster, type CaaSSparkClusterBuilder, type CaaSSparkClusterConfig, CaaSSparkJob, type CaaSSparkJobBuilder, type CaaSSparkJobConfig, CaaSSparkOperator, type CaaSSparkOperatorBuilder, type CaaSSparkOperatorConfig, ColumnOrientedDbms, type ColumnOrientedDbmsBuilder, type ColumnOrientedDbmsComponent, type ColumnOrientedDbmsConfig, ColumnOrientedEntity, type ColumnOrientedEntityBuilder, type ColumnOrientedEntityComponent, type ColumnOrientedEntityConfig, ComputeCluster, type ComputeClusterBuilder, type ComputeClusterComponent, type ComputeClusterConfig, ContainerPlatform, type ContainerPlatformBuilder, type ContainerPlatformComponent, type ContainerPlatformConfig, Custom, type CustomBlueprintBuilder, type CustomBlueprintConfig, type CustomBlueprintFactory, type CustomComponentConfig, type CustomOfferBuilder, type CustomOfferConfig, type CustomOfferFactory, type CustomSatisfiedBuilder, DataProcessingJob, type DataProcessingJobBuilder, type DataProcessingJobComponent, type DataProcessingJobConfig, type DataProcessingJobDatalakeLink, type DataProcessingJobMessagingAccessType, type DataProcessingJobMessagingLink, type DataProcessingJobMessagingLinkSettings, Datalake, type DatalakeBuilder, type DatalakeComponent, type DatalakeConfig, type DatalakeLinkSettings, type DatalakePurpose, DistributedDataProcessing, type DistributedDataProcessingBuilder, type DistributedDataProcessingComponent, type DistributedDataProcessingConfig, DocumentDatabase, type DocumentDatabaseBuilder, type DocumentDatabaseComponent, type DocumentDatabaseConfig, DocumentDbms, type DocumentDbmsBuilder, type DocumentDbmsComponent, type DocumentDbmsConfig, Ec2Instance, type Ec2InstanceBuilder, type Ec2InstanceConfig, Elastic, type ElasticBuilder, type ElasticConfig, Environment, FilesAndBlobs, type FilesAndBlobsBuilder, type FilesAndBlobsComponent, type FilesAndBlobsConfig, Fractal, type FrontendIpConfiguration, GcpApiGateway, type GcpApiGatewayBuilder, type GcpApiGatewayConfig, GcpBigTable, type GcpBigTableBuilder, type GcpBigTableConfig, GcpBigTableTable, type GcpBigTableTableBuilder, type GcpBigTableTableConfig, GcpCloudRunService, type GcpCloudRunServiceBuilder, type GcpCloudRunServiceConfig, GcpCloudStorage, type GcpCloudStorageBuilder, type GcpCloudStorageConfig, GcpDatabricks, type GcpDatabricksBuilder, GcpDatabricksCluster, type GcpDatabricksClusterBuilder, type GcpDatabricksClusterConfig, type GcpDatabricksConfig, GcpDatabricksJob, type GcpDatabricksJobBuilder, type GcpDatabricksJobConfig, GcpDatabricksMlflow, type GcpDatabricksMlflowBuilder, type GcpDatabricksMlflowConfig, GcpDatalake, type GcpDatalakeBuilder, type GcpDatalakeConfig, GcpFirestore, type GcpFirestoreBuilder, GcpFirestoreCollection, type GcpFirestoreCollectionBuilder, type GcpFirestoreCollectionConfig, type GcpFirestoreConfig, GcpFirewall, type GcpFirewallBuilder, type GcpFirewallConfig, GcpGkeCluster, type GcpGkeClusterBuilder, type GcpGkeClusterConfig, GcpGlb, type GcpGlbBuilder, type GcpGlbConfig, GcpPostgreSqlDatabase, type GcpPostgreSqlDatabaseBuilder, type GcpPostgreSqlDatabaseConfig, GcpPostgreSqlDbms, type GcpPostgreSqlDbmsBuilder, type GcpPostgreSqlDbmsConfig, GcpPubSub, type GcpPubSubBuilder, type GcpPubSubConfig, GcpPubSubSubscription, type GcpPubSubSubscriptionBuilder, type GcpPubSubSubscriptionConfig, GcpPubSubTopic, type GcpPubSubTopicBuilder, type GcpPubSubTopicConfig, GcpSubnet, type GcpSubnetBuilder, type GcpSubnetConfig, GcpVm, type GcpVmBuilder, type GcpVmConfig, GcpVpc, type GcpVpcBuilder, type GcpVpcConfig, GraphDatabase, type GraphDatabaseBuilder, type GraphDatabaseComponent, type GraphDatabaseConfig, GraphDbms, type GraphDbmsBuilder, type GraphDbmsComponent, type GraphDbmsConfig, HetznerFirewall, type HetznerFirewallBuilder, type HetznerFirewallConfig, HetznerNetwork, type HetznerNetworkBuilder, type HetznerNetworkConfig, HetznerServer, type HetznerServerBuilder, type HetznerServerConfig, HetznerSubnet, type HetznerSubnetBuilder, type HetznerSubnetConfig, IndexPattern, type IndexPatternBuilder, type IndexPatternConfig, InfrastructureDomain, type IngressRule, Jaeger, type JaegerBuilder, type JaegerConfig, Kafka, type KafkaBuilder, type KafkaConfig, KafkaTopic, type KafkaTopicBuilder, type KafkaTopicConfig, KebabCaseString, KeyValueDbms, type KeyValueDbmsBuilder, type KeyValueDbmsComponent, type KeyValueDbmsConfig, KeyValueEntity, type KeyValueEntityBuilder, type KeyValueEntityComponent, type KeyValueEntityConfig, LiveSystem, LoadBalancer, type LoadBalancerBuilder, type LoadBalancerComponent, type LoadBalancerConfig, Logging, type LoggingBuilder, type LoggingComponent, type LoggingConfig, type MessagingAccessType, MessagingEntity, type MessagingEntityBuilder, type MessagingEntityComponent, type MessagingEntityConfig, type MessagingLinkSettings, MessagingSaaSUnmanaged, type MessagingSaaSUnmanagedBuilder, type MessagingSaaSUnmanagedConfig, MessagingUnmanaged, type MessagingUnmanagedBuilder, type MessagingUnmanagedComponent, type MessagingUnmanagedConfig, MlExperiment, type MlExperimentBuilder, type MlExperimentComponent, type MlExperimentConfig, Monitoring, type MonitoringBuilder, type MonitoringComponent, type MonitoringConfig, type NodePoolConfig, ObservabilityElastic, type ObservabilityElasticBuilder, type ObservabilityElasticConfig, ObservabilitySaaSUnmanaged, type ObservabilitySaaSUnmanagedBuilder, type ObservabilitySaaSUnmanagedConfig, ObservabilityUnmanaged, type ObservabilityUnmanagedBuilder, type ObservabilityUnmanagedComponent, type ObservabilityUnmanagedConfig, Ocelot, type OcelotBuilder, type OcelotConfig, OciContainerInstance, type OciContainerInstanceBuilder, type OciContainerInstanceConfig, OciInstance, type OciInstanceBuilder, type OciInstanceConfig, OciSecurityList, type OciSecurityListBuilder, type OciSecurityListConfig, OciSubnet, type OciSubnetBuilder, type OciSubnetConfig, OciVcn, type OciVcnBuilder, type OciVcnConfig, OpenshiftPersistentVolume, type OpenshiftPersistentVolumeBuilder, type OpenshiftPersistentVolumeConfig, OpenshiftSecurityGroup, type OpenshiftSecurityGroupBuilder, type OpenshiftSecurityGroupConfig, OpenshiftService, type OpenshiftServiceBuilder, type OpenshiftServiceConfig, OpenshiftVm, type OpenshiftVmBuilder, type OpenshiftVmConfig, OpenshiftWorkload, type OpenshiftWorkloadBuilder, type OpenshiftWorkloadConfig, OwnerId, OwnerType, PaaSApiGateway, type PaaSApiGatewayBuilder, type PaaSApiGatewayComponent, type PaaSApiGatewayConfig, PascalCaseString, Prometheus, type PrometheusBuilder, type PrometheusConfig, RelationalDatabase, type RelationalDatabaseBuilder, type RelationalDatabaseComponent, type RelationalDatabaseConfig, RelationalDbms, type RelationalDbmsBuilder, type RelationalDbmsComponent, type RelationalDbmsConfig, SaaSUnmanaged, type SaaSUnmanagedBuilder, type SaaSUnmanagedConfig, type SatisfiedAmbassadorBuilder, type SatisfiedApiManagementSaaSUnmanagedBuilder, type SatisfiedArubaCloudServerBuilder, type SatisfiedArubaKaaSBuilder, type SatisfiedArubaMsSqlDbmsBuilder, type SatisfiedArubaMySqlDbmsBuilder, type SatisfiedArubaObjectStorageAccountBuilder, type SatisfiedArubaSecurityGroupBuilder, type SatisfiedArubaSubnetBuilder, type SatisfiedArubaVpcBuilder, type SatisfiedAwsCloudFrontBuilder, type SatisfiedAwsDatabricksBuilder, type SatisfiedAwsDatabricksClusterBuilder, type SatisfiedAwsDatabricksJobBuilder, type SatisfiedAwsDatabricksMlflowBuilder, type SatisfiedAwsEcsClusterBuilder, type SatisfiedAwsEcsServiceBuilder, type SatisfiedAwsEcsTaskDefinitionBuilder, type SatisfiedAwsEksClusterBuilder, type SatisfiedAwsLbBuilder, type SatisfiedAwsS3Builder, type SatisfiedAwsS3DatalakeBuilder, type SatisfiedAwsSecurityGroupBuilder, type SatisfiedAwsSubnetBuilder, type SatisfiedAwsVpcBuilder, type SatisfiedAzureAksClusterBuilder, type SatisfiedAzureApiManagementBuilder, type SatisfiedAzureBlobContainerBuilder, type SatisfiedAzureContainerAppBuilder, type SatisfiedAzureContainerAppsEnvironmentBuilder, type SatisfiedAzureContainerInstanceBuilder, type SatisfiedAzureCosmosDbAccountBuilder, type SatisfiedAzureCosmosDbCassandraBuilder, type SatisfiedAzureCosmosDbGremlinDatabaseBuilder, type SatisfiedAzureCosmosDbMongoDatabaseBuilder, type SatisfiedAzureCosmosDbPostgreSqlDatabaseBuilder, type SatisfiedAzureCosmosDbTableBuilder, type SatisfiedAzureDatabricksBuilder, type SatisfiedAzureDatabricksClusterBuilder, type SatisfiedAzureDatabricksJobBuilder, type SatisfiedAzureDatabricksMlflowBuilder, type SatisfiedAzureDatalakeBuilder, type SatisfiedAzureEventHubBuilder, type SatisfiedAzureEventHubNamespaceBuilder, type SatisfiedAzureFileStorageBuilder, type SatisfiedAzureLbBuilder, type SatisfiedAzureNsgBuilder, type SatisfiedAzurePostgreSqlDatabaseBuilder, type SatisfiedAzurePostgreSqlDbmsBuilder, type SatisfiedAzureRelayBuilder, type SatisfiedAzureServiceBusBuilder, type SatisfiedAzureServiceBusQueueBuilder, type SatisfiedAzureServiceBusTopicBuilder, type SatisfiedAzureStorageAccountBuilder, type SatisfiedAzureSubnetBuilder, type SatisfiedAzureVmBuilder, type SatisfiedAzureVnetBuilder, type SatisfiedBigDataSaaSUnmanagedBuilder, type SatisfiedCaaSK8sWorkloadBuilder, type SatisfiedCaaSMinioTenantBuilder, type SatisfiedCaaSMlflowBuilder, type SatisfiedCaaSSparkClusterBuilder, type SatisfiedCaaSSparkJobBuilder, type SatisfiedCaaSSparkOperatorBuilder, type SatisfiedEc2Builder, type SatisfiedElasticBuilder, type SatisfiedGcpApiGatewayBuilder, type SatisfiedGcpBigTableBuilder, type SatisfiedGcpBigTableTableBuilder, type SatisfiedGcpCloudRunServiceBuilder, type SatisfiedGcpCloudStorageBuilder, type SatisfiedGcpDatabricksBuilder, type SatisfiedGcpDatabricksClusterBuilder, type SatisfiedGcpDatabricksJobBuilder, type SatisfiedGcpDatabricksMlflowBuilder, type SatisfiedGcpDatalakeBuilder, type SatisfiedGcpFirestoreBuilder, type SatisfiedGcpFirestoreCollectionBuilder, type SatisfiedGcpFirewallBuilder, type SatisfiedGcpGkeClusterBuilder, type SatisfiedGcpGlbBuilder, type SatisfiedGcpPostgreSqlDatabaseBuilder, type SatisfiedGcpPostgreSqlDbmsBuilder, type SatisfiedGcpPubSubBuilder, type SatisfiedGcpPubSubSubscriptionBuilder, type SatisfiedGcpPubSubTopicBuilder, type SatisfiedGcpSubnetBuilder, type SatisfiedGcpVmBuilder, type SatisfiedGcpVpcBuilder, type SatisfiedHetznerFirewallBuilder, type SatisfiedHetznerNetworkBuilder, type SatisfiedHetznerServerBuilder, type SatisfiedHetznerSubnetBuilder, type SatisfiedIndexPatternBuilder, type SatisfiedJaegerBuilder, type SatisfiedKafkaBuilder, type SatisfiedKafkaTopicBuilder, type SatisfiedMessagingSaaSUnmanagedBuilder, type SatisfiedObservabilityElasticBuilder, type SatisfiedObservabilitySaaSUnmanagedBuilder, type SatisfiedOcelotBuilder, type SatisfiedOciContainerInstanceBuilder, type SatisfiedOciInstanceBuilder, type SatisfiedOciSecurityListBuilder, type SatisfiedOciSubnetBuilder, type SatisfiedOciVcnBuilder, type SatisfiedOpenshiftPersistentVolumeBuilder, type SatisfiedOpenshiftSecurityGroupBuilder, type SatisfiedOpenshiftServiceBuilder, type SatisfiedOpenshiftVmBuilder, type SatisfiedOpenshiftWorkloadBuilder, type SatisfiedPrometheusBuilder, type SatisfiedSaaSUnmanagedBuilder, type SatisfiedSecuritySaaSUnmanagedBuilder, type SatisfiedTraefikBuilder, type SatisfiedVspherePortGroupBuilder, type SatisfiedVsphereVlanBuilder, type SatisfiedVsphereVmBuilder, Search, type SearchBuilder, type SearchComponent, type SearchConfig, SearchEntity, type SearchEntityBuilder, type SearchEntityComponent, type SearchEntityConfig, SecurityGroup, type SecurityGroupBuilder, type SecurityGroupComponent, type SecurityGroupConfig, SecuritySaaSUnmanaged, type SecuritySaaSUnmanagedBuilder, type SecuritySaaSUnmanagedConfig, SecurityUnmanaged, type SecurityUnmanagedBuilder, type SecurityUnmanagedComponent, type SecurityUnmanagedConfig, ServiceAccountCredentials, ServiceAccountId, ServiceDeliveryModel, ServiceMesh, type ServiceMeshBuilder, type ServiceMeshComponent, type ServiceMeshConfig, Subnet, type SubnetBuilder, type SubnetComponent, type SubnetConfig, type SubnetResult, Tracing, type TracingBuilder, type TracingComponent, type TracingConfig, Traefik, type TraefikBuilder, type TraefikConfig, Unmanaged, type UnmanagedBuilder, type UnmanagedComponent, type UnmanagedConfig, Version, VirtualMachine, type VirtualMachineBuilder, type VirtualMachineComponent, type VirtualMachineConfig, VirtualNetwork, type VirtualNetworkBuilder, type VirtualNetworkComponent, type VirtualNetworkConfig, type VirtualNetworkResult, type VmPortLink, VspherePortGroup, type VspherePortGroupBuilder, type VspherePortGroupConfig, VsphereVlan, type VsphereVlanBuilder, type VsphereVlanConfig, VsphereVm, type VsphereVmBuilder, type VsphereVmConfig, Workload, type WorkloadApiGatewayLink, type WorkloadBuilder, type WorkloadComponent, type WorkloadConfig, type WorkloadMessagingLink, type WorkloadPortLink };