@fractal_cloud/sdk 1.4.0 → 1.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -1886,7 +1886,92 @@ 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
1889
1916
  //#region src/fractal/component/custom_workloads/caas/workload.d.ts
1917
+ /**
1918
+ * Container env var. Either a literal value, or a reference to a key in a
1919
+ * ConfigMap or Secret. Settings keys mirror Kubernetes EnvVar/EnvVarSource.
1920
+ */
1921
+ type WorkloadEnvVar = {
1922
+ name: string;
1923
+ value: string;
1924
+ } | {
1925
+ name: string;
1926
+ valueFromConfigMap: {
1927
+ name: string;
1928
+ key: string;
1929
+ };
1930
+ } | {
1931
+ name: string;
1932
+ valueFromSecret: {
1933
+ name: string;
1934
+ key: string;
1935
+ };
1936
+ };
1937
+ type WorkloadEnvFrom = {
1938
+ configMap: {
1939
+ name: string;
1940
+ };
1941
+ } | {
1942
+ secret: {
1943
+ name: string;
1944
+ };
1945
+ };
1946
+ /**
1947
+ * Mount a Kubernetes Secret as files in the container filesystem.
1948
+ * If `items` is omitted every key in the Secret becomes a file at `mountPath/<key>`.
1949
+ */
1950
+ type WorkloadSecretMount = {
1951
+ name: string;
1952
+ mountPath: string;
1953
+ items?: {
1954
+ key: string;
1955
+ path: string;
1956
+ }[];
1957
+ readOnly?: boolean;
1958
+ };
1959
+ type WorkloadResources = {
1960
+ cpu?: string;
1961
+ memory?: string;
1962
+ };
1963
+ /**
1964
+ * Settings for a Workload → APIGateway link. The agent that reconciles the
1965
+ * APIGateway derives one Mapping (or equivalent) per inbound link from these.
1966
+ */
1967
+ type ApiGatewayLinkSettings = {
1968
+ prefix: string;
1969
+ hostname: string;
1970
+ rewrite?: string;
1971
+ timeoutMs?: number;
1972
+ port?: number;
1973
+ tlsSecretName?: string;
1974
+ };
1890
1975
  /**
1891
1976
  * Link from one Workload to another, declaring a traffic rule.
1892
1977
  * The agent derives managed SG egress/ingress rules from these.
@@ -1897,11 +1982,15 @@ type WorkloadPortLink = {
1897
1982
  toPort?: number;
1898
1983
  protocol?: string;
1899
1984
  };
1985
+ type WorkloadApiGatewayLink = {
1986
+ target: CaaSApiGatewayComponent;
1987
+ } & ApiGatewayLinkSettings;
1900
1988
  type WorkloadComponent = {
1901
1989
  readonly component: BlueprintComponent;
1902
1990
  readonly components: ReadonlyArray<BlueprintComponent>; /** Declares a traffic rule from this workload to another. The agent derives managed SG egress/ingress rules. */
1903
1991
  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;
1992
+ 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. */
1993
+ linkToApiGateway: (links: WorkloadApiGatewayLink[]) => WorkloadComponent;
1905
1994
  };
1906
1995
  type WorkloadBuilder = {
1907
1996
  withId: (id: string) => WorkloadBuilder;
@@ -1913,7 +2002,14 @@ type WorkloadBuilder = {
1913
2002
  withContainerName: (name: string) => WorkloadBuilder;
1914
2003
  withCpu: (cpu: string) => WorkloadBuilder;
1915
2004
  withMemory: (memory: string) => WorkloadBuilder;
1916
- withDesiredCount: (count: number) => WorkloadBuilder;
2005
+ withDesiredCount: (count: number) => WorkloadBuilder; /** Set environment variables on the container. Repeated calls append. */
2006
+ withEnv: (env: WorkloadEnvVar[]) => WorkloadBuilder; /** Pull all keys of a ConfigMap or Secret into the container env. Repeated calls append. */
2007
+ withEnvFrom: (sources: WorkloadEnvFrom[]) => WorkloadBuilder; /** Mount Kubernetes Secrets as files. Repeated calls append. */
2008
+ withSecretMounts: (mounts: WorkloadSecretMount[]) => WorkloadBuilder; /** Image pull secrets (private registries). */
2009
+ withImagePullSecrets: (names: string[]) => WorkloadBuilder; /** Resource requests separate from limits. Use `withCpu`/`withMemory` for the back-compat both-equal shorthand. */
2010
+ withResourceRequests: (r: WorkloadResources) => WorkloadBuilder;
2011
+ withResourceLimits: (r: WorkloadResources) => WorkloadBuilder; /** When true, the agent provisions a dedicated ServiceAccount named after the workload. */
2012
+ withServiceAccount: (enabled: boolean) => WorkloadBuilder;
1917
2013
  build: () => BlueprintComponent;
1918
2014
  };
1919
2015
  type WorkloadConfig = {
@@ -1931,6 +2027,13 @@ type WorkloadConfig = {
1931
2027
  cpu?: string;
1932
2028
  memory?: string;
1933
2029
  desiredCount?: number;
2030
+ env?: WorkloadEnvVar[];
2031
+ envFrom?: WorkloadEnvFrom[];
2032
+ secretMounts?: WorkloadSecretMount[];
2033
+ imagePullSecrets?: string[];
2034
+ resourceRequests?: WorkloadResources;
2035
+ resourceLimits?: WorkloadResources;
2036
+ serviceAccount?: boolean;
1934
2037
  };
1935
2038
  declare namespace Workload {
1936
2039
  const getBuilder: () => WorkloadBuilder;
@@ -4167,6 +4270,489 @@ declare namespace OciContainerInstance {
4167
4270
  const create: (config: OciContainerInstanceConfig) => LiveSystemComponent;
4168
4271
  }
4169
4272
  //#endregion
4273
+ //#region src/live_system/component/network_and_compute/iaas/aruba_vpc.d.ts
4274
+ type SatisfiedArubaVpcBuilder = {
4275
+ withName: (name: string) => SatisfiedArubaVpcBuilder;
4276
+ withLocation: (location: string) => SatisfiedArubaVpcBuilder;
4277
+ build: () => LiveSystemComponent;
4278
+ };
4279
+ type ArubaVpcBuilder = {
4280
+ withId: (id: string) => ArubaVpcBuilder;
4281
+ withVersion: (major: number, minor: number, patch: number) => ArubaVpcBuilder;
4282
+ withDisplayName: (displayName: string) => ArubaVpcBuilder;
4283
+ withDescription: (description: string) => ArubaVpcBuilder;
4284
+ withName: (name: string) => ArubaVpcBuilder;
4285
+ withLocation: (location: string) => ArubaVpcBuilder;
4286
+ build: () => LiveSystemComponent;
4287
+ };
4288
+ type ArubaVpcConfig = {
4289
+ id: string;
4290
+ version: {
4291
+ major: number;
4292
+ minor: number;
4293
+ patch: number;
4294
+ };
4295
+ displayName: string;
4296
+ description?: string;
4297
+ name?: string;
4298
+ location?: string;
4299
+ };
4300
+ declare namespace ArubaVpc {
4301
+ const getBuilder: () => ArubaVpcBuilder;
4302
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedArubaVpcBuilder;
4303
+ const create: (config: ArubaVpcConfig) => LiveSystemComponent;
4304
+ }
4305
+ //#endregion
4306
+ //#region src/live_system/component/network_and_compute/iaas/aruba_subnet.d.ts
4307
+ type SatisfiedArubaSubnetBuilder = {
4308
+ build: () => LiveSystemComponent;
4309
+ };
4310
+ type ArubaSubnetBuilder = {
4311
+ withId: (id: string) => ArubaSubnetBuilder;
4312
+ withVersion: (major: number, minor: number, patch: number) => ArubaSubnetBuilder;
4313
+ withDisplayName: (displayName: string) => ArubaSubnetBuilder;
4314
+ withDescription: (description: string) => ArubaSubnetBuilder;
4315
+ withCidrBlock: (cidrBlock: string) => ArubaSubnetBuilder;
4316
+ build: () => LiveSystemComponent;
4317
+ };
4318
+ type ArubaSubnetConfig = {
4319
+ id: string;
4320
+ version: {
4321
+ major: number;
4322
+ minor: number;
4323
+ patch: number;
4324
+ };
4325
+ displayName: string;
4326
+ description?: string;
4327
+ cidrBlock: string;
4328
+ };
4329
+ declare namespace ArubaSubnet {
4330
+ const getBuilder: () => ArubaSubnetBuilder;
4331
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedArubaSubnetBuilder;
4332
+ const create: (config: ArubaSubnetConfig) => LiveSystemComponent;
4333
+ }
4334
+ //#endregion
4335
+ //#region src/live_system/component/network_and_compute/iaas/aruba_security_group.d.ts
4336
+ type SatisfiedArubaSecurityGroupBuilder = {
4337
+ withName: (name: string) => SatisfiedArubaSecurityGroupBuilder;
4338
+ build: () => LiveSystemComponent;
4339
+ };
4340
+ type ArubaSecurityGroupBuilder = {
4341
+ withId: (id: string) => ArubaSecurityGroupBuilder;
4342
+ withVersion: (major: number, minor: number, patch: number) => ArubaSecurityGroupBuilder;
4343
+ withDisplayName: (displayName: string) => ArubaSecurityGroupBuilder;
4344
+ withDescription: (description: string) => ArubaSecurityGroupBuilder;
4345
+ withIngressRules: (rules: IngressRule[]) => ArubaSecurityGroupBuilder;
4346
+ withName: (name: string) => ArubaSecurityGroupBuilder;
4347
+ build: () => LiveSystemComponent;
4348
+ };
4349
+ type ArubaSecurityGroupConfig = {
4350
+ id: string;
4351
+ version: {
4352
+ major: number;
4353
+ minor: number;
4354
+ patch: number;
4355
+ };
4356
+ displayName: string;
4357
+ description?: string;
4358
+ ingressRules?: IngressRule[];
4359
+ name?: string;
4360
+ };
4361
+ declare namespace ArubaSecurityGroup {
4362
+ const getBuilder: () => ArubaSecurityGroupBuilder;
4363
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedArubaSecurityGroupBuilder;
4364
+ const create: (config: ArubaSecurityGroupConfig) => LiveSystemComponent;
4365
+ }
4366
+ //#endregion
4367
+ //#region src/live_system/component/network_and_compute/iaas/aruba_ssh_key_pair.d.ts
4368
+ type ArubaSshKeyPairBuilder = {
4369
+ withId: (id: string) => ArubaSshKeyPairBuilder;
4370
+ withVersion: (major: number, minor: number, patch: number) => ArubaSshKeyPairBuilder;
4371
+ withDisplayName: (displayName: string) => ArubaSshKeyPairBuilder;
4372
+ withDescription: (description: string) => ArubaSshKeyPairBuilder;
4373
+ withKeyName: (keyName: string) => ArubaSshKeyPairBuilder;
4374
+ withPublicKey: (publicKey: string) => ArubaSshKeyPairBuilder;
4375
+ build: () => LiveSystemComponent;
4376
+ };
4377
+ type ArubaSshKeyPairConfig = {
4378
+ id: string;
4379
+ version: {
4380
+ major: number;
4381
+ minor: number;
4382
+ patch: number;
4383
+ };
4384
+ displayName: string;
4385
+ description?: string;
4386
+ keyName?: string;
4387
+ publicKey: string;
4388
+ };
4389
+ declare namespace ArubaSshKeyPair {
4390
+ const getBuilder: () => ArubaSshKeyPairBuilder;
4391
+ const create: (config: ArubaSshKeyPairConfig) => LiveSystemComponent;
4392
+ }
4393
+ //#endregion
4394
+ //#region src/live_system/component/network_and_compute/iaas/aruba_cloud_server.d.ts
4395
+ type SatisfiedArubaCloudServerBuilder = {
4396
+ withFlavorName: (flavorName: string) => SatisfiedArubaCloudServerBuilder;
4397
+ withBootVolume: (bootVolume: string) => SatisfiedArubaCloudServerBuilder;
4398
+ withUserData: (userData: string) => SatisfiedArubaCloudServerBuilder;
4399
+ build: () => LiveSystemComponent;
4400
+ };
4401
+ type ArubaCloudServerBuilder = {
4402
+ withId: (id: string) => ArubaCloudServerBuilder;
4403
+ withVersion: (major: number, minor: number, patch: number) => ArubaCloudServerBuilder;
4404
+ withDisplayName: (displayName: string) => ArubaCloudServerBuilder;
4405
+ withDescription: (description: string) => ArubaCloudServerBuilder;
4406
+ withFlavorName: (flavorName: string) => ArubaCloudServerBuilder;
4407
+ withBootVolume: (bootVolume: string) => ArubaCloudServerBuilder;
4408
+ withUserData: (userData: string) => ArubaCloudServerBuilder;
4409
+ build: () => LiveSystemComponent;
4410
+ };
4411
+ type ArubaCloudServerConfig = {
4412
+ id: string;
4413
+ version: {
4414
+ major: number;
4415
+ minor: number;
4416
+ patch: number;
4417
+ };
4418
+ displayName: string;
4419
+ description?: string;
4420
+ flavorName?: string;
4421
+ bootVolume?: string;
4422
+ userData?: string;
4423
+ };
4424
+ declare namespace ArubaCloudServer {
4425
+ const getBuilder: () => ArubaCloudServerBuilder;
4426
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedArubaCloudServerBuilder;
4427
+ const create: (config: ArubaCloudServerConfig) => LiveSystemComponent;
4428
+ }
4429
+ //#endregion
4430
+ //#region src/live_system/component/network_and_compute/iaas/aruba_vpc_peering.d.ts
4431
+ type ArubaVpcPeeringBuilder = {
4432
+ withId: (id: string) => ArubaVpcPeeringBuilder;
4433
+ withVersion: (major: number, minor: number, patch: number) => ArubaVpcPeeringBuilder;
4434
+ withDisplayName: (displayName: string) => ArubaVpcPeeringBuilder;
4435
+ withDescription: (description: string) => ArubaVpcPeeringBuilder;
4436
+ withPeerVpcId: (peerVpcId: string) => ArubaVpcPeeringBuilder;
4437
+ build: () => LiveSystemComponent;
4438
+ };
4439
+ type ArubaVpcPeeringConfig = {
4440
+ id: string;
4441
+ version: {
4442
+ major: number;
4443
+ minor: number;
4444
+ patch: number;
4445
+ };
4446
+ displayName: string;
4447
+ description?: string;
4448
+ peerVpcId: string;
4449
+ };
4450
+ declare namespace ArubaVpcPeering {
4451
+ const getBuilder: () => ArubaVpcPeeringBuilder;
4452
+ const create: (config: ArubaVpcPeeringConfig) => LiveSystemComponent;
4453
+ }
4454
+ //#endregion
4455
+ //#region src/live_system/component/network_and_compute/iaas/aruba_vpn_tunnel.d.ts
4456
+ type ArubaVpnTunnelBuilder = {
4457
+ withId: (id: string) => ArubaVpnTunnelBuilder;
4458
+ withVersion: (major: number, minor: number, patch: number) => ArubaVpnTunnelBuilder;
4459
+ withDisplayName: (displayName: string) => ArubaVpnTunnelBuilder;
4460
+ withDescription: (description: string) => ArubaVpnTunnelBuilder;
4461
+ withPeerPublicIp: (ip: string) => ArubaVpnTunnelBuilder;
4462
+ withPresharedKey: (key: string) => ArubaVpnTunnelBuilder;
4463
+ withSubnetCidr: (cidr: string) => ArubaVpnTunnelBuilder;
4464
+ build: () => LiveSystemComponent;
4465
+ };
4466
+ type ArubaVpnTunnelConfig = {
4467
+ id: string;
4468
+ version: {
4469
+ major: number;
4470
+ minor: number;
4471
+ patch: number;
4472
+ };
4473
+ displayName: string;
4474
+ description?: string;
4475
+ peerPublicIp?: string;
4476
+ presharedKey?: string;
4477
+ subnetCidr?: string;
4478
+ };
4479
+ declare namespace ArubaVpnTunnel {
4480
+ const getBuilder: () => ArubaVpnTunnelBuilder;
4481
+ const create: (config: ArubaVpnTunnelConfig) => LiveSystemComponent;
4482
+ }
4483
+ //#endregion
4484
+ //#region src/live_system/component/network_and_compute/iaas/aruba_elastic_ip.d.ts
4485
+ type ArubaElasticIpBuilder = {
4486
+ withId: (id: string) => ArubaElasticIpBuilder;
4487
+ withVersion: (major: number, minor: number, patch: number) => ArubaElasticIpBuilder;
4488
+ withDisplayName: (displayName: string) => ArubaElasticIpBuilder;
4489
+ withDescription: (description: string) => ArubaElasticIpBuilder;
4490
+ build: () => LiveSystemComponent;
4491
+ };
4492
+ type ArubaElasticIpConfig = {
4493
+ id: string;
4494
+ version: {
4495
+ major: number;
4496
+ minor: number;
4497
+ patch: number;
4498
+ };
4499
+ displayName: string;
4500
+ description?: string;
4501
+ };
4502
+ declare namespace ArubaElasticIp {
4503
+ const getBuilder: () => ArubaElasticIpBuilder;
4504
+ const create: (config: ArubaElasticIpConfig) => LiveSystemComponent;
4505
+ }
4506
+ //#endregion
4507
+ //#region src/live_system/component/network_and_compute/paas/aruba_kaas.d.ts
4508
+ type SatisfiedArubaKaaSBuilder = {
4509
+ withKubernetesVersion: (version: string) => SatisfiedArubaKaaSBuilder;
4510
+ withHa: (ha: boolean) => SatisfiedArubaKaaSBuilder;
4511
+ withNodePoolFlavor: (flavor: string) => SatisfiedArubaKaaSBuilder;
4512
+ withNodePoolCount: (count: number) => SatisfiedArubaKaaSBuilder;
4513
+ withLocation: (location: string) => SatisfiedArubaKaaSBuilder;
4514
+ build: () => LiveSystemComponent;
4515
+ };
4516
+ type ArubaKaaSBuilder = {
4517
+ withId: (id: string) => ArubaKaaSBuilder;
4518
+ withVersion: (major: number, minor: number, patch: number) => ArubaKaaSBuilder;
4519
+ withDisplayName: (displayName: string) => ArubaKaaSBuilder;
4520
+ withDescription: (description: string) => ArubaKaaSBuilder;
4521
+ withKubernetesVersion: (version: string) => ArubaKaaSBuilder;
4522
+ withHa: (ha: boolean) => ArubaKaaSBuilder;
4523
+ withNodePoolFlavor: (flavor: string) => ArubaKaaSBuilder;
4524
+ withNodePoolCount: (count: number) => ArubaKaaSBuilder;
4525
+ withLocation: (location: string) => ArubaKaaSBuilder;
4526
+ build: () => LiveSystemComponent;
4527
+ };
4528
+ type ArubaKaaSConfig = {
4529
+ id: string;
4530
+ version: {
4531
+ major: number;
4532
+ minor: number;
4533
+ patch: number;
4534
+ };
4535
+ displayName: string;
4536
+ description?: string;
4537
+ kubernetesVersion?: string;
4538
+ ha?: boolean;
4539
+ nodePoolFlavor?: string;
4540
+ nodePoolCount?: number;
4541
+ location?: string;
4542
+ };
4543
+ declare namespace ArubaKaaS {
4544
+ const getBuilder: () => ArubaKaaSBuilder;
4545
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedArubaKaaSBuilder;
4546
+ const create: (config: ArubaKaaSConfig) => LiveSystemComponent;
4547
+ }
4548
+ //#endregion
4549
+ //#region src/live_system/component/network_and_compute/paas/aruba_container_registry.d.ts
4550
+ type ArubaContainerRegistryBuilder = {
4551
+ withId: (id: string) => ArubaContainerRegistryBuilder;
4552
+ withVersion: (major: number, minor: number, patch: number) => ArubaContainerRegistryBuilder;
4553
+ withDisplayName: (displayName: string) => ArubaContainerRegistryBuilder;
4554
+ withDescription: (description: string) => ArubaContainerRegistryBuilder;
4555
+ withSize: (size: string) => ArubaContainerRegistryBuilder;
4556
+ build: () => LiveSystemComponent;
4557
+ };
4558
+ type ArubaContainerRegistryConfig = {
4559
+ id: string;
4560
+ version: {
4561
+ major: number;
4562
+ minor: number;
4563
+ patch: number;
4564
+ };
4565
+ displayName: string;
4566
+ description?: string;
4567
+ size?: string;
4568
+ };
4569
+ declare namespace ArubaContainerRegistry {
4570
+ const getBuilder: () => ArubaContainerRegistryBuilder;
4571
+ const create: (config: ArubaContainerRegistryConfig) => LiveSystemComponent;
4572
+ }
4573
+ //#endregion
4574
+ //#region src/live_system/component/storage/iaas/aruba_block_storage.d.ts
4575
+ type ArubaBlockStorageBuilder = {
4576
+ withId: (id: string) => ArubaBlockStorageBuilder;
4577
+ withVersion: (major: number, minor: number, patch: number) => ArubaBlockStorageBuilder;
4578
+ withDisplayName: (displayName: string) => ArubaBlockStorageBuilder;
4579
+ withDescription: (description: string) => ArubaBlockStorageBuilder;
4580
+ withSizeGb: (sizeGb: number) => ArubaBlockStorageBuilder;
4581
+ withStorageType: (storageType: string) => ArubaBlockStorageBuilder;
4582
+ build: () => LiveSystemComponent;
4583
+ };
4584
+ type ArubaBlockStorageConfig = {
4585
+ id: string;
4586
+ version: {
4587
+ major: number;
4588
+ minor: number;
4589
+ patch: number;
4590
+ };
4591
+ displayName: string;
4592
+ description?: string;
4593
+ sizeGb: number;
4594
+ storageType?: string;
4595
+ };
4596
+ declare namespace ArubaBlockStorage {
4597
+ const getBuilder: () => ArubaBlockStorageBuilder;
4598
+ const create: (config: ArubaBlockStorageConfig) => LiveSystemComponent;
4599
+ }
4600
+ //#endregion
4601
+ //#region src/live_system/component/storage/paas/aruba_mysql_dbms.d.ts
4602
+ type SatisfiedArubaMySqlDbmsBuilder = {
4603
+ withFlavorName: (flavorName: string) => SatisfiedArubaMySqlDbmsBuilder;
4604
+ build: () => LiveSystemComponent;
4605
+ };
4606
+ type ArubaMySqlDbmsBuilder = {
4607
+ withId: (id: string) => ArubaMySqlDbmsBuilder;
4608
+ withVersion: (major: number, minor: number, patch: number) => ArubaMySqlDbmsBuilder;
4609
+ withDisplayName: (displayName: string) => ArubaMySqlDbmsBuilder;
4610
+ withDescription: (description: string) => ArubaMySqlDbmsBuilder;
4611
+ withDbVersion: (version: string) => ArubaMySqlDbmsBuilder;
4612
+ withFlavorName: (flavorName: string) => ArubaMySqlDbmsBuilder;
4613
+ build: () => LiveSystemComponent;
4614
+ };
4615
+ type ArubaMySqlDbmsConfig = {
4616
+ id: string;
4617
+ version: {
4618
+ major: number;
4619
+ minor: number;
4620
+ patch: number;
4621
+ };
4622
+ displayName: string;
4623
+ description?: string;
4624
+ dbVersion?: string;
4625
+ flavorName?: string;
4626
+ };
4627
+ declare namespace ArubaMySqlDbms {
4628
+ const getBuilder: () => ArubaMySqlDbmsBuilder;
4629
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedArubaMySqlDbmsBuilder;
4630
+ const create: (config: ArubaMySqlDbmsConfig) => LiveSystemComponent;
4631
+ }
4632
+ //#endregion
4633
+ //#region src/live_system/component/storage/paas/aruba_mssql_dbms.d.ts
4634
+ type SatisfiedArubaMsSqlDbmsBuilder = {
4635
+ withFlavorName: (flavorName: string) => SatisfiedArubaMsSqlDbmsBuilder;
4636
+ build: () => LiveSystemComponent;
4637
+ };
4638
+ type ArubaMsSqlDbmsBuilder = {
4639
+ withId: (id: string) => ArubaMsSqlDbmsBuilder;
4640
+ withVersion: (major: number, minor: number, patch: number) => ArubaMsSqlDbmsBuilder;
4641
+ withDisplayName: (displayName: string) => ArubaMsSqlDbmsBuilder;
4642
+ withDescription: (description: string) => ArubaMsSqlDbmsBuilder;
4643
+ withDbVersion: (version: string) => ArubaMsSqlDbmsBuilder;
4644
+ withFlavorName: (flavorName: string) => ArubaMsSqlDbmsBuilder;
4645
+ build: () => LiveSystemComponent;
4646
+ };
4647
+ type ArubaMsSqlDbmsConfig = {
4648
+ id: string;
4649
+ version: {
4650
+ major: number;
4651
+ minor: number;
4652
+ patch: number;
4653
+ };
4654
+ displayName: string;
4655
+ description?: string;
4656
+ dbVersion?: string;
4657
+ flavorName?: string;
4658
+ };
4659
+ declare namespace ArubaMsSqlDbms {
4660
+ const getBuilder: () => ArubaMsSqlDbmsBuilder;
4661
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedArubaMsSqlDbmsBuilder;
4662
+ const create: (config: ArubaMsSqlDbmsConfig) => LiveSystemComponent;
4663
+ }
4664
+ //#endregion
4665
+ //#region src/live_system/component/storage/paas/aruba_object_storage_account.d.ts
4666
+ type SatisfiedArubaObjectStorageAccountBuilder = {
4667
+ withAccountName: (accountName: string) => SatisfiedArubaObjectStorageAccountBuilder;
4668
+ withPassword: (password: string) => SatisfiedArubaObjectStorageAccountBuilder;
4669
+ withRegionCode: (regionCode: string) => SatisfiedArubaObjectStorageAccountBuilder;
4670
+ build: () => LiveSystemComponent;
4671
+ };
4672
+ type ArubaObjectStorageAccountBuilder = {
4673
+ withId: (id: string) => ArubaObjectStorageAccountBuilder;
4674
+ withVersion: (major: number, minor: number, patch: number) => ArubaObjectStorageAccountBuilder;
4675
+ withDisplayName: (displayName: string) => ArubaObjectStorageAccountBuilder;
4676
+ withDescription: (description: string) => ArubaObjectStorageAccountBuilder;
4677
+ withAccountName: (accountName: string) => ArubaObjectStorageAccountBuilder;
4678
+ withPassword: (password: string) => ArubaObjectStorageAccountBuilder;
4679
+ withRegionCode: (regionCode: string) => ArubaObjectStorageAccountBuilder;
4680
+ build: () => LiveSystemComponent;
4681
+ };
4682
+ type ArubaObjectStorageAccountConfig = {
4683
+ id: string;
4684
+ version: {
4685
+ major: number;
4686
+ minor: number;
4687
+ patch: number;
4688
+ };
4689
+ displayName: string;
4690
+ description?: string;
4691
+ accountName?: string;
4692
+ password: string;
4693
+ regionCode?: string;
4694
+ };
4695
+ declare namespace ArubaObjectStorageAccount {
4696
+ const getBuilder: () => ArubaObjectStorageAccountBuilder;
4697
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedArubaObjectStorageAccountBuilder;
4698
+ const create: (config: ArubaObjectStorageAccountConfig) => LiveSystemComponent;
4699
+ }
4700
+ //#endregion
4701
+ //#region src/live_system/component/custom_workloads/caas/caas_k8s_workload.d.ts
4702
+ type SatisfiedCaaSK8sWorkloadBuilder = {
4703
+ withReplicas: (replicas: number) => SatisfiedCaaSK8sWorkloadBuilder;
4704
+ /**
4705
+ * OCI artifact URI carrying a `.fractal/` bundle.
4706
+ *
4707
+ * Format: `<registry>/<repo>:<tag>` or `<registry>/<repo>@sha256:<digest>`.
4708
+ * The bundle must contain `<componentId>-fdeploy.yaml` for this workload
4709
+ * and a `fractal-parameters.yml` with an entry whose `name` matches the
4710
+ * LiveSystem's environment short-name. SDK-derived fields (replicas,
4711
+ * containerImage, etc.) overlay onto whichever workload-shaped doc the
4712
+ * bundle declares (Deployment, StatefulSet, DaemonSet, ...).
4713
+ *
4714
+ * Optional. When omitted, the agent generates a Deployment from SDK
4715
+ * params alone. There is intentionally no default location — devs name
4716
+ * artifacts however they want.
4717
+ */
4718
+ withManifestUri: (uri: string) => SatisfiedCaaSK8sWorkloadBuilder;
4719
+ build: () => LiveSystemComponent;
4720
+ };
4721
+ type CaaSK8sWorkloadBuilder = {
4722
+ withId: (id: string) => CaaSK8sWorkloadBuilder;
4723
+ withVersion: (major: number, minor: number, patch: number) => CaaSK8sWorkloadBuilder;
4724
+ withDisplayName: (displayName: string) => CaaSK8sWorkloadBuilder;
4725
+ withDescription: (description: string) => CaaSK8sWorkloadBuilder;
4726
+ withContainerImage: (image: string) => CaaSK8sWorkloadBuilder;
4727
+ withContainerPort: (port: number) => CaaSK8sWorkloadBuilder;
4728
+ withCpu: (cpu: string) => CaaSK8sWorkloadBuilder;
4729
+ withMemory: (memory: string) => CaaSK8sWorkloadBuilder;
4730
+ withReplicas: (replicas: number) => CaaSK8sWorkloadBuilder; /** See SatisfiedCaaSK8sWorkloadBuilder.withManifestUri. */
4731
+ withManifestUri: (uri: string) => CaaSK8sWorkloadBuilder;
4732
+ build: () => LiveSystemComponent;
4733
+ };
4734
+ type CaaSK8sWorkloadConfig = {
4735
+ id: string;
4736
+ version: {
4737
+ major: number;
4738
+ minor: number;
4739
+ patch: number;
4740
+ };
4741
+ displayName: string;
4742
+ description?: string;
4743
+ containerImage?: string;
4744
+ containerPort?: number;
4745
+ cpu?: string;
4746
+ memory?: string;
4747
+ replicas?: number; /** OCI artifact URI of the `.fractal/` bundle. See builder docs. */
4748
+ manifestUri?: string;
4749
+ };
4750
+ declare namespace CaaSK8sWorkload {
4751
+ const getBuilder: () => CaaSK8sWorkloadBuilder;
4752
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedCaaSK8sWorkloadBuilder;
4753
+ const create: (config: CaaSK8sWorkloadConfig) => LiveSystemComponent;
4754
+ }
4755
+ //#endregion
4170
4756
  //#region src/fractal/component/storage/paas/files_and_blobs.d.ts
4171
4757
  type FilesAndBlobsComponent = {
4172
4758
  readonly component: BlueprintComponent;
@@ -6072,7 +6658,12 @@ type DataProcessingJobBuilder = {
6072
6658
  withParameters: (params: string[]) => DataProcessingJobBuilder;
6073
6659
  withCronSchedule: (cron: string) => DataProcessingJobBuilder;
6074
6660
  withMaxRetries: (retries: number) => DataProcessingJobBuilder;
6075
- withExistingCluster: (useExisting: boolean) => DataProcessingJobBuilder;
6661
+ withExistingCluster: (useExisting: boolean) => DataProcessingJobBuilder; /** Vendor-agnostic Python wheel execution. The agent downloads from artifactUri and wraps for the runtime. */
6662
+ withArtifactType: (type: string) => DataProcessingJobBuilder;
6663
+ withArtifactUri: (uri: string) => DataProcessingJobBuilder;
6664
+ withPackageName: (name: string) => DataProcessingJobBuilder;
6665
+ withEntryPoint: (entry: string) => DataProcessingJobBuilder;
6666
+ withEntryPointArgs: (args: string[]) => DataProcessingJobBuilder;
6076
6667
  build: () => BlueprintComponent;
6077
6668
  };
6078
6669
  type DataProcessingJobConfig = {
@@ -6094,6 +6685,11 @@ type DataProcessingJobConfig = {
6094
6685
  cronSchedule?: string;
6095
6686
  maxRetries?: number;
6096
6687
  existingCluster?: boolean;
6688
+ artifactType?: string;
6689
+ artifactUri?: string;
6690
+ packageName?: string;
6691
+ entryPoint?: string;
6692
+ entryPointArgs?: string[];
6097
6693
  };
6098
6694
  declare namespace DataProcessingJob {
6099
6695
  const getBuilder: () => DataProcessingJobBuilder;
@@ -6828,19 +7424,36 @@ declare namespace BigDataSaaSUnmanaged {
6828
7424
  const create: (config: BigDataSaaSUnmanagedConfig) => LiveSystemComponent;
6829
7425
  }
6830
7426
  //#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>;
7427
+ //#region src/live_system/component/storage/caas/caas_minio_tenant.d.ts
7428
+ type SatisfiedCaaSMinioTenantBuilder = {
7429
+ withNamespace: (ns: string) => SatisfiedCaaSMinioTenantBuilder;
7430
+ withTenantName: (name: string) => SatisfiedCaaSMinioTenantBuilder;
7431
+ withBucketName: (bucket: string) => SatisfiedCaaSMinioTenantBuilder;
7432
+ withMinioVersion: (version: string) => SatisfiedCaaSMinioTenantBuilder;
7433
+ withServers: (servers: number) => SatisfiedCaaSMinioTenantBuilder;
7434
+ withVolumesPerServer: (volumesPerServer: number) => SatisfiedCaaSMinioTenantBuilder;
7435
+ withVolumeSize: (size: string) => SatisfiedCaaSMinioTenantBuilder;
7436
+ withStorageClass: (storageClass: string) => SatisfiedCaaSMinioTenantBuilder;
7437
+ withRequestAutoCert: (requestAutoCert: boolean) => SatisfiedCaaSMinioTenantBuilder;
7438
+ build: () => LiveSystemComponent;
6835
7439
  };
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;
7440
+ type CaaSMinioTenantBuilder = {
7441
+ withId: (id: string) => CaaSMinioTenantBuilder;
7442
+ withVersion: (major: number, minor: number, patch: number) => CaaSMinioTenantBuilder;
7443
+ withDisplayName: (displayName: string) => CaaSMinioTenantBuilder;
7444
+ withDescription: (description: string) => CaaSMinioTenantBuilder;
7445
+ withNamespace: (ns: string) => CaaSMinioTenantBuilder;
7446
+ withTenantName: (name: string) => CaaSMinioTenantBuilder;
7447
+ withBucketName: (bucket: string) => CaaSMinioTenantBuilder;
7448
+ withMinioVersion: (version: string) => CaaSMinioTenantBuilder;
7449
+ withServers: (servers: number) => CaaSMinioTenantBuilder;
7450
+ withVolumesPerServer: (volumesPerServer: number) => CaaSMinioTenantBuilder;
7451
+ withVolumeSize: (size: string) => CaaSMinioTenantBuilder;
7452
+ withStorageClass: (storageClass: string) => CaaSMinioTenantBuilder;
7453
+ withRequestAutoCert: (requestAutoCert: boolean) => CaaSMinioTenantBuilder;
7454
+ build: () => LiveSystemComponent;
6842
7455
  };
6843
- type PaaSApiGatewayConfig = {
7456
+ type CaaSMinioTenantConfig = {
6844
7457
  id: string;
6845
7458
  version: {
6846
7459
  major: number;
@@ -6849,25 +7462,182 @@ type PaaSApiGatewayConfig = {
6849
7462
  };
6850
7463
  displayName: string;
6851
7464
  description?: string;
7465
+ namespace?: string;
7466
+ tenantName?: string;
7467
+ bucketName?: string;
7468
+ minioVersion?: string;
7469
+ servers?: number;
7470
+ volumesPerServer?: number;
7471
+ volumeSize?: string;
7472
+ storageClass?: string;
7473
+ requestAutoCert?: boolean;
6852
7474
  };
6853
- declare namespace PaaSApiGateway {
6854
- const getBuilder: () => PaaSApiGatewayBuilder;
6855
- const create: (config: PaaSApiGatewayConfig) => PaaSApiGatewayComponent;
7475
+ declare namespace CaaSMinioTenant {
7476
+ const getBuilder: () => CaaSMinioTenantBuilder;
7477
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedCaaSMinioTenantBuilder;
7478
+ const create: (config: CaaSMinioTenantConfig) => LiveSystemComponent;
6856
7479
  }
6857
7480
  //#endregion
6858
- //#region src/fractal/component/api_management/caas/api_gateway.d.ts
6859
- type CaaSApiGatewayComponent = {
7481
+ //#region src/live_system/component/big_data/caas/caas_spark_operator.d.ts
7482
+ type SatisfiedCaaSSparkOperatorBuilder = {
7483
+ withNamespace: (ns: string) => SatisfiedCaaSSparkOperatorBuilder;
7484
+ withWebhookEnabled: (enabled: boolean) => SatisfiedCaaSSparkOperatorBuilder;
7485
+ build: () => LiveSystemComponent;
7486
+ };
7487
+ type CaaSSparkOperatorBuilder = {
7488
+ withId: (id: string) => CaaSSparkOperatorBuilder;
7489
+ withVersion: (major: number, minor: number, patch: number) => CaaSSparkOperatorBuilder;
7490
+ withDisplayName: (displayName: string) => CaaSSparkOperatorBuilder;
7491
+ withDescription: (description: string) => CaaSSparkOperatorBuilder;
7492
+ withNamespace: (ns: string) => CaaSSparkOperatorBuilder;
7493
+ withWebhookEnabled: (enabled: boolean) => CaaSSparkOperatorBuilder;
7494
+ build: () => LiveSystemComponent;
7495
+ };
7496
+ type CaaSSparkOperatorConfig = {
7497
+ id: string;
7498
+ version: {
7499
+ major: number;
7500
+ minor: number;
7501
+ patch: number;
7502
+ };
7503
+ displayName: string;
7504
+ description?: string;
7505
+ namespace?: string;
7506
+ webhookEnabled?: boolean;
7507
+ };
7508
+ declare namespace CaaSSparkOperator {
7509
+ const getBuilder: () => CaaSSparkOperatorBuilder;
7510
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedCaaSSparkOperatorBuilder;
7511
+ const create: (config: CaaSSparkOperatorConfig) => LiveSystemComponent;
7512
+ }
7513
+ //#endregion
7514
+ //#region src/live_system/component/big_data/caas/caas_spark_cluster.d.ts
7515
+ type SatisfiedCaaSSparkClusterBuilder = {
7516
+ withDriverCores: (cores: string) => SatisfiedCaaSSparkClusterBuilder;
7517
+ withDriverMemory: (memory: string) => SatisfiedCaaSSparkClusterBuilder;
7518
+ withExecutorCores: (cores: string) => SatisfiedCaaSSparkClusterBuilder;
7519
+ withExecutorMemory: (memory: string) => SatisfiedCaaSSparkClusterBuilder;
7520
+ withExecutorInstances: (count: number) => SatisfiedCaaSSparkClusterBuilder;
7521
+ build: () => LiveSystemComponent;
7522
+ };
7523
+ type CaaSSparkClusterBuilder = {
7524
+ withId: (id: string) => CaaSSparkClusterBuilder;
7525
+ withVersion: (major: number, minor: number, patch: number) => CaaSSparkClusterBuilder;
7526
+ withDisplayName: (displayName: string) => CaaSSparkClusterBuilder;
7527
+ withDescription: (description: string) => CaaSSparkClusterBuilder;
7528
+ withDriverCores: (cores: string) => CaaSSparkClusterBuilder;
7529
+ withDriverMemory: (memory: string) => CaaSSparkClusterBuilder;
7530
+ withExecutorCores: (cores: string) => CaaSSparkClusterBuilder;
7531
+ withExecutorMemory: (memory: string) => CaaSSparkClusterBuilder;
7532
+ withExecutorInstances: (count: number) => CaaSSparkClusterBuilder;
7533
+ build: () => LiveSystemComponent;
7534
+ };
7535
+ type CaaSSparkClusterConfig = {
7536
+ id: string;
7537
+ version: {
7538
+ major: number;
7539
+ minor: number;
7540
+ patch: number;
7541
+ };
7542
+ displayName: string;
7543
+ description?: string;
7544
+ driverCores?: string;
7545
+ driverMemory?: string;
7546
+ executorCores?: string;
7547
+ executorMemory?: string;
7548
+ executorInstances?: number;
7549
+ };
7550
+ declare namespace CaaSSparkCluster {
7551
+ const getBuilder: () => CaaSSparkClusterBuilder;
7552
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedCaaSSparkClusterBuilder;
7553
+ const create: (config: CaaSSparkClusterConfig) => LiveSystemComponent;
7554
+ }
7555
+ //#endregion
7556
+ //#region src/live_system/component/big_data/caas/caas_spark_job.d.ts
7557
+ type SatisfiedCaaSSparkJobBuilder = {
7558
+ withSchedule: (schedule: string) => SatisfiedCaaSSparkJobBuilder;
7559
+ withJarUri: (jarUri: string) => SatisfiedCaaSSparkJobBuilder;
7560
+ withMainClass: (mainClass: string) => SatisfiedCaaSSparkJobBuilder;
7561
+ build: () => LiveSystemComponent;
7562
+ };
7563
+ type CaaSSparkJobBuilder = {
7564
+ withId: (id: string) => CaaSSparkJobBuilder;
7565
+ withVersion: (major: number, minor: number, patch: number) => CaaSSparkJobBuilder;
7566
+ withDisplayName: (displayName: string) => CaaSSparkJobBuilder;
7567
+ withDescription: (description: string) => CaaSSparkJobBuilder;
7568
+ withSchedule: (schedule: string) => CaaSSparkJobBuilder;
7569
+ withJarUri: (jarUri: string) => CaaSSparkJobBuilder;
7570
+ withMainClass: (mainClass: string) => CaaSSparkJobBuilder;
7571
+ build: () => LiveSystemComponent;
7572
+ };
7573
+ type CaaSSparkJobConfig = {
7574
+ id: string;
7575
+ version: {
7576
+ major: number;
7577
+ minor: number;
7578
+ patch: number;
7579
+ };
7580
+ displayName: string;
7581
+ description?: string;
7582
+ schedule?: string;
7583
+ jarUri?: string;
7584
+ mainClass?: string;
7585
+ };
7586
+ declare namespace CaaSSparkJob {
7587
+ const getBuilder: () => CaaSSparkJobBuilder;
7588
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedCaaSSparkJobBuilder;
7589
+ const create: (config: CaaSSparkJobConfig) => LiveSystemComponent;
7590
+ }
7591
+ //#endregion
7592
+ //#region src/live_system/component/big_data/caas/caas_mlflow.d.ts
7593
+ type SatisfiedCaaSMlflowBuilder = {
7594
+ withNamespace: (ns: string) => SatisfiedCaaSMlflowBuilder;
7595
+ withTrackingUri: (uri: string) => SatisfiedCaaSMlflowBuilder;
7596
+ withArtifactRoot: (root: string) => SatisfiedCaaSMlflowBuilder;
7597
+ build: () => LiveSystemComponent;
7598
+ };
7599
+ type CaaSMlflowBuilder = {
7600
+ withId: (id: string) => CaaSMlflowBuilder;
7601
+ withVersion: (major: number, minor: number, patch: number) => CaaSMlflowBuilder;
7602
+ withDisplayName: (displayName: string) => CaaSMlflowBuilder;
7603
+ withDescription: (description: string) => CaaSMlflowBuilder;
7604
+ withNamespace: (ns: string) => CaaSMlflowBuilder;
7605
+ withTrackingUri: (uri: string) => CaaSMlflowBuilder;
7606
+ withArtifactRoot: (root: string) => CaaSMlflowBuilder;
7607
+ build: () => LiveSystemComponent;
7608
+ };
7609
+ type CaaSMlflowConfig = {
7610
+ id: string;
7611
+ version: {
7612
+ major: number;
7613
+ minor: number;
7614
+ patch: number;
7615
+ };
7616
+ displayName: string;
7617
+ description?: string;
7618
+ namespace?: string;
7619
+ trackingUri?: string;
7620
+ artifactRoot?: string;
7621
+ };
7622
+ declare namespace CaaSMlflow {
7623
+ const getBuilder: () => CaaSMlflowBuilder;
7624
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedCaaSMlflowBuilder;
7625
+ const create: (config: CaaSMlflowConfig) => LiveSystemComponent;
7626
+ }
7627
+ //#endregion
7628
+ //#region src/fractal/component/api_management/paas/api_gateway.d.ts
7629
+ type PaaSApiGatewayComponent = {
6860
7630
  readonly component: BlueprintComponent;
6861
7631
  readonly components: ReadonlyArray<BlueprintComponent>;
6862
7632
  };
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;
7633
+ type PaaSApiGatewayBuilder = {
7634
+ withId: (id: string) => PaaSApiGatewayBuilder;
7635
+ withVersion: (major: number, minor: number, patch: number) => PaaSApiGatewayBuilder;
7636
+ withDisplayName: (displayName: string) => PaaSApiGatewayBuilder;
7637
+ withDescription: (description: string) => PaaSApiGatewayBuilder;
6868
7638
  build: () => BlueprintComponent;
6869
7639
  };
6870
- type CaaSApiGatewayConfig = {
7640
+ type PaaSApiGatewayConfig = {
6871
7641
  id: string;
6872
7642
  version: {
6873
7643
  major: number;
@@ -6877,9 +7647,9 @@ type CaaSApiGatewayConfig = {
6877
7647
  displayName: string;
6878
7648
  description?: string;
6879
7649
  };
6880
- declare namespace CaaSApiGateway {
6881
- const getBuilder: () => CaaSApiGatewayBuilder;
6882
- const create: (config: CaaSApiGatewayConfig) => CaaSApiGatewayComponent;
7650
+ declare namespace PaaSApiGateway {
7651
+ const getBuilder: () => PaaSApiGatewayBuilder;
7652
+ const create: (config: PaaSApiGatewayConfig) => PaaSApiGatewayComponent;
6883
7653
  }
6884
7654
  //#endregion
6885
7655
  //#region src/fractal/component/api_management/saas/unmanaged.d.ts
@@ -7646,4 +8416,4 @@ declare const LiveSystem: typeof LiveSystem$1;
7646
8416
  type LiveSystem = LiveSystem$1;
7647
8417
  declare const Custom: typeof Custom$1;
7648
8418
  //#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 };
8419
+ export { Ambassador, type AmbassadorBuilder, type AmbassadorConfig, 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, 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 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 WorkloadBuilder, type WorkloadComponent, type WorkloadConfig, type WorkloadPortLink };