@fractal_cloud/sdk 1.3.0 → 1.4.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.cts CHANGED
@@ -448,28 +448,29 @@ declare namespace PascalCaseString$1 {
448
448
  //#endregion
449
449
  //#region src/values/infrastructure_domain.d.ts
450
450
  /**
451
- * Enumeration representing various infrastructure domains.
452
- * These domains categorize components or services
451
+ * Known infrastructure domains that categorize components or services
453
452
  * within an infrastructure system.
454
453
  *
455
- * @enum {string}
456
- * @property {string} ApiManagement - Represents API management-related components.
457
- * @property {string} NetworkAndCompute - Represents network and compute components.
458
- * @property {string} CustomWorkloads - Represents custom workload components.
459
- * @property {string} Messaging - Represents messaging and communication components.
460
- * @property {string} Storage - Represents data storage components.
461
- * @property {string} Observability - Represents observability tools and monitoring components.
462
- * @property {string} Security - Represents security-focused components.
463
- */
464
- declare enum InfrastructureDomain$1 {
465
- ApiManagement = "APIManagement",
466
- NetworkAndCompute = "NetworkAndCompute",
467
- CustomWorkloads = "CustomWorkloads",
468
- Messaging = "Messaging",
469
- Storage = "Storage",
470
- Observability = "Observability",
471
- Security = "Security"
472
- }
454
+ * This is an open type — custom aria agents may define additional domains
455
+ * beyond the built-in set. Any string is accepted where an
456
+ * `InfrastructureDomain` is expected; the known values provide
457
+ * autocomplete convenience.
458
+ */
459
+ declare const InfrastructureDomain$1: {
460
+ readonly ApiManagement: "APIManagement";
461
+ readonly BigData: "BigData";
462
+ readonly NetworkAndCompute: "NetworkAndCompute";
463
+ readonly CustomWorkloads: "CustomWorkloads";
464
+ readonly Messaging: "Messaging";
465
+ readonly Storage: "Storage";
466
+ readonly Observability: "Observability";
467
+ readonly Security: "Security";
468
+ };
469
+ /**
470
+ * Any of the built-in infrastructure domain values, or a custom string
471
+ * for domains defined by custom aria agents.
472
+ */
473
+ type InfrastructureDomain$1 = (typeof InfrastructureDomain$1)[keyof typeof InfrastructureDomain$1] | (string & {});
473
474
  //#endregion
474
475
  //#region src/component/type.d.ts
475
476
  /**
@@ -789,23 +790,25 @@ type Component = {
789
790
  //#endregion
790
791
  //#region src/values/service_delivery_model.d.ts
791
792
  /**
792
- * Enum representing the different types of service delivery models in cloud computing.
793
+ * Known service delivery models in cloud computing.
793
794
  *
794
- * @enum {string}
795
- * @readonly
796
- * @property {string} IaaS Infrastructure as a Service - A model that provides virtualized computing infrastructure over the internet.
797
- * @property {string} CaaS Container as a Service - A model focused on deploying and managing containers as a service.
798
- * @property {string} PaaS Platform as a Service - A cloud model that provides a platform allowing users to develop, run, and manage applications without dealing with the underlying infrastructure.
799
- * @property {string} FaaS Function as a Service - A serverless model where cloud functions are executed in response to events.
800
- * @property {string} SaaS Software as a Service - A model in which software applications are delivered over the internet on a subscription basis.
795
+ * This is an open type — custom aria agents may define additional delivery
796
+ * models beyond the built-in set. Any string is accepted where a
797
+ * `ServiceDeliveryModel` is expected; the known values provide
798
+ * autocomplete convenience.
801
799
  */
802
- declare enum ServiceDeliveryModel$1 {
803
- IaaS = "IaaS",
804
- CaaS = "CaaS",
805
- PaaS = "PaaS",
806
- FaaS = "FaaS",
807
- SaaS = "SaaS"
808
- }
800
+ declare const ServiceDeliveryModel$1: {
801
+ readonly IaaS: "IaaS";
802
+ readonly CaaS: "CaaS";
803
+ readonly PaaS: "PaaS";
804
+ readonly FaaS: "FaaS";
805
+ readonly SaaS: "SaaS";
806
+ };
807
+ /**
808
+ * Any of the built-in service delivery model values, or a custom string
809
+ * for models defined by custom aria agents.
810
+ */
811
+ type ServiceDeliveryModel$1 = (typeof ServiceDeliveryModel$1)[keyof typeof ServiceDeliveryModel$1] | (string & {});
809
812
  //#endregion
810
813
  //#region src/fractal/component/type.d.ts
811
814
  /**
@@ -1467,7 +1470,7 @@ type LiveSystemComponentBuilder = {
1467
1470
  //#region src/live_system/component/index.d.ts
1468
1471
  declare namespace LiveSystemComponent {
1469
1472
  type Status = 'Unknown' | 'Instantiating' | 'Active' | 'Failed' | 'Mutating' | 'Deleting' | 'Cancelled';
1470
- type Provider = 'Unknown' | 'AWS' | 'GCP' | 'Azure' | 'OCI' | 'Hetzner' | 'CaaS' | 'SaaS';
1473
+ type Provider = 'Unknown' | 'AWS' | 'GCP' | 'Azure' | 'OCI' | 'Hetzner' | 'CaaS' | 'SaaS' | (string & {});
1471
1474
  type Builder = LiveSystemComponentBuilder;
1472
1475
  const getBuilder: () => LiveSystemComponentBuilder;
1473
1476
  }
@@ -1617,6 +1620,199 @@ type LiveSystem$1 = {
1617
1620
  destroy: (credentials: ServiceAccountCredentials$1) => Promise<void>;
1618
1621
  };
1619
1622
  //#endregion
1623
+ //#region src/custom/types.d.ts
1624
+ /**
1625
+ * Configuration for defining a custom blueprint component factory.
1626
+ * The factory can then be reused to create multiple instances of that
1627
+ * component type.
1628
+ */
1629
+ type CustomBlueprintConfig = {
1630
+ /** Infrastructure domain (e.g. `'Analytics'`, or a built-in like `InfrastructureDomain.Storage`). */domain: string; /** Service delivery model (e.g. `ServiceDeliveryModel.PaaS`, or a custom string). */
1631
+ serviceDeliveryModel: string; /** PascalCase component name (e.g. `'TimeSeriesStore'`). Validated immediately. */
1632
+ name: string;
1633
+ };
1634
+ /**
1635
+ * Configuration for defining a custom live system offer factory.
1636
+ */
1637
+ type CustomOfferConfig = {
1638
+ /** Infrastructure domain. */domain: string; /** Service delivery model. */
1639
+ serviceDeliveryModel: string; /** PascalCase offer name (e.g. `'InfluxDb'`). Validated immediately. */
1640
+ name: string; /** Cloud provider (e.g. `'AWS'`, `'CaaS'`, or a custom string). */
1641
+ provider: string;
1642
+ };
1643
+ /**
1644
+ * Configuration for creating a single custom component instance.
1645
+ */
1646
+ type CustomComponentConfig = {
1647
+ id: string;
1648
+ version: {
1649
+ major: number;
1650
+ minor: number;
1651
+ patch: number;
1652
+ };
1653
+ displayName: string;
1654
+ description?: string;
1655
+ parameters?: Record<string, unknown>;
1656
+ dependencies?: BlueprintComponentDependency[];
1657
+ links?: ComponentLink[];
1658
+ };
1659
+ /**
1660
+ * A reusable factory for creating custom blueprint components of a specific type.
1661
+ * Returned by {@link Custom.blueprint}.
1662
+ *
1663
+ * @example
1664
+ * ```ts
1665
+ * const TimeSeriesStore = Custom.blueprint({
1666
+ * domain: 'Analytics',
1667
+ * serviceDeliveryModel: ServiceDeliveryModel.PaaS,
1668
+ * name: 'TimeSeriesStore',
1669
+ * });
1670
+ *
1671
+ * const tsdb = TimeSeriesStore.create({
1672
+ * id: 'metrics-db',
1673
+ * version: { major: 1, minor: 0, patch: 0 },
1674
+ * displayName: 'Metrics Database',
1675
+ * parameters: { retentionDays: '90' },
1676
+ * });
1677
+ * ```
1678
+ */
1679
+ type CustomBlueprintFactory = {
1680
+ /** Create a blueprint component with the given configuration. */create(config: CustomComponentConfig): BlueprintComponent; /** Get a fluent builder for more advanced construction. */
1681
+ getBuilder(): CustomBlueprintBuilder; /** The full type string, e.g. `"Analytics.PaaS.TimeSeriesStore"`. */
1682
+ readonly typeString: string;
1683
+ };
1684
+ /**
1685
+ * Fluent builder for custom blueprint components.
1686
+ * Pre-configured with the component type from the factory.
1687
+ */
1688
+ type CustomBlueprintBuilder = {
1689
+ withId(id: string): CustomBlueprintBuilder;
1690
+ withVersion(major: number, minor: number, patch: number): CustomBlueprintBuilder;
1691
+ withDisplayName(displayName: string): CustomBlueprintBuilder;
1692
+ withDescription(description: string): CustomBlueprintBuilder;
1693
+ withParameter(key: string, value: unknown): CustomBlueprintBuilder;
1694
+ withParameters(params: Record<string, unknown>): CustomBlueprintBuilder;
1695
+ withDependencies(deps: BlueprintComponentDependency[]): CustomBlueprintBuilder;
1696
+ withLinks(links: ComponentLink[]): CustomBlueprintBuilder;
1697
+ withIsLocked(value: boolean): CustomBlueprintBuilder;
1698
+ withRecreateOnFailure(value: boolean): CustomBlueprintBuilder;
1699
+ build(): BlueprintComponent;
1700
+ };
1701
+ /**
1702
+ * A reusable factory for creating custom live system offer components.
1703
+ * Returned by {@link Custom.offer}.
1704
+ *
1705
+ * @example
1706
+ * ```ts
1707
+ * const InfluxDb = Custom.offer({
1708
+ * domain: 'Analytics',
1709
+ * serviceDeliveryModel: ServiceDeliveryModel.PaaS,
1710
+ * name: 'InfluxDb',
1711
+ * provider: 'CaaS',
1712
+ * });
1713
+ *
1714
+ * // Satisfy a blueprint component:
1715
+ * const influx = InfluxDb.satisfy(metricsDb)
1716
+ * .withParameter('bucket', 'metrics')
1717
+ * .build();
1718
+ * ```
1719
+ */
1720
+ type CustomOfferFactory = {
1721
+ /** Create a live system component with the given configuration. */create(config: CustomComponentConfig): LiveSystemComponent; /** Get a fluent builder for more advanced construction. */
1722
+ getBuilder(): CustomOfferBuilder;
1723
+ /**
1724
+ * Initialise from a blueprint component. Returns a sealed builder that
1725
+ * locks structural fields (id, version, displayName, description,
1726
+ * dependencies, links, and blueprint parameters) and only exposes
1727
+ * vendor-specific parameter setters.
1728
+ */
1729
+ satisfy(blueprint: BlueprintComponent): CustomSatisfiedBuilder; /** The full type string, e.g. `"Analytics.PaaS.InfluxDb"`. */
1730
+ readonly typeString: string;
1731
+ };
1732
+ /**
1733
+ * Fluent builder for custom live system offer components.
1734
+ * Pre-configured with the component type and provider from the factory.
1735
+ */
1736
+ type CustomOfferBuilder = {
1737
+ withId(id: string): CustomOfferBuilder;
1738
+ withVersion(major: number, minor: number, patch: number): CustomOfferBuilder;
1739
+ withDisplayName(displayName: string): CustomOfferBuilder;
1740
+ withDescription(description: string): CustomOfferBuilder;
1741
+ withParameter(key: string, value: unknown): CustomOfferBuilder;
1742
+ withParameters(params: Record<string, unknown>): CustomOfferBuilder;
1743
+ withDependencies(deps: BlueprintComponentDependency[]): CustomOfferBuilder;
1744
+ withLinks(links: ComponentLink[]): CustomOfferBuilder;
1745
+ withIsLocked(value: boolean): CustomOfferBuilder;
1746
+ withRecreateOnFailure(value: boolean): CustomOfferBuilder;
1747
+ build(): LiveSystemComponent;
1748
+ };
1749
+ /**
1750
+ * Sealed builder returned by {@link CustomOfferFactory.satisfy}.
1751
+ * Only vendor-specific parameters can be set — structural fields are
1752
+ * locked to the blueprint.
1753
+ */
1754
+ type CustomSatisfiedBuilder = {
1755
+ withParameter(key: string, value: unknown): CustomSatisfiedBuilder;
1756
+ withParameters(params: Record<string, unknown>): CustomSatisfiedBuilder;
1757
+ build(): LiveSystemComponent;
1758
+ };
1759
+ //#endregion
1760
+ //#region src/custom/index.d.ts
1761
+ /**
1762
+ * Factory functions for defining custom aria component types.
1763
+ *
1764
+ * Use `Custom.blueprint()` to define a reusable blueprint component factory,
1765
+ * and `Custom.offer()` to define a reusable live system offer factory.
1766
+ *
1767
+ * @example
1768
+ * ```ts
1769
+ * import { Custom, ServiceDeliveryModel } from '@anthropic/fractal-sdk';
1770
+ *
1771
+ * // Define factories (once, reusable)
1772
+ * const TimeSeriesStore = Custom.blueprint({
1773
+ * domain: 'Analytics',
1774
+ * serviceDeliveryModel: ServiceDeliveryModel.PaaS,
1775
+ * name: 'TimeSeriesStore',
1776
+ * });
1777
+ *
1778
+ * const InfluxDb = Custom.offer({
1779
+ * domain: 'Analytics',
1780
+ * serviceDeliveryModel: ServiceDeliveryModel.PaaS,
1781
+ * name: 'InfluxDb',
1782
+ * provider: 'CaaS',
1783
+ * });
1784
+ *
1785
+ * // Create blueprint component
1786
+ * const metricsDb = TimeSeriesStore.create({
1787
+ * id: 'metrics-db',
1788
+ * version: { major: 1, minor: 0, patch: 0 },
1789
+ * displayName: 'Metrics Database',
1790
+ * parameters: { retentionDays: '90' },
1791
+ * });
1792
+ *
1793
+ * // Create live system component from blueprint
1794
+ * const influx = InfluxDb.satisfy(metricsDb)
1795
+ * .withParameter('bucket', 'metrics')
1796
+ * .build();
1797
+ * ```
1798
+ */
1799
+ declare namespace Custom$1 {
1800
+ /**
1801
+ * Define a reusable blueprint component factory for a custom component type.
1802
+ *
1803
+ * The `name` is validated as PascalCase immediately — a `SyntaxError` is
1804
+ * thrown if invalid.
1805
+ */
1806
+ const blueprint: (config: CustomBlueprintConfig) => CustomBlueprintFactory;
1807
+ /**
1808
+ * Define a reusable live system offer factory for a custom offer type.
1809
+ *
1810
+ * The `name` is validated as PascalCase immediately — a `SyntaxError` is
1811
+ * thrown if invalid.
1812
+ */
1813
+ const offer: (config: CustomOfferConfig) => CustomOfferFactory;
1814
+ }
1815
+ //#endregion
1620
1816
  //#region src/fractal/component/network_and_compute/iaas/security_group.d.ts
1621
1817
  type IngressRule = {
1622
1818
  protocol?: string;
@@ -1827,6 +2023,34 @@ declare namespace VirtualNetwork {
1827
2023
  const create: (config: VirtualNetworkConfig) => VirtualNetworkComponent;
1828
2024
  }
1829
2025
  //#endregion
2026
+ //#region src/fractal/component/network_and_compute/iaas/load_balancer.d.ts
2027
+ type LoadBalancerComponent = {
2028
+ readonly component: BlueprintComponent;
2029
+ readonly components: ReadonlyArray<BlueprintComponent>;
2030
+ };
2031
+ type LoadBalancerBuilder = {
2032
+ withId: (id: string) => LoadBalancerBuilder;
2033
+ withVersion: (major: number, minor: number, patch: number) => LoadBalancerBuilder;
2034
+ withDisplayName: (displayName: string) => LoadBalancerBuilder;
2035
+ withDescription: (description: string) => LoadBalancerBuilder;
2036
+ withLinks: (links: ComponentLink[]) => LoadBalancerBuilder;
2037
+ build: () => BlueprintComponent;
2038
+ };
2039
+ type LoadBalancerConfig = {
2040
+ id: string;
2041
+ version: {
2042
+ major: number;
2043
+ minor: number;
2044
+ patch: number;
2045
+ };
2046
+ displayName: string;
2047
+ description?: string;
2048
+ };
2049
+ declare namespace LoadBalancer {
2050
+ const getBuilder: () => LoadBalancerBuilder;
2051
+ const create: (config: LoadBalancerConfig) => LoadBalancerComponent;
2052
+ }
2053
+ //#endregion
1830
2054
  //#region src/live_system/component/network_and_compute/iaas/vpc.d.ts
1831
2055
  /**
1832
2056
  * Returned by satisfy() — only exposes vendor-specific parameters.
@@ -1991,6 +2215,102 @@ declare namespace Ec2Instance {
1991
2215
  const create: (config: Ec2InstanceConfig) => LiveSystemComponent;
1992
2216
  }
1993
2217
  //#endregion
2218
+ //#region src/live_system/component/network_and_compute/iaas/aws_lb.d.ts
2219
+ /**
2220
+ * Returned by satisfy() — only exposes vendor-specific parameters.
2221
+ * Structural properties (id, version, displayName, description,
2222
+ * dependencies, links) are locked to the blueprint and cannot be overridden.
2223
+ */
2224
+ type SatisfiedAwsLbBuilder = {
2225
+ withLoadBalancerType: (loadBalancerType: string) => SatisfiedAwsLbBuilder;
2226
+ withInternal: (internal: boolean) => SatisfiedAwsLbBuilder;
2227
+ withEnableDeletionProtection: (enable: boolean) => SatisfiedAwsLbBuilder;
2228
+ withIdleTimeout: (idleTimeout: number) => SatisfiedAwsLbBuilder;
2229
+ withIpAddressType: (ipAddressType: string) => SatisfiedAwsLbBuilder;
2230
+ build: () => LiveSystemComponent;
2231
+ };
2232
+ type AwsLbBuilder = {
2233
+ withId: (id: string) => AwsLbBuilder;
2234
+ withVersion: (major: number, minor: number, patch: number) => AwsLbBuilder;
2235
+ withDisplayName: (displayName: string) => AwsLbBuilder;
2236
+ withDescription: (description: string) => AwsLbBuilder;
2237
+ withLoadBalancerType: (loadBalancerType: string) => AwsLbBuilder;
2238
+ withInternal: (internal: boolean) => AwsLbBuilder;
2239
+ withEnableDeletionProtection: (enable: boolean) => AwsLbBuilder;
2240
+ withIdleTimeout: (idleTimeout: number) => AwsLbBuilder;
2241
+ withIpAddressType: (ipAddressType: string) => AwsLbBuilder;
2242
+ build: () => LiveSystemComponent;
2243
+ };
2244
+ type AwsLbConfig = {
2245
+ id: string;
2246
+ version: {
2247
+ major: number;
2248
+ minor: number;
2249
+ patch: number;
2250
+ };
2251
+ displayName: string;
2252
+ description?: string;
2253
+ loadBalancerType?: string;
2254
+ internal?: boolean;
2255
+ enableDeletionProtection?: boolean;
2256
+ idleTimeout?: number;
2257
+ ipAddressType?: string;
2258
+ };
2259
+ declare namespace AwsLb {
2260
+ const getBuilder: () => AwsLbBuilder;
2261
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedAwsLbBuilder;
2262
+ const create: (config: AwsLbConfig) => LiveSystemComponent;
2263
+ }
2264
+ //#endregion
2265
+ //#region src/live_system/component/network_and_compute/iaas/azure_lb.d.ts
2266
+ type FrontendIpConfiguration = {
2267
+ name: string;
2268
+ subnetId: string;
2269
+ privateIpAddressAllocation: 'Dynamic' | 'Static';
2270
+ };
2271
+ /**
2272
+ * Returned by satisfy() — only exposes vendor-specific parameters.
2273
+ * Structural properties (id, version, displayName, description,
2274
+ * dependencies, links) are locked to the blueprint and cannot be overridden.
2275
+ */
2276
+ type SatisfiedAzureLbBuilder = {
2277
+ withAzureRegion: (azureRegion: string) => SatisfiedAzureLbBuilder;
2278
+ withResourceGroupName: (resourceGroupName: string) => SatisfiedAzureLbBuilder;
2279
+ withSku: (sku: 'Basic' | 'Standard') => SatisfiedAzureLbBuilder;
2280
+ withFrontendIpConfiguration: (frontendIpConfiguration: FrontendIpConfiguration[]) => SatisfiedAzureLbBuilder;
2281
+ build: () => LiveSystemComponent;
2282
+ };
2283
+ type AzureLbBuilder = {
2284
+ withId: (id: string) => AzureLbBuilder;
2285
+ withVersion: (major: number, minor: number, patch: number) => AzureLbBuilder;
2286
+ withDisplayName: (displayName: string) => AzureLbBuilder;
2287
+ withDescription: (description: string) => AzureLbBuilder;
2288
+ withAzureRegion: (azureRegion: string) => AzureLbBuilder;
2289
+ withResourceGroupName: (resourceGroupName: string) => AzureLbBuilder;
2290
+ withSku: (sku: 'Basic' | 'Standard') => AzureLbBuilder;
2291
+ withFrontendIpConfiguration: (frontendIpConfiguration: FrontendIpConfiguration[]) => AzureLbBuilder;
2292
+ build: () => LiveSystemComponent;
2293
+ };
2294
+ type AzureLbConfig = {
2295
+ id: string;
2296
+ version: {
2297
+ major: number;
2298
+ minor: number;
2299
+ patch: number;
2300
+ };
2301
+ displayName: string;
2302
+ description?: string;
2303
+ azureRegion?: string;
2304
+ resourceGroupName?: string;
2305
+ sku?: 'Basic' | 'Standard';
2306
+ frontendIpConfiguration?: FrontendIpConfiguration[];
2307
+ };
2308
+ declare namespace AzureLb {
2309
+ const getBuilder: () => AzureLbBuilder;
2310
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedAzureLbBuilder;
2311
+ const create: (config: AzureLbConfig) => LiveSystemComponent;
2312
+ }
2313
+ //#endregion
1994
2314
  //#region src/live_system/component/network_and_compute/iaas/azure_vnet.d.ts
1995
2315
  /**
1996
2316
  * Returned by satisfy() — only exposes vendor-specific parameters.
@@ -2167,6 +2487,53 @@ declare namespace AzureVm {
2167
2487
  const create: (config: AzureVmConfig) => LiveSystemComponent;
2168
2488
  }
2169
2489
  //#endregion
2490
+ //#region src/live_system/component/network_and_compute/iaas/gcp_glb.d.ts
2491
+ /**
2492
+ * Returned by satisfy() — only exposes vendor-specific parameters.
2493
+ * Structural properties (id, version, displayName, description,
2494
+ * dependencies, links) are locked to the blueprint and cannot be overridden.
2495
+ */
2496
+ type SatisfiedGcpGlbBuilder = {
2497
+ withLoadBalancingScheme: (scheme: 'EXTERNAL' | 'INTERNAL') => SatisfiedGcpGlbBuilder;
2498
+ withIpProtocol: (protocol: string) => SatisfiedGcpGlbBuilder;
2499
+ withPortRange: (portRange: string) => SatisfiedGcpGlbBuilder;
2500
+ withTarget: (target: string) => SatisfiedGcpGlbBuilder;
2501
+ withIpAddress: (ipAddress: string) => SatisfiedGcpGlbBuilder;
2502
+ build: () => LiveSystemComponent;
2503
+ };
2504
+ type GcpGlbBuilder = {
2505
+ withId: (id: string) => GcpGlbBuilder;
2506
+ withVersion: (major: number, minor: number, patch: number) => GcpGlbBuilder;
2507
+ withDisplayName: (displayName: string) => GcpGlbBuilder;
2508
+ withDescription: (description: string) => GcpGlbBuilder;
2509
+ withLoadBalancingScheme: (scheme: 'EXTERNAL' | 'INTERNAL') => GcpGlbBuilder;
2510
+ withIpProtocol: (protocol: string) => GcpGlbBuilder;
2511
+ withPortRange: (portRange: string) => GcpGlbBuilder;
2512
+ withTarget: (target: string) => GcpGlbBuilder;
2513
+ withIpAddress: (ipAddress: string) => GcpGlbBuilder;
2514
+ build: () => LiveSystemComponent;
2515
+ };
2516
+ type GcpGlbConfig = {
2517
+ id: string;
2518
+ version: {
2519
+ major: number;
2520
+ minor: number;
2521
+ patch: number;
2522
+ };
2523
+ displayName: string;
2524
+ description?: string;
2525
+ loadBalancingScheme?: 'EXTERNAL' | 'INTERNAL';
2526
+ ipProtocol?: string;
2527
+ portRange?: string;
2528
+ target?: string;
2529
+ ipAddress?: string;
2530
+ };
2531
+ declare namespace GcpGlb {
2532
+ const getBuilder: () => GcpGlbBuilder;
2533
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedGcpGlbBuilder;
2534
+ const create: (config: GcpGlbConfig) => LiveSystemComponent;
2535
+ }
2536
+ //#endregion
2170
2537
  //#region src/live_system/component/network_and_compute/iaas/gcp_vpc.d.ts
2171
2538
  /**
2172
2539
  * Returned by satisfy() — only exposes vendor-specific parameters.
@@ -2653,24 +3020,35 @@ declare namespace HetznerServer {
2653
3020
  const create: (config: HetznerServerConfig) => LiveSystemComponent;
2654
3021
  }
2655
3022
  //#endregion
2656
- //#region src/fractal/component/network_and_compute/paas/container_platform.d.ts
2657
- type ContainerPlatformComponent = {
2658
- readonly platform: BlueprintComponent;
2659
- /**
2660
- * Workload nodes with the platform dependency auto-wired into each component.
2661
- * Pass these to Subnet.withWorkloads() so the subnet dep is stacked on top.
2662
- */
2663
- readonly workloads: ReadonlyArray<WorkloadComponent>;
2664
- withWorkloads: (workloads: WorkloadComponent[]) => ContainerPlatformComponent;
3023
+ //#region src/live_system/component/network_and_compute/iaas/vsphere_port_group.d.ts
3024
+ /**
3025
+ * Returned by satisfy() — only exposes vendor-specific parameters.
3026
+ * Structural properties (id, version, displayName, description,
3027
+ * dependencies, links) are locked to the blueprint and cannot be overridden.
3028
+ */
3029
+ type SatisfiedVspherePortGroupBuilder = {
3030
+ withName: (name: string) => SatisfiedVspherePortGroupBuilder;
3031
+ withDvSwitchName: (name: string) => SatisfiedVspherePortGroupBuilder;
3032
+ withDatacenter: (datacenter: string) => SatisfiedVspherePortGroupBuilder;
3033
+ withVlanId: (vlanId: number) => SatisfiedVspherePortGroupBuilder;
3034
+ withNumPorts: (numPorts: number) => SatisfiedVspherePortGroupBuilder;
3035
+ withPortBinding: (binding: string) => SatisfiedVspherePortGroupBuilder;
3036
+ build: () => LiveSystemComponent;
2665
3037
  };
2666
- type ContainerPlatformBuilder = {
2667
- withId: (id: string) => ContainerPlatformBuilder;
2668
- withVersion: (major: number, minor: number, patch: number) => ContainerPlatformBuilder;
2669
- withDisplayName: (displayName: string) => ContainerPlatformBuilder;
2670
- withDescription: (description: string) => ContainerPlatformBuilder;
2671
- build: () => BlueprintComponent;
3038
+ type VspherePortGroupBuilder = {
3039
+ withId: (id: string) => VspherePortGroupBuilder;
3040
+ withVersion: (major: number, minor: number, patch: number) => VspherePortGroupBuilder;
3041
+ withDisplayName: (displayName: string) => VspherePortGroupBuilder;
3042
+ withDescription: (description: string) => VspherePortGroupBuilder;
3043
+ withName: (name: string) => VspherePortGroupBuilder;
3044
+ withDvSwitchName: (name: string) => VspherePortGroupBuilder;
3045
+ withDatacenter: (datacenter: string) => VspherePortGroupBuilder;
3046
+ withVlanId: (vlanId: number) => VspherePortGroupBuilder;
3047
+ withNumPorts: (numPorts: number) => VspherePortGroupBuilder;
3048
+ withPortBinding: (binding: string) => VspherePortGroupBuilder;
3049
+ build: () => LiveSystemComponent;
2672
3050
  };
2673
- type ContainerPlatformConfig = {
3051
+ type VspherePortGroupConfig = {
2674
3052
  id: string;
2675
3053
  version: {
2676
3054
  major: number;
@@ -2679,48 +3057,46 @@ type ContainerPlatformConfig = {
2679
3057
  };
2680
3058
  displayName: string;
2681
3059
  description?: string;
2682
- };
2683
- declare namespace ContainerPlatform {
2684
- const getBuilder: () => ContainerPlatformBuilder;
2685
- const create: (config: ContainerPlatformConfig) => ContainerPlatformComponent;
3060
+ dvSwitchName: string;
3061
+ datacenter: string;
3062
+ vlanId: number;
3063
+ numPorts?: number;
3064
+ portBinding?: string;
3065
+ };
3066
+ declare namespace VspherePortGroup {
3067
+ const getBuilder: () => VspherePortGroupBuilder;
3068
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedVspherePortGroupBuilder;
3069
+ const create: (config: VspherePortGroupConfig) => LiveSystemComponent;
2686
3070
  }
2687
3071
  //#endregion
2688
- //#region src/live_system/component/network_and_compute/paas/eks_cluster.d.ts
2689
- type SatisfiedAwsEksClusterBuilder = {
2690
- withKubernetesVersion: (version: string) => SatisfiedAwsEksClusterBuilder;
2691
- withNetworkPolicyProvider: (provider: string) => SatisfiedAwsEksClusterBuilder;
2692
- withMasterIpv4CidrBlock: (cidr: string) => SatisfiedAwsEksClusterBuilder;
2693
- withVpcCidrBlock: (cidr: string) => SatisfiedAwsEksClusterBuilder;
2694
- withPrivateSubnetCidrs: (cidrs: string[]) => SatisfiedAwsEksClusterBuilder;
2695
- withDesiredAvailabilityZoneCount: (count: number) => SatisfiedAwsEksClusterBuilder;
2696
- withNodePools: (nodePools: Record<string, unknown>[]) => SatisfiedAwsEksClusterBuilder;
2697
- withAddons: (addons: Record<string, unknown>[]) => SatisfiedAwsEksClusterBuilder;
2698
- withPriorityClasses: (classes: Record<string, unknown>[]) => SatisfiedAwsEksClusterBuilder;
2699
- withRoles: (roles: Record<string, unknown>[]) => SatisfiedAwsEksClusterBuilder;
2700
- withWorkloadIdentityEnabled: (enabled: boolean) => SatisfiedAwsEksClusterBuilder;
2701
- withPrivateClusterDisabled: (disabled: boolean) => SatisfiedAwsEksClusterBuilder;
3072
+ //#region src/live_system/component/network_and_compute/iaas/vsphere_vlan.d.ts
3073
+ /**
3074
+ * Returned by satisfy() only exposes vendor-specific parameters.
3075
+ * Structural properties (id, version, displayName, description, cidrBlock,
3076
+ * dependencies, links) are locked to the blueprint and cannot be overridden.
3077
+ */
3078
+ type SatisfiedVsphereVlanBuilder = {
3079
+ withName: (name: string) => SatisfiedVsphereVlanBuilder;
3080
+ withVlanId: (vlanId: number) => SatisfiedVsphereVlanBuilder;
3081
+ withGateway: (gateway: string) => SatisfiedVsphereVlanBuilder;
3082
+ withDvSwitchName: (name: string) => SatisfiedVsphereVlanBuilder;
3083
+ withDatacenter: (datacenter: string) => SatisfiedVsphereVlanBuilder;
2702
3084
  build: () => LiveSystemComponent;
2703
3085
  };
2704
- type AwsEksClusterBuilder = {
2705
- withId: (id: string) => AwsEksClusterBuilder;
2706
- withVersion: (major: number, minor: number, patch: number) => AwsEksClusterBuilder;
2707
- withDisplayName: (displayName: string) => AwsEksClusterBuilder;
2708
- withDescription: (description: string) => AwsEksClusterBuilder;
2709
- withKubernetesVersion: (version: string) => AwsEksClusterBuilder;
2710
- withNetworkPolicyProvider: (provider: string) => AwsEksClusterBuilder;
2711
- withMasterIpv4CidrBlock: (cidr: string) => AwsEksClusterBuilder;
2712
- withVpcCidrBlock: (cidr: string) => AwsEksClusterBuilder;
2713
- withPrivateSubnetCidrs: (cidrs: string[]) => AwsEksClusterBuilder;
2714
- withDesiredAvailabilityZoneCount: (count: number) => AwsEksClusterBuilder;
2715
- withNodePools: (nodePools: Record<string, unknown>[]) => AwsEksClusterBuilder;
2716
- withAddons: (addons: Record<string, unknown>[]) => AwsEksClusterBuilder;
2717
- withPriorityClasses: (classes: Record<string, unknown>[]) => AwsEksClusterBuilder;
2718
- withRoles: (roles: Record<string, unknown>[]) => AwsEksClusterBuilder;
2719
- withWorkloadIdentityEnabled: (enabled: boolean) => AwsEksClusterBuilder;
2720
- withPrivateClusterDisabled: (disabled: boolean) => AwsEksClusterBuilder;
3086
+ type VsphereVlanBuilder = {
3087
+ withId: (id: string) => VsphereVlanBuilder;
3088
+ withVersion: (major: number, minor: number, patch: number) => VsphereVlanBuilder;
3089
+ withDisplayName: (displayName: string) => VsphereVlanBuilder;
3090
+ withDescription: (description: string) => VsphereVlanBuilder;
3091
+ withName: (name: string) => VsphereVlanBuilder;
3092
+ withCidrBlock: (cidrBlock: string) => VsphereVlanBuilder;
3093
+ withVlanId: (vlanId: number) => VsphereVlanBuilder;
3094
+ withGateway: (gateway: string) => VsphereVlanBuilder;
3095
+ withDvSwitchName: (name: string) => VsphereVlanBuilder;
3096
+ withDatacenter: (datacenter: string) => VsphereVlanBuilder;
2721
3097
  build: () => LiveSystemComponent;
2722
3098
  };
2723
- type AwsEksClusterConfig = {
3099
+ type VsphereVlanConfig = {
2724
3100
  id: string;
2725
3101
  version: {
2726
3102
  major: number;
@@ -2729,48 +3105,63 @@ type AwsEksClusterConfig = {
2729
3105
  };
2730
3106
  displayName: string;
2731
3107
  description?: string;
2732
- kubernetesVersion?: string;
2733
- networkPolicyProvider?: string;
2734
- masterIpv4CidrBlock?: string;
2735
- vpcCidrBlock?: string;
2736
- privateSubnetCidrs?: string[];
2737
- desiredAvailabilityZoneCount?: number;
2738
- nodePools?: Record<string, unknown>[];
2739
- addons?: Record<string, unknown>[];
2740
- priorityClasses?: Record<string, unknown>[];
2741
- roles?: Record<string, unknown>[];
2742
- workloadIdentityEnabled?: boolean;
2743
- privateClusterDisabled?: boolean;
2744
- };
2745
- declare namespace AwsEksCluster {
2746
- const getBuilder: () => AwsEksClusterBuilder;
2747
- /**
2748
- * Satisfies a blueprint ContainerPlatform component as an AWS EKS Cluster.
2749
- * Carries id, version, displayName, and description from the blueprint.
2750
- * All cluster-specific parameters (Kubernetes version, node pools, etc.)
2751
- * are AWS-specific and must be added via the builder methods.
2752
- */
2753
- const satisfy: (platform: BlueprintComponent) => SatisfiedAwsEksClusterBuilder;
2754
- const create: (config: AwsEksClusterConfig) => LiveSystemComponent;
3108
+ cidrBlock: string;
3109
+ vlanId: number;
3110
+ gateway: string;
3111
+ dvSwitchName: string;
3112
+ datacenter: string;
3113
+ };
3114
+ declare namespace VsphereVlan {
3115
+ const getBuilder: () => VsphereVlanBuilder;
3116
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedVsphereVlanBuilder;
3117
+ const create: (config: VsphereVlanConfig) => LiveSystemComponent;
2755
3118
  }
2756
3119
  //#endregion
2757
- //#region src/live_system/component/network_and_compute/paas/ecs_cluster.d.ts
3120
+ //#region src/live_system/component/network_and_compute/iaas/vsphere_vm.d.ts
2758
3121
  /**
2759
- * Returned by satisfy() — id, version, and displayName are locked from the
2760
- * blueprint ContainerPlatform. No AWS-specific parameters are needed for a
2761
- * basic ECS cluster, so only build() is exposed.
3122
+ * Returned by satisfy() — only exposes vendor-specific parameters.
3123
+ * Structural properties (id, version, displayName, description,
3124
+ * dependencies, links) are locked to the blueprint and cannot be overridden.
2762
3125
  */
2763
- type SatisfiedAwsEcsClusterBuilder = {
3126
+ type SatisfiedVsphereVmBuilder = {
3127
+ withTemplate: (template: string) => SatisfiedVsphereVmBuilder;
3128
+ withDatacenter: (datacenter: string) => SatisfiedVsphereVmBuilder;
3129
+ withCluster: (cluster: string) => SatisfiedVsphereVmBuilder;
3130
+ withDatastore: (datastore: string) => SatisfiedVsphereVmBuilder;
3131
+ withFolder: (folder: string) => SatisfiedVsphereVmBuilder;
3132
+ withNumCpus: (numCpus: number) => SatisfiedVsphereVmBuilder;
3133
+ withMemoryMb: (memoryMb: number) => SatisfiedVsphereVmBuilder;
3134
+ withDiskSizeGb: (diskSizeGb: number) => SatisfiedVsphereVmBuilder;
3135
+ withGuestId: (guestId: string) => SatisfiedVsphereVmBuilder;
3136
+ withHostname: (hostname: string) => SatisfiedVsphereVmBuilder;
3137
+ withSshPublicKey: (sshPublicKey: string) => SatisfiedVsphereVmBuilder;
3138
+ withCloudInitUserData: (userData: string) => SatisfiedVsphereVmBuilder;
3139
+ withStoragePolicy: (policy: string) => SatisfiedVsphereVmBuilder;
3140
+ withResourcePool: (pool: string) => SatisfiedVsphereVmBuilder;
2764
3141
  build: () => LiveSystemComponent;
2765
3142
  };
2766
- type AwsEcsClusterBuilder = {
2767
- withId: (id: string) => AwsEcsClusterBuilder;
2768
- withVersion: (major: number, minor: number, patch: number) => AwsEcsClusterBuilder;
2769
- withDisplayName: (displayName: string) => AwsEcsClusterBuilder;
2770
- withDescription: (description: string) => AwsEcsClusterBuilder;
3143
+ type VsphereVmBuilder = {
3144
+ withId: (id: string) => VsphereVmBuilder;
3145
+ withVersion: (major: number, minor: number, patch: number) => VsphereVmBuilder;
3146
+ withDisplayName: (displayName: string) => VsphereVmBuilder;
3147
+ withDescription: (description: string) => VsphereVmBuilder;
3148
+ withTemplate: (template: string) => VsphereVmBuilder;
3149
+ withDatacenter: (datacenter: string) => VsphereVmBuilder;
3150
+ withCluster: (cluster: string) => VsphereVmBuilder;
3151
+ withDatastore: (datastore: string) => VsphereVmBuilder;
3152
+ withFolder: (folder: string) => VsphereVmBuilder;
3153
+ withNumCpus: (numCpus: number) => VsphereVmBuilder;
3154
+ withMemoryMb: (memoryMb: number) => VsphereVmBuilder;
3155
+ withDiskSizeGb: (diskSizeGb: number) => VsphereVmBuilder;
3156
+ withGuestId: (guestId: string) => VsphereVmBuilder;
3157
+ withHostname: (hostname: string) => VsphereVmBuilder;
3158
+ withSshPublicKey: (sshPublicKey: string) => VsphereVmBuilder;
3159
+ withCloudInitUserData: (userData: string) => VsphereVmBuilder;
3160
+ withStoragePolicy: (policy: string) => VsphereVmBuilder;
3161
+ withResourcePool: (pool: string) => VsphereVmBuilder;
2771
3162
  build: () => LiveSystemComponent;
2772
3163
  };
2773
- type AwsEcsClusterConfig = {
3164
+ type VsphereVmConfig = {
2774
3165
  id: string;
2775
3166
  version: {
2776
3167
  major: number;
@@ -2779,11 +3170,425 @@ type AwsEcsClusterConfig = {
2779
3170
  };
2780
3171
  displayName: string;
2781
3172
  description?: string;
2782
- };
2783
- declare namespace AwsEcsCluster {
2784
- const getBuilder: () => AwsEcsClusterBuilder;
2785
- /**
2786
- * Satisfies a blueprint ContainerPlatform component as an AWS ECS Cluster.
3173
+ template: string;
3174
+ datacenter: string;
3175
+ cluster: string;
3176
+ datastore: string;
3177
+ folder?: string;
3178
+ numCpus?: number;
3179
+ memoryMb?: number;
3180
+ diskSizeGb?: number;
3181
+ guestId?: string;
3182
+ hostname?: string;
3183
+ sshPublicKey?: string;
3184
+ cloudInitUserData?: string;
3185
+ storagePolicy?: string;
3186
+ resourcePool?: string;
3187
+ };
3188
+ declare namespace VsphereVm {
3189
+ const getBuilder: () => VsphereVmBuilder;
3190
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedVsphereVmBuilder;
3191
+ const create: (config: VsphereVmConfig) => LiveSystemComponent;
3192
+ }
3193
+ //#endregion
3194
+ //#region src/live_system/component/network_and_compute/iaas/openshift_vm.d.ts
3195
+ /**
3196
+ * Returned by satisfy() — only exposes vendor-specific parameters.
3197
+ * Structural properties (id, version, displayName, description,
3198
+ * dependencies, links) are locked to the blueprint and cannot be overridden.
3199
+ */
3200
+ type SatisfiedOpenshiftVmBuilder = {
3201
+ withName: (name: string) => SatisfiedOpenshiftVmBuilder;
3202
+ withImage: (image: string) => SatisfiedOpenshiftVmBuilder;
3203
+ withNamespace: (namespace: string) => SatisfiedOpenshiftVmBuilder;
3204
+ withCpuCores: (cpuCores: number) => SatisfiedOpenshiftVmBuilder;
3205
+ withMemorySizeGi: (memorySizeGi: string) => SatisfiedOpenshiftVmBuilder;
3206
+ withDiskSizeGi: (diskSizeGi: string) => SatisfiedOpenshiftVmBuilder;
3207
+ withStorageClassName: (className: string) => SatisfiedOpenshiftVmBuilder;
3208
+ withNetworkName: (networkName: string) => SatisfiedOpenshiftVmBuilder;
3209
+ withCloudInitUserData: (userData: string) => SatisfiedOpenshiftVmBuilder;
3210
+ withSshPublicKey: (key: string) => SatisfiedOpenshiftVmBuilder;
3211
+ withRunStrategy: (strategy: string) => SatisfiedOpenshiftVmBuilder;
3212
+ build: () => LiveSystemComponent;
3213
+ };
3214
+ type OpenshiftVmBuilder = {
3215
+ withId: (id: string) => OpenshiftVmBuilder;
3216
+ withVersion: (major: number, minor: number, patch: number) => OpenshiftVmBuilder;
3217
+ withDisplayName: (displayName: string) => OpenshiftVmBuilder;
3218
+ withDescription: (description: string) => OpenshiftVmBuilder;
3219
+ withName: (name: string) => OpenshiftVmBuilder;
3220
+ withImage: (image: string) => OpenshiftVmBuilder;
3221
+ withNamespace: (namespace: string) => OpenshiftVmBuilder;
3222
+ withCpuCores: (cpuCores: number) => OpenshiftVmBuilder;
3223
+ withMemorySizeGi: (memorySizeGi: string) => OpenshiftVmBuilder;
3224
+ withDiskSizeGi: (diskSizeGi: string) => OpenshiftVmBuilder;
3225
+ withStorageClassName: (className: string) => OpenshiftVmBuilder;
3226
+ withNetworkName: (networkName: string) => OpenshiftVmBuilder;
3227
+ withCloudInitUserData: (userData: string) => OpenshiftVmBuilder;
3228
+ withSshPublicKey: (key: string) => OpenshiftVmBuilder;
3229
+ withRunStrategy: (strategy: string) => OpenshiftVmBuilder;
3230
+ build: () => LiveSystemComponent;
3231
+ };
3232
+ type OpenshiftVmConfig = {
3233
+ id: string;
3234
+ version: {
3235
+ major: number;
3236
+ minor: number;
3237
+ patch: number;
3238
+ };
3239
+ displayName: string;
3240
+ description?: string;
3241
+ name: string;
3242
+ image: string;
3243
+ namespace?: string;
3244
+ cpuCores?: number;
3245
+ memorySizeGi?: string;
3246
+ diskSizeGi?: string;
3247
+ storageClassName?: string;
3248
+ networkName?: string;
3249
+ cloudInitUserData?: string;
3250
+ sshPublicKey?: string;
3251
+ runStrategy?: string;
3252
+ };
3253
+ declare namespace OpenshiftVm {
3254
+ const getBuilder: () => OpenshiftVmBuilder;
3255
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedOpenshiftVmBuilder;
3256
+ const create: (config: OpenshiftVmConfig) => LiveSystemComponent;
3257
+ }
3258
+ //#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;
3278
+ };
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;
3285
+ build: () => BlueprintComponent;
3286
+ };
3287
+ type ContainerPlatformConfig = {
3288
+ id: string;
3289
+ version: {
3290
+ major: number;
3291
+ minor: number;
3292
+ patch: number;
3293
+ };
3294
+ displayName: string;
3295
+ description?: string;
3296
+ nodePools?: NodePoolConfig[];
3297
+ };
3298
+ declare namespace ContainerPlatform {
3299
+ const getBuilder: () => ContainerPlatformBuilder;
3300
+ const create: (config: ContainerPlatformConfig) => ContainerPlatformComponent;
3301
+ }
3302
+ //#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;
3322
+ };
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;
3345
+ };
3346
+ type OpenshiftWorkloadConfig = {
3347
+ id: string;
3348
+ version: {
3349
+ major: number;
3350
+ minor: number;
3351
+ patch: number;
3352
+ };
3353
+ displayName: string;
3354
+ 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
+ };
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;
3382
+ }
3383
+ //#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 = {
3404
+ withId: (id: string) => OpenshiftServiceBuilder;
3405
+ withVersion: (major: number, minor: number, patch: number) => OpenshiftServiceBuilder;
3406
+ withDisplayName: (displayName: string) => OpenshiftServiceBuilder;
3407
+ withDescription: (description: string) => OpenshiftServiceBuilder;
3408
+ withName: (name: string) => OpenshiftServiceBuilder;
3409
+ withPort: (port: number) => OpenshiftServiceBuilder;
3410
+ withTargetPort: (targetPort: number) => OpenshiftServiceBuilder;
3411
+ withProtocol: (protocol: string) => OpenshiftServiceBuilder;
3412
+ withServiceType: (serviceType: string) => OpenshiftServiceBuilder;
3413
+ withCreateRoute: (createRoute: boolean) => OpenshiftServiceBuilder;
3414
+ withRouteHostname: (hostname: string) => OpenshiftServiceBuilder;
3415
+ withRouteTlsTermination: (termination: string) => OpenshiftServiceBuilder;
3416
+ withNamespace: (namespace: string) => OpenshiftServiceBuilder;
3417
+ withWorkloadName: (workloadName: string) => OpenshiftServiceBuilder;
3418
+ build: () => LiveSystemComponent;
3419
+ };
3420
+ type OpenshiftServiceConfig = {
3421
+ id: string;
3422
+ version: {
3423
+ major: number;
3424
+ minor: number;
3425
+ patch: number;
3426
+ };
3427
+ displayName: string;
3428
+ description?: string;
3429
+ name: string;
3430
+ 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;
3439
+ };
3440
+ declare namespace OpenshiftService {
3441
+ const getBuilder: () => OpenshiftServiceBuilder;
3442
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedOpenshiftServiceBuilder;
3443
+ const create: (config: OpenshiftServiceConfig) => LiveSystemComponent;
3444
+ }
3445
+ //#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;
3458
+ build: () => LiveSystemComponent;
3459
+ };
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;
3470
+ build: () => LiveSystemComponent;
3471
+ };
3472
+ type OpenshiftSecurityGroupConfig = {
3473
+ id: string;
3474
+ version: {
3475
+ major: number;
3476
+ minor: number;
3477
+ patch: number;
3478
+ };
3479
+ displayName: string;
3480
+ description?: string;
3481
+ name: string;
3482
+ policyType?: string;
3483
+ podSelector?: string;
3484
+ ingressRules?: string;
3485
+ egressRules?: string;
3486
+ };
3487
+ declare namespace OpenshiftSecurityGroup {
3488
+ const getBuilder: () => OpenshiftSecurityGroupBuilder;
3489
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedOpenshiftSecurityGroupBuilder;
3490
+ const create: (config: OpenshiftSecurityGroupConfig) => LiveSystemComponent;
3491
+ }
3492
+ //#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;
3507
+ build: () => LiveSystemComponent;
3508
+ };
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;
3526
+ build: () => LiveSystemComponent;
3527
+ };
3528
+ type AwsEksClusterConfig = {
3529
+ id: string;
3530
+ version: {
3531
+ major: number;
3532
+ minor: number;
3533
+ patch: number;
3534
+ };
3535
+ displayName: string;
3536
+ 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;
3549
+ };
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;
3560
+ }
3561
+ //#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 = {
3569
+ build: () => LiveSystemComponent;
3570
+ };
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;
3576
+ build: () => LiveSystemComponent;
3577
+ };
3578
+ type AwsEcsClusterConfig = {
3579
+ id: string;
3580
+ version: {
3581
+ major: number;
3582
+ minor: number;
3583
+ patch: number;
3584
+ };
3585
+ displayName: string;
3586
+ description?: string;
3587
+ };
3588
+ declare namespace AwsEcsCluster {
3589
+ const getBuilder: () => AwsEcsClusterBuilder;
3590
+ /**
3591
+ * Satisfies a blueprint ContainerPlatform component as an AWS ECS Cluster.
2787
3592
  * Carries id, version, displayName, and description from the blueprint.
2788
3593
  */
2789
3594
  const satisfy: (platform: BlueprintComponent) => SatisfiedAwsEcsClusterBuilder;
@@ -2791,6 +3596,15 @@ declare namespace AwsEcsCluster {
2791
3596
  }
2792
3597
  //#endregion
2793
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
+ };
2794
3608
  /**
2795
3609
  * Returned by satisfy() — blueprint params (image, port, cpu, memory) are
2796
3610
  * locked. Only IAM role ARNs and network mode can be added here.
@@ -2802,7 +3616,7 @@ type SatisfiedAwsEcsTaskDefinitionBuilder = {
2802
3616
  withNetworkMode: (mode: string) => SatisfiedAwsEcsTaskDefinitionBuilder;
2803
3617
  withExecutionRoleArn: (arn: string) => SatisfiedAwsEcsTaskDefinitionBuilder;
2804
3618
  withTaskRoleArn: (arn: string) => SatisfiedAwsEcsTaskDefinitionBuilder;
2805
- build: () => LiveSystemComponent;
3619
+ build: () => AwsEcsTaskDefinitionComponent;
2806
3620
  };
2807
3621
  type AwsEcsTaskDefinitionBuilder = {
2808
3622
  withId: (id: string) => AwsEcsTaskDefinitionBuilder;
@@ -2817,7 +3631,7 @@ type AwsEcsTaskDefinitionBuilder = {
2817
3631
  withNetworkMode: (mode: string) => AwsEcsTaskDefinitionBuilder;
2818
3632
  withExecutionRoleArn: (arn: string) => AwsEcsTaskDefinitionBuilder;
2819
3633
  withTaskRoleArn: (arn: string) => AwsEcsTaskDefinitionBuilder;
2820
- build: () => LiveSystemComponent;
3634
+ build: () => AwsEcsTaskDefinitionComponent;
2821
3635
  };
2822
3636
  type AwsEcsTaskDefinitionConfig = {
2823
3637
  id: string;
@@ -2845,7 +3659,7 @@ declare namespace AwsEcsTaskDefinition {
2845
3659
  * AwsEcsService that satisfies the same workload.
2846
3660
  */
2847
3661
  const satisfy: (workload: BlueprintComponent) => SatisfiedAwsEcsTaskDefinitionBuilder;
2848
- const create: (config: AwsEcsTaskDefinitionConfig) => LiveSystemComponent;
3662
+ const create: (config: AwsEcsTaskDefinitionConfig) => AwsEcsTaskDefinitionComponent;
2849
3663
  }
2850
3664
  //#endregion
2851
3665
  //#region src/live_system/component/network_and_compute/paas/ecs_service.d.ts
@@ -2861,8 +3675,11 @@ type SatisfiedAwsEcsServiceBuilder = {
2861
3675
  * Declares a live-system-only dependency on the ECS Task Definition that
2862
3676
  * this service will run. This has no blueprint equivalent — it is an
2863
3677
  * AWS-specific sub-component relationship.
3678
+ *
3679
+ * Only accepts an AwsEcsTaskDefinitionComponent produced by
3680
+ * AwsEcsTaskDefinition.satisfy() or AwsEcsTaskDefinition.create().
2864
3681
  */
2865
- withTaskDefinition: (taskDef: LiveSystemComponent) => SatisfiedAwsEcsServiceBuilder;
3682
+ withTaskDefinition: (taskDef: AwsEcsTaskDefinitionComponent) => SatisfiedAwsEcsServiceBuilder;
2866
3683
  build: () => LiveSystemComponent;
2867
3684
  };
2868
3685
  type AwsEcsServiceBuilder = {
@@ -3350,26 +4167,3476 @@ declare namespace OciContainerInstance {
3350
4167
  const create: (config: OciContainerInstanceConfig) => LiveSystemComponent;
3351
4168
  }
3352
4169
  //#endregion
3353
- //#region src/index.d.ts
3354
- declare const BoundedContext: typeof BoundedContext$1;
3355
- type BoundedContext = BoundedContext$1;
3356
- declare const Fractal: typeof Fractal$1;
3357
- type Fractal = Fractal$1;
3358
- declare const InfrastructureDomain: typeof InfrastructureDomain$1;
3359
- type InfrastructureDomain = InfrastructureDomain$1;
3360
- declare const KebabCaseString: typeof KebabCaseString$1;
3361
- type KebabCaseString = KebabCaseString$1;
3362
- declare const OwnerId: typeof OwnerId$1;
3363
- type OwnerId = OwnerId$1;
3364
- declare const OwnerType: typeof OwnerType$1;
3365
- type OwnerType = OwnerType$1;
3366
- declare const PascalCaseString: typeof PascalCaseString$1;
3367
- type PascalCaseString = PascalCaseString$1;
3368
- declare const ServiceAccountCredentials: typeof ServiceAccountCredentials$1;
3369
- type ServiceAccountCredentials = ServiceAccountCredentials$1;
3370
- declare const ServiceAccountId: typeof ServiceAccountId$1;
3371
- type ServiceAccountId = ServiceAccountId$1;
3372
- declare const ServiceDeliveryModel: typeof ServiceDeliveryModel$1;
4170
+ //#region src/fractal/component/storage/paas/files_and_blobs.d.ts
4171
+ type FilesAndBlobsComponent = {
4172
+ readonly component: BlueprintComponent;
4173
+ readonly components: ReadonlyArray<BlueprintComponent>;
4174
+ };
4175
+ type FilesAndBlobsBuilder = {
4176
+ withId: (id: string) => FilesAndBlobsBuilder;
4177
+ withVersion: (major: number, minor: number, patch: number) => FilesAndBlobsBuilder;
4178
+ withDisplayName: (displayName: string) => FilesAndBlobsBuilder;
4179
+ withDescription: (description: string) => FilesAndBlobsBuilder;
4180
+ build: () => BlueprintComponent;
4181
+ };
4182
+ type FilesAndBlobsConfig = {
4183
+ id: string;
4184
+ version: {
4185
+ major: number;
4186
+ minor: number;
4187
+ patch: number;
4188
+ };
4189
+ displayName: string;
4190
+ description?: string;
4191
+ };
4192
+ declare namespace FilesAndBlobs {
4193
+ const getBuilder: () => FilesAndBlobsBuilder;
4194
+ const create: (config: FilesAndBlobsConfig) => FilesAndBlobsComponent;
4195
+ }
4196
+ //#endregion
4197
+ //#region src/fractal/component/storage/paas/relational_database.d.ts
4198
+ type RelationalDatabaseComponent = {
4199
+ readonly component: BlueprintComponent;
4200
+ readonly components: ReadonlyArray<BlueprintComponent>;
4201
+ };
4202
+ type RelationalDatabaseBuilder = {
4203
+ withId: (id: string) => RelationalDatabaseBuilder;
4204
+ withVersion: (major: number, minor: number, patch: number) => RelationalDatabaseBuilder;
4205
+ withDisplayName: (displayName: string) => RelationalDatabaseBuilder;
4206
+ withDescription: (description: string) => RelationalDatabaseBuilder;
4207
+ withCollation: (collation: string) => RelationalDatabaseBuilder;
4208
+ withCharset: (charset: string) => RelationalDatabaseBuilder;
4209
+ build: () => BlueprintComponent;
4210
+ };
4211
+ type RelationalDatabaseConfig = {
4212
+ id: string;
4213
+ version: {
4214
+ major: number;
4215
+ minor: number;
4216
+ patch: number;
4217
+ };
4218
+ displayName: string;
4219
+ description?: string;
4220
+ collation?: string;
4221
+ charset?: string;
4222
+ };
4223
+ declare namespace RelationalDatabase {
4224
+ const getBuilder: () => RelationalDatabaseBuilder;
4225
+ const create: (config: RelationalDatabaseConfig) => RelationalDatabaseComponent;
4226
+ }
4227
+ //#endregion
4228
+ //#region src/fractal/component/storage/paas/document_database.d.ts
4229
+ type DocumentDatabaseComponent = {
4230
+ readonly component: BlueprintComponent;
4231
+ readonly components: ReadonlyArray<BlueprintComponent>;
4232
+ };
4233
+ type DocumentDatabaseBuilder = {
4234
+ withId: (id: string) => DocumentDatabaseBuilder;
4235
+ withVersion: (major: number, minor: number, patch: number) => DocumentDatabaseBuilder;
4236
+ withDisplayName: (displayName: string) => DocumentDatabaseBuilder;
4237
+ withDescription: (description: string) => DocumentDatabaseBuilder;
4238
+ build: () => BlueprintComponent;
4239
+ };
4240
+ type DocumentDatabaseConfig = {
4241
+ id: string;
4242
+ version: {
4243
+ major: number;
4244
+ minor: number;
4245
+ patch: number;
4246
+ };
4247
+ displayName: string;
4248
+ description?: string;
4249
+ };
4250
+ declare namespace DocumentDatabase {
4251
+ const getBuilder: () => DocumentDatabaseBuilder;
4252
+ const create: (config: DocumentDatabaseConfig) => DocumentDatabaseComponent;
4253
+ }
4254
+ //#endregion
4255
+ //#region src/fractal/component/storage/paas/column_oriented_entity.d.ts
4256
+ type ColumnOrientedEntityComponent = {
4257
+ readonly component: BlueprintComponent;
4258
+ readonly components: ReadonlyArray<BlueprintComponent>;
4259
+ };
4260
+ type ColumnOrientedEntityBuilder = {
4261
+ withId: (id: string) => ColumnOrientedEntityBuilder;
4262
+ withVersion: (major: number, minor: number, patch: number) => ColumnOrientedEntityBuilder;
4263
+ withDisplayName: (displayName: string) => ColumnOrientedEntityBuilder;
4264
+ withDescription: (description: string) => ColumnOrientedEntityBuilder;
4265
+ build: () => BlueprintComponent;
4266
+ };
4267
+ type ColumnOrientedEntityConfig = {
4268
+ id: string;
4269
+ version: {
4270
+ major: number;
4271
+ minor: number;
4272
+ patch: number;
4273
+ };
4274
+ displayName: string;
4275
+ description?: string;
4276
+ };
4277
+ declare namespace ColumnOrientedEntity {
4278
+ const getBuilder: () => ColumnOrientedEntityBuilder;
4279
+ const create: (config: ColumnOrientedEntityConfig) => ColumnOrientedEntityComponent;
4280
+ }
4281
+ //#endregion
4282
+ //#region src/fractal/component/storage/paas/key_value_entity.d.ts
4283
+ type KeyValueEntityComponent = {
4284
+ readonly component: BlueprintComponent;
4285
+ readonly components: ReadonlyArray<BlueprintComponent>;
4286
+ };
4287
+ type KeyValueEntityBuilder = {
4288
+ withId: (id: string) => KeyValueEntityBuilder;
4289
+ withVersion: (major: number, minor: number, patch: number) => KeyValueEntityBuilder;
4290
+ withDisplayName: (displayName: string) => KeyValueEntityBuilder;
4291
+ withDescription: (description: string) => KeyValueEntityBuilder;
4292
+ build: () => BlueprintComponent;
4293
+ };
4294
+ type KeyValueEntityConfig = {
4295
+ id: string;
4296
+ version: {
4297
+ major: number;
4298
+ minor: number;
4299
+ patch: number;
4300
+ };
4301
+ displayName: string;
4302
+ description?: string;
4303
+ };
4304
+ declare namespace KeyValueEntity {
4305
+ const getBuilder: () => KeyValueEntityBuilder;
4306
+ const create: (config: KeyValueEntityConfig) => KeyValueEntityComponent;
4307
+ }
4308
+ //#endregion
4309
+ //#region src/fractal/component/storage/paas/graph_database.d.ts
4310
+ type GraphDatabaseComponent = {
4311
+ readonly component: BlueprintComponent;
4312
+ readonly components: ReadonlyArray<BlueprintComponent>;
4313
+ };
4314
+ type GraphDatabaseBuilder = {
4315
+ withId: (id: string) => GraphDatabaseBuilder;
4316
+ withVersion: (major: number, minor: number, patch: number) => GraphDatabaseBuilder;
4317
+ withDisplayName: (displayName: string) => GraphDatabaseBuilder;
4318
+ withDescription: (description: string) => GraphDatabaseBuilder;
4319
+ build: () => BlueprintComponent;
4320
+ };
4321
+ type GraphDatabaseConfig = {
4322
+ id: string;
4323
+ version: {
4324
+ major: number;
4325
+ minor: number;
4326
+ patch: number;
4327
+ };
4328
+ displayName: string;
4329
+ description?: string;
4330
+ };
4331
+ declare namespace GraphDatabase {
4332
+ const getBuilder: () => GraphDatabaseBuilder;
4333
+ const create: (config: GraphDatabaseConfig) => GraphDatabaseComponent;
4334
+ }
4335
+ //#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
+ //#region src/fractal/component/storage/saas/unmanaged.d.ts
4364
+ type UnmanagedComponent = {
4365
+ readonly component: BlueprintComponent;
4366
+ readonly components: ReadonlyArray<BlueprintComponent>;
4367
+ };
4368
+ type UnmanagedBuilder = {
4369
+ withId: (id: string) => UnmanagedBuilder;
4370
+ withVersion: (major: number, minor: number, patch: number) => UnmanagedBuilder;
4371
+ withDisplayName: (displayName: string) => UnmanagedBuilder;
4372
+ withDescription: (description: string) => UnmanagedBuilder;
4373
+ build: () => BlueprintComponent;
4374
+ };
4375
+ type UnmanagedConfig = {
4376
+ id: string;
4377
+ version: {
4378
+ major: number;
4379
+ minor: number;
4380
+ patch: number;
4381
+ };
4382
+ displayName: string;
4383
+ description?: string;
4384
+ };
4385
+ declare namespace Unmanaged {
4386
+ const getBuilder: () => UnmanagedBuilder;
4387
+ const create: (config: UnmanagedConfig) => UnmanagedComponent;
4388
+ }
4389
+ //#endregion
4390
+ //#region src/fractal/component/storage/paas/relational_dbms.d.ts
4391
+ type RelationalDbmsComponent = {
4392
+ readonly dbms: BlueprintComponent;
4393
+ readonly databases: ReadonlyArray<RelationalDatabaseComponent>;
4394
+ withDatabases: (databases: RelationalDatabaseComponent[]) => RelationalDbmsComponent;
4395
+ };
4396
+ type RelationalDbmsBuilder = {
4397
+ withId: (id: string) => RelationalDbmsBuilder;
4398
+ withVersion: (major: number, minor: number, patch: number) => RelationalDbmsBuilder;
4399
+ withDisplayName: (displayName: string) => RelationalDbmsBuilder;
4400
+ withDescription: (description: string) => RelationalDbmsBuilder;
4401
+ withDbVersion: (version: string) => RelationalDbmsBuilder;
4402
+ build: () => BlueprintComponent;
4403
+ };
4404
+ type RelationalDbmsConfig = {
4405
+ id: string;
4406
+ version: {
4407
+ major: number;
4408
+ minor: number;
4409
+ patch: number;
4410
+ };
4411
+ displayName: string;
4412
+ description?: string;
4413
+ dbVersion?: string;
4414
+ };
4415
+ declare namespace RelationalDbms {
4416
+ const getBuilder: () => RelationalDbmsBuilder;
4417
+ const create: (config: RelationalDbmsConfig) => RelationalDbmsComponent;
4418
+ }
4419
+ //#endregion
4420
+ //#region src/fractal/component/storage/paas/document_dbms.d.ts
4421
+ type DocumentDbmsComponent = {
4422
+ readonly dbms: BlueprintComponent;
4423
+ readonly databases: ReadonlyArray<DocumentDatabaseComponent>;
4424
+ withDatabases: (databases: DocumentDatabaseComponent[]) => DocumentDbmsComponent;
4425
+ };
4426
+ type DocumentDbmsBuilder = {
4427
+ withId: (id: string) => DocumentDbmsBuilder;
4428
+ withVersion: (major: number, minor: number, patch: number) => DocumentDbmsBuilder;
4429
+ withDisplayName: (displayName: string) => DocumentDbmsBuilder;
4430
+ withDescription: (description: string) => DocumentDbmsBuilder;
4431
+ build: () => BlueprintComponent;
4432
+ };
4433
+ type DocumentDbmsConfig = {
4434
+ id: string;
4435
+ version: {
4436
+ major: number;
4437
+ minor: number;
4438
+ patch: number;
4439
+ };
4440
+ displayName: string;
4441
+ description?: string;
4442
+ };
4443
+ declare namespace DocumentDbms {
4444
+ const getBuilder: () => DocumentDbmsBuilder;
4445
+ const create: (config: DocumentDbmsConfig) => DocumentDbmsComponent;
4446
+ }
4447
+ //#endregion
4448
+ //#region src/fractal/component/storage/paas/column_oriented_dbms.d.ts
4449
+ type ColumnOrientedDbmsComponent = {
4450
+ readonly dbms: BlueprintComponent;
4451
+ readonly entities: ReadonlyArray<ColumnOrientedEntityComponent>;
4452
+ withEntities: (entities: ColumnOrientedEntityComponent[]) => ColumnOrientedDbmsComponent;
4453
+ };
4454
+ type ColumnOrientedDbmsBuilder = {
4455
+ withId: (id: string) => ColumnOrientedDbmsBuilder;
4456
+ withVersion: (major: number, minor: number, patch: number) => ColumnOrientedDbmsBuilder;
4457
+ withDisplayName: (displayName: string) => ColumnOrientedDbmsBuilder;
4458
+ withDescription: (description: string) => ColumnOrientedDbmsBuilder;
4459
+ build: () => BlueprintComponent;
4460
+ };
4461
+ type ColumnOrientedDbmsConfig = {
4462
+ id: string;
4463
+ version: {
4464
+ major: number;
4465
+ minor: number;
4466
+ patch: number;
4467
+ };
4468
+ displayName: string;
4469
+ description?: string;
4470
+ };
4471
+ declare namespace ColumnOrientedDbms {
4472
+ const getBuilder: () => ColumnOrientedDbmsBuilder;
4473
+ const create: (config: ColumnOrientedDbmsConfig) => ColumnOrientedDbmsComponent;
4474
+ }
4475
+ //#endregion
4476
+ //#region src/fractal/component/storage/paas/key_value_dbms.d.ts
4477
+ type KeyValueDbmsComponent = {
4478
+ readonly dbms: BlueprintComponent;
4479
+ readonly entities: ReadonlyArray<KeyValueEntityComponent>;
4480
+ withEntities: (entities: KeyValueEntityComponent[]) => KeyValueDbmsComponent;
4481
+ };
4482
+ type KeyValueDbmsBuilder = {
4483
+ withId: (id: string) => KeyValueDbmsBuilder;
4484
+ withVersion: (major: number, minor: number, patch: number) => KeyValueDbmsBuilder;
4485
+ withDisplayName: (displayName: string) => KeyValueDbmsBuilder;
4486
+ withDescription: (description: string) => KeyValueDbmsBuilder;
4487
+ build: () => BlueprintComponent;
4488
+ };
4489
+ type KeyValueDbmsConfig = {
4490
+ id: string;
4491
+ version: {
4492
+ major: number;
4493
+ minor: number;
4494
+ patch: number;
4495
+ };
4496
+ displayName: string;
4497
+ description?: string;
4498
+ };
4499
+ declare namespace KeyValueDbms {
4500
+ const getBuilder: () => KeyValueDbmsBuilder;
4501
+ const create: (config: KeyValueDbmsConfig) => KeyValueDbmsComponent;
4502
+ }
4503
+ //#endregion
4504
+ //#region src/fractal/component/storage/paas/graph_dbms.d.ts
4505
+ type GraphDbmsComponent = {
4506
+ readonly dbms: BlueprintComponent;
4507
+ readonly databases: ReadonlyArray<GraphDatabaseComponent>;
4508
+ withDatabases: (databases: GraphDatabaseComponent[]) => GraphDbmsComponent;
4509
+ };
4510
+ type GraphDbmsBuilder = {
4511
+ withId: (id: string) => GraphDbmsBuilder;
4512
+ withVersion: (major: number, minor: number, patch: number) => GraphDbmsBuilder;
4513
+ withDisplayName: (displayName: string) => GraphDbmsBuilder;
4514
+ withDescription: (description: string) => GraphDbmsBuilder;
4515
+ build: () => BlueprintComponent;
4516
+ };
4517
+ type GraphDbmsConfig = {
4518
+ id: string;
4519
+ version: {
4520
+ major: number;
4521
+ minor: number;
4522
+ patch: number;
4523
+ };
4524
+ displayName: string;
4525
+ description?: string;
4526
+ };
4527
+ declare namespace GraphDbms {
4528
+ const getBuilder: () => GraphDbmsBuilder;
4529
+ const create: (config: GraphDbmsConfig) => GraphDbmsComponent;
4530
+ }
4531
+ //#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
+ //#region src/live_system/component/storage/paas/aws_s3.d.ts
4561
+ /**
4562
+ * Returned by satisfy() — only exposes vendor-specific parameters.
4563
+ * Structural properties (id, version, displayName, description,
4564
+ * dependencies, links) are locked to the blueprint and cannot be overridden.
4565
+ */
4566
+ type SatisfiedAwsS3Builder = {
4567
+ withBucket: (bucket: string) => SatisfiedAwsS3Builder;
4568
+ withAcl: (acl: string) => SatisfiedAwsS3Builder;
4569
+ withForceDestroy: (forceDestroy: boolean) => SatisfiedAwsS3Builder;
4570
+ withVersioningEnabled: (enabled: boolean) => SatisfiedAwsS3Builder;
4571
+ withObjectLockEnabled: (enabled: boolean) => SatisfiedAwsS3Builder;
4572
+ build: () => LiveSystemComponent;
4573
+ };
4574
+ type AwsS3Builder = {
4575
+ withId: (id: string) => AwsS3Builder;
4576
+ withVersion: (major: number, minor: number, patch: number) => AwsS3Builder;
4577
+ withDisplayName: (displayName: string) => AwsS3Builder;
4578
+ withDescription: (description: string) => AwsS3Builder;
4579
+ withBucket: (bucket: string) => AwsS3Builder;
4580
+ withAcl: (acl: string) => AwsS3Builder;
4581
+ withForceDestroy: (forceDestroy: boolean) => AwsS3Builder;
4582
+ withVersioningEnabled: (enabled: boolean) => AwsS3Builder;
4583
+ withObjectLockEnabled: (enabled: boolean) => AwsS3Builder;
4584
+ build: () => LiveSystemComponent;
4585
+ };
4586
+ type AwsS3Config = {
4587
+ id: string;
4588
+ version: {
4589
+ major: number;
4590
+ minor: number;
4591
+ patch: number;
4592
+ };
4593
+ displayName: string;
4594
+ description?: string;
4595
+ bucket?: string;
4596
+ acl?: string;
4597
+ forceDestroy?: boolean;
4598
+ versioningEnabled?: boolean;
4599
+ objectLockEnabled?: boolean;
4600
+ };
4601
+ declare namespace AwsS3 {
4602
+ const getBuilder: () => AwsS3Builder;
4603
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedAwsS3Builder;
4604
+ const create: (config: AwsS3Config) => LiveSystemComponent;
4605
+ }
4606
+ //#endregion
4607
+ //#region src/live_system/component/storage/paas/azure_storage_account.d.ts
4608
+ type SatisfiedAzureStorageAccountBuilder = {
4609
+ withAzureRegion: (region: string) => SatisfiedAzureStorageAccountBuilder;
4610
+ withAzureResourceGroup: (rg: string) => SatisfiedAzureStorageAccountBuilder;
4611
+ withKind: (kind: string) => SatisfiedAzureStorageAccountBuilder;
4612
+ withSku: (sku: string) => SatisfiedAzureStorageAccountBuilder;
4613
+ withAccessTier: (tier: string) => SatisfiedAzureStorageAccountBuilder;
4614
+ build: () => LiveSystemComponent;
4615
+ };
4616
+ type AzureStorageAccountBuilder = {
4617
+ withId: (id: string) => AzureStorageAccountBuilder;
4618
+ withVersion: (major: number, minor: number, patch: number) => AzureStorageAccountBuilder;
4619
+ withDisplayName: (displayName: string) => AzureStorageAccountBuilder;
4620
+ withDescription: (description: string) => AzureStorageAccountBuilder;
4621
+ withAzureRegion: (region: string) => AzureStorageAccountBuilder;
4622
+ withAzureResourceGroup: (rg: string) => AzureStorageAccountBuilder;
4623
+ withKind: (kind: string) => AzureStorageAccountBuilder;
4624
+ withSku: (sku: string) => AzureStorageAccountBuilder;
4625
+ withAccessTier: (tier: string) => AzureStorageAccountBuilder;
4626
+ build: () => LiveSystemComponent;
4627
+ };
4628
+ type AzureStorageAccountConfig = {
4629
+ id: string;
4630
+ version: {
4631
+ major: number;
4632
+ minor: number;
4633
+ patch: number;
4634
+ };
4635
+ displayName: string;
4636
+ description?: string;
4637
+ azureRegion: string;
4638
+ azureResourceGroup: string;
4639
+ kind?: string;
4640
+ sku?: string;
4641
+ accessTier?: string;
4642
+ };
4643
+ declare namespace AzureStorageAccount {
4644
+ const getBuilder: () => AzureStorageAccountBuilder;
4645
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedAzureStorageAccountBuilder;
4646
+ const create: (config: AzureStorageAccountConfig) => LiveSystemComponent;
4647
+ }
4648
+ //#endregion
4649
+ //#region src/live_system/component/storage/paas/azure_blob_container.d.ts
4650
+ type SatisfiedAzureBlobContainerBuilder = {
4651
+ withAzureRegion: (region: string) => SatisfiedAzureBlobContainerBuilder;
4652
+ withAzureResourceGroup: (rg: string) => SatisfiedAzureBlobContainerBuilder;
4653
+ withPublicAccess: (publicAccess: string) => SatisfiedAzureBlobContainerBuilder;
4654
+ build: () => LiveSystemComponent;
4655
+ };
4656
+ type AzureBlobContainerBuilder = {
4657
+ withId: (id: string) => AzureBlobContainerBuilder;
4658
+ withVersion: (major: number, minor: number, patch: number) => AzureBlobContainerBuilder;
4659
+ withDisplayName: (displayName: string) => AzureBlobContainerBuilder;
4660
+ withDescription: (description: string) => AzureBlobContainerBuilder;
4661
+ withAzureRegion: (region: string) => AzureBlobContainerBuilder;
4662
+ withAzureResourceGroup: (rg: string) => AzureBlobContainerBuilder;
4663
+ withPublicAccess: (publicAccess: string) => AzureBlobContainerBuilder;
4664
+ build: () => LiveSystemComponent;
4665
+ };
4666
+ type AzureBlobContainerConfig = {
4667
+ id: string;
4668
+ version: {
4669
+ major: number;
4670
+ minor: number;
4671
+ patch: number;
4672
+ };
4673
+ displayName: string;
4674
+ description?: string;
4675
+ azureRegion: string;
4676
+ azureResourceGroup: string;
4677
+ publicAccess?: string;
4678
+ };
4679
+ declare namespace AzureBlobContainer {
4680
+ const getBuilder: () => AzureBlobContainerBuilder;
4681
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedAzureBlobContainerBuilder;
4682
+ const create: (config: AzureBlobContainerConfig) => LiveSystemComponent;
4683
+ }
4684
+ //#endregion
4685
+ //#region src/live_system/component/storage/paas/azure_file_storage.d.ts
4686
+ type SatisfiedAzureFileStorageBuilder = {
4687
+ withAzureRegion: (region: string) => SatisfiedAzureFileStorageBuilder;
4688
+ withAzureResourceGroup: (rg: string) => SatisfiedAzureFileStorageBuilder;
4689
+ withAccessTier: (tier: string) => SatisfiedAzureFileStorageBuilder;
4690
+ withShareQuota: (quota: number) => SatisfiedAzureFileStorageBuilder;
4691
+ build: () => LiveSystemComponent;
4692
+ };
4693
+ type AzureFileStorageBuilder = {
4694
+ withId: (id: string) => AzureFileStorageBuilder;
4695
+ withVersion: (major: number, minor: number, patch: number) => AzureFileStorageBuilder;
4696
+ withDisplayName: (displayName: string) => AzureFileStorageBuilder;
4697
+ withDescription: (description: string) => AzureFileStorageBuilder;
4698
+ withAzureRegion: (region: string) => AzureFileStorageBuilder;
4699
+ withAzureResourceGroup: (rg: string) => AzureFileStorageBuilder;
4700
+ withAccessTier: (tier: string) => AzureFileStorageBuilder;
4701
+ withShareQuota: (quota: number) => AzureFileStorageBuilder;
4702
+ build: () => LiveSystemComponent;
4703
+ };
4704
+ type AzureFileStorageConfig = {
4705
+ id: string;
4706
+ version: {
4707
+ major: number;
4708
+ minor: number;
4709
+ patch: number;
4710
+ };
4711
+ displayName: string;
4712
+ description?: string;
4713
+ azureRegion: string;
4714
+ azureResourceGroup: string;
4715
+ accessTier?: string;
4716
+ shareQuota?: number;
4717
+ };
4718
+ declare namespace AzureFileStorage {
4719
+ const getBuilder: () => AzureFileStorageBuilder;
4720
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedAzureFileStorageBuilder;
4721
+ const create: (config: AzureFileStorageConfig) => LiveSystemComponent;
4722
+ }
4723
+ //#endregion
4724
+ //#region src/live_system/component/storage/paas/azure_postgresql_dbms.d.ts
4725
+ type SatisfiedAzurePostgreSqlDbmsBuilder = {
4726
+ withAzureRegion: (region: string) => SatisfiedAzurePostgreSqlDbmsBuilder;
4727
+ withAzureResourceGroup: (rg: string) => SatisfiedAzurePostgreSqlDbmsBuilder;
4728
+ withRootUser: (user: string) => SatisfiedAzurePostgreSqlDbmsBuilder;
4729
+ withSkuName: (sku: string) => SatisfiedAzurePostgreSqlDbmsBuilder;
4730
+ withStorageGb: (gb: number) => SatisfiedAzurePostgreSqlDbmsBuilder;
4731
+ withBackupRetentionDays: (days: number) => SatisfiedAzurePostgreSqlDbmsBuilder;
4732
+ build: () => LiveSystemComponent;
4733
+ };
4734
+ type AzurePostgreSqlDbmsBuilder = {
4735
+ withId: (id: string) => AzurePostgreSqlDbmsBuilder;
4736
+ withVersion: (major: number, minor: number, patch: number) => AzurePostgreSqlDbmsBuilder;
4737
+ withDisplayName: (displayName: string) => AzurePostgreSqlDbmsBuilder;
4738
+ withDescription: (description: string) => AzurePostgreSqlDbmsBuilder;
4739
+ withDbVersion: (version: string) => AzurePostgreSqlDbmsBuilder;
4740
+ withAzureRegion: (region: string) => AzurePostgreSqlDbmsBuilder;
4741
+ withAzureResourceGroup: (rg: string) => AzurePostgreSqlDbmsBuilder;
4742
+ withRootUser: (user: string) => AzurePostgreSqlDbmsBuilder;
4743
+ withSkuName: (sku: string) => AzurePostgreSqlDbmsBuilder;
4744
+ withStorageGb: (gb: number) => AzurePostgreSqlDbmsBuilder;
4745
+ withBackupRetentionDays: (days: number) => AzurePostgreSqlDbmsBuilder;
4746
+ build: () => LiveSystemComponent;
4747
+ };
4748
+ type AzurePostgreSqlDbmsConfig = {
4749
+ id: string;
4750
+ version: {
4751
+ major: number;
4752
+ minor: number;
4753
+ patch: number;
4754
+ };
4755
+ displayName: string;
4756
+ description?: string;
4757
+ dbVersion?: string;
4758
+ azureRegion: string;
4759
+ azureResourceGroup: string;
4760
+ rootUser?: string;
4761
+ skuName?: string;
4762
+ storageGb?: number;
4763
+ backupRetentionDays?: number;
4764
+ };
4765
+ declare namespace AzurePostgreSqlDbms {
4766
+ const getBuilder: () => AzurePostgreSqlDbmsBuilder;
4767
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedAzurePostgreSqlDbmsBuilder;
4768
+ const create: (config: AzurePostgreSqlDbmsConfig) => LiveSystemComponent;
4769
+ }
4770
+ //#endregion
4771
+ //#region src/live_system/component/storage/paas/azure_postgresql_database.d.ts
4772
+ type SatisfiedAzurePostgreSqlDatabaseBuilder = {
4773
+ build: () => LiveSystemComponent;
4774
+ };
4775
+ type AzurePostgreSqlDatabaseBuilder = {
4776
+ withId: (id: string) => AzurePostgreSqlDatabaseBuilder;
4777
+ withVersion: (major: number, minor: number, patch: number) => AzurePostgreSqlDatabaseBuilder;
4778
+ withDisplayName: (displayName: string) => AzurePostgreSqlDatabaseBuilder;
4779
+ withDescription: (description: string) => AzurePostgreSqlDatabaseBuilder;
4780
+ withCollation: (collation: string) => AzurePostgreSqlDatabaseBuilder;
4781
+ withCharset: (charset: string) => AzurePostgreSqlDatabaseBuilder;
4782
+ build: () => LiveSystemComponent;
4783
+ };
4784
+ type AzurePostgreSqlDatabaseConfig = {
4785
+ id: string;
4786
+ version: {
4787
+ major: number;
4788
+ minor: number;
4789
+ patch: number;
4790
+ };
4791
+ displayName: string;
4792
+ description?: string;
4793
+ collation?: string;
4794
+ charset?: string;
4795
+ };
4796
+ declare namespace AzurePostgreSqlDatabase {
4797
+ const getBuilder: () => AzurePostgreSqlDatabaseBuilder;
4798
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedAzurePostgreSqlDatabaseBuilder;
4799
+ const create: (config: AzurePostgreSqlDatabaseConfig) => LiveSystemComponent;
4800
+ }
4801
+ //#endregion
4802
+ //#region src/live_system/component/storage/paas/azure_cosmosdb_account.d.ts
4803
+ type SatisfiedAzureCosmosDbAccountBuilder = {
4804
+ withAzureRegion: (region: string) => SatisfiedAzureCosmosDbAccountBuilder;
4805
+ withAzureResourceGroup: (rg: string) => SatisfiedAzureCosmosDbAccountBuilder;
4806
+ withMaxTotalThroughput: (throughput: number) => SatisfiedAzureCosmosDbAccountBuilder;
4807
+ withPublicNetworkAccess: (access: string) => SatisfiedAzureCosmosDbAccountBuilder;
4808
+ build: () => LiveSystemComponent;
4809
+ };
4810
+ type AzureCosmosDbAccountBuilder = {
4811
+ withId: (id: string) => AzureCosmosDbAccountBuilder;
4812
+ withVersion: (major: number, minor: number, patch: number) => AzureCosmosDbAccountBuilder;
4813
+ withDisplayName: (displayName: string) => AzureCosmosDbAccountBuilder;
4814
+ withDescription: (description: string) => AzureCosmosDbAccountBuilder;
4815
+ withAzureRegion: (region: string) => AzureCosmosDbAccountBuilder;
4816
+ withAzureResourceGroup: (rg: string) => AzureCosmosDbAccountBuilder;
4817
+ withMaxTotalThroughput: (throughput: number) => AzureCosmosDbAccountBuilder;
4818
+ withPublicNetworkAccess: (access: string) => AzureCosmosDbAccountBuilder;
4819
+ build: () => LiveSystemComponent;
4820
+ };
4821
+ type AzureCosmosDbAccountConfig = {
4822
+ id: string;
4823
+ version: {
4824
+ major: number;
4825
+ minor: number;
4826
+ patch: number;
4827
+ };
4828
+ displayName: string;
4829
+ description?: string;
4830
+ azureRegion: string;
4831
+ azureResourceGroup: string;
4832
+ maxTotalThroughput?: number;
4833
+ publicNetworkAccess?: string;
4834
+ };
4835
+ declare namespace AzureCosmosDbAccount {
4836
+ const getBuilder: () => AzureCosmosDbAccountBuilder;
4837
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedAzureCosmosDbAccountBuilder;
4838
+ const create: (config: AzureCosmosDbAccountConfig) => LiveSystemComponent;
4839
+ }
4840
+ //#endregion
4841
+ //#region src/live_system/component/storage/paas/azure_cosmosdb_mongo_database.d.ts
4842
+ type SatisfiedAzureCosmosDbMongoDatabaseBuilder = {
4843
+ build: () => LiveSystemComponent;
4844
+ };
4845
+ type AzureCosmosDbMongoDatabaseBuilder = {
4846
+ withId: (id: string) => AzureCosmosDbMongoDatabaseBuilder;
4847
+ withVersion: (major: number, minor: number, patch: number) => AzureCosmosDbMongoDatabaseBuilder;
4848
+ withDisplayName: (displayName: string) => AzureCosmosDbMongoDatabaseBuilder;
4849
+ withDescription: (description: string) => AzureCosmosDbMongoDatabaseBuilder;
4850
+ build: () => LiveSystemComponent;
4851
+ };
4852
+ type AzureCosmosDbMongoDatabaseConfig = {
4853
+ id: string;
4854
+ version: {
4855
+ major: number;
4856
+ minor: number;
4857
+ patch: number;
4858
+ };
4859
+ displayName: string;
4860
+ description?: string;
4861
+ };
4862
+ declare namespace AzureCosmosDbMongoDatabase {
4863
+ const getBuilder: () => AzureCosmosDbMongoDatabaseBuilder;
4864
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedAzureCosmosDbMongoDatabaseBuilder;
4865
+ const create: (config: AzureCosmosDbMongoDatabaseConfig) => LiveSystemComponent;
4866
+ }
4867
+ //#endregion
4868
+ //#region src/live_system/component/storage/paas/azure_cosmosdb_postgresql_database.d.ts
4869
+ type SatisfiedAzureCosmosDbPostgreSqlDatabaseBuilder = {
4870
+ build: () => LiveSystemComponent;
4871
+ };
4872
+ type AzureCosmosDbPostgreSqlDatabaseBuilder = {
4873
+ withId: (id: string) => AzureCosmosDbPostgreSqlDatabaseBuilder;
4874
+ withVersion: (major: number, minor: number, patch: number) => AzureCosmosDbPostgreSqlDatabaseBuilder;
4875
+ withDisplayName: (displayName: string) => AzureCosmosDbPostgreSqlDatabaseBuilder;
4876
+ withDescription: (description: string) => AzureCosmosDbPostgreSqlDatabaseBuilder;
4877
+ withCollation: (collation: string) => AzureCosmosDbPostgreSqlDatabaseBuilder;
4878
+ withCharset: (charset: string) => AzureCosmosDbPostgreSqlDatabaseBuilder;
4879
+ build: () => LiveSystemComponent;
4880
+ };
4881
+ type AzureCosmosDbPostgreSqlDatabaseConfig = {
4882
+ id: string;
4883
+ version: {
4884
+ major: number;
4885
+ minor: number;
4886
+ patch: number;
4887
+ };
4888
+ displayName: string;
4889
+ description?: string;
4890
+ collation?: string;
4891
+ charset?: string;
4892
+ };
4893
+ declare namespace AzureCosmosDbPostgreSqlDatabase {
4894
+ const getBuilder: () => AzureCosmosDbPostgreSqlDatabaseBuilder;
4895
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedAzureCosmosDbPostgreSqlDatabaseBuilder;
4896
+ const create: (config: AzureCosmosDbPostgreSqlDatabaseConfig) => LiveSystemComponent;
4897
+ }
4898
+ //#endregion
4899
+ //#region src/live_system/component/storage/paas/azure_cosmosdb_cassandra.d.ts
4900
+ type SatisfiedAzureCosmosDbCassandraBuilder = {
4901
+ withAzureRegion: (region: string) => SatisfiedAzureCosmosDbCassandraBuilder;
4902
+ withAzureResourceGroup: (rg: string) => SatisfiedAzureCosmosDbCassandraBuilder;
4903
+ withCassandraVersion: (version: string) => SatisfiedAzureCosmosDbCassandraBuilder;
4904
+ withHoursBetweenBackups: (hours: number) => SatisfiedAzureCosmosDbCassandraBuilder;
4905
+ build: () => LiveSystemComponent;
4906
+ };
4907
+ type AzureCosmosDbCassandraBuilder = {
4908
+ withId: (id: string) => AzureCosmosDbCassandraBuilder;
4909
+ withVersion: (major: number, minor: number, patch: number) => AzureCosmosDbCassandraBuilder;
4910
+ withDisplayName: (displayName: string) => AzureCosmosDbCassandraBuilder;
4911
+ withDescription: (description: string) => AzureCosmosDbCassandraBuilder;
4912
+ withAzureRegion: (region: string) => AzureCosmosDbCassandraBuilder;
4913
+ withAzureResourceGroup: (rg: string) => AzureCosmosDbCassandraBuilder;
4914
+ withCassandraVersion: (version: string) => AzureCosmosDbCassandraBuilder;
4915
+ withHoursBetweenBackups: (hours: number) => AzureCosmosDbCassandraBuilder;
4916
+ build: () => LiveSystemComponent;
4917
+ };
4918
+ type AzureCosmosDbCassandraConfig = {
4919
+ id: string;
4920
+ version: {
4921
+ major: number;
4922
+ minor: number;
4923
+ patch: number;
4924
+ };
4925
+ displayName: string;
4926
+ description?: string;
4927
+ azureRegion: string;
4928
+ azureResourceGroup: string;
4929
+ cassandraVersion?: string;
4930
+ hoursBetweenBackups?: number;
4931
+ };
4932
+ declare namespace AzureCosmosDbCassandra {
4933
+ const getBuilder: () => AzureCosmosDbCassandraBuilder;
4934
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedAzureCosmosDbCassandraBuilder;
4935
+ const create: (config: AzureCosmosDbCassandraConfig) => LiveSystemComponent;
4936
+ }
4937
+ //#endregion
4938
+ //#region src/live_system/component/storage/paas/azure_cosmosdb_table.d.ts
4939
+ type SatisfiedAzureCosmosDbTableBuilder = {
4940
+ build: () => LiveSystemComponent;
4941
+ };
4942
+ type AzureCosmosDbTableBuilder = {
4943
+ withId: (id: string) => AzureCosmosDbTableBuilder;
4944
+ withVersion: (major: number, minor: number, patch: number) => AzureCosmosDbTableBuilder;
4945
+ withDisplayName: (displayName: string) => AzureCosmosDbTableBuilder;
4946
+ withDescription: (description: string) => AzureCosmosDbTableBuilder;
4947
+ build: () => LiveSystemComponent;
4948
+ };
4949
+ type AzureCosmosDbTableConfig = {
4950
+ id: string;
4951
+ version: {
4952
+ major: number;
4953
+ minor: number;
4954
+ patch: number;
4955
+ };
4956
+ displayName: string;
4957
+ description?: string;
4958
+ };
4959
+ declare namespace AzureCosmosDbTable {
4960
+ const getBuilder: () => AzureCosmosDbTableBuilder;
4961
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedAzureCosmosDbTableBuilder;
4962
+ const create: (config: AzureCosmosDbTableConfig) => LiveSystemComponent;
4963
+ }
4964
+ //#endregion
4965
+ //#region src/live_system/component/storage/paas/azure_cosmosdb_gremlin.d.ts
4966
+ type SatisfiedAzureCosmosDbGremlinDatabaseBuilder = {
4967
+ build: () => LiveSystemComponent;
4968
+ };
4969
+ type AzureCosmosDbGremlinDatabaseBuilder = {
4970
+ withId: (id: string) => AzureCosmosDbGremlinDatabaseBuilder;
4971
+ withVersion: (major: number, minor: number, patch: number) => AzureCosmosDbGremlinDatabaseBuilder;
4972
+ withDisplayName: (displayName: string) => AzureCosmosDbGremlinDatabaseBuilder;
4973
+ withDescription: (description: string) => AzureCosmosDbGremlinDatabaseBuilder;
4974
+ build: () => LiveSystemComponent;
4975
+ };
4976
+ type AzureCosmosDbGremlinDatabaseConfig = {
4977
+ id: string;
4978
+ version: {
4979
+ major: number;
4980
+ minor: number;
4981
+ patch: number;
4982
+ };
4983
+ displayName: string;
4984
+ description?: string;
4985
+ };
4986
+ declare namespace AzureCosmosDbGremlinDatabase {
4987
+ const getBuilder: () => AzureCosmosDbGremlinDatabaseBuilder;
4988
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedAzureCosmosDbGremlinDatabaseBuilder;
4989
+ const create: (config: AzureCosmosDbGremlinDatabaseConfig) => LiveSystemComponent;
4990
+ }
4991
+ //#endregion
4992
+ //#region src/live_system/component/storage/paas/gcp_cloud_storage.d.ts
4993
+ /**
4994
+ * Returned by satisfy() — only exposes vendor-specific parameters.
4995
+ * Structural properties (id, version, displayName, description,
4996
+ * dependencies, links) are locked to the blueprint and cannot be overridden.
4997
+ */
4998
+ type SatisfiedGcpCloudStorageBuilder = {
4999
+ withRegion: (region: string) => SatisfiedGcpCloudStorageBuilder;
5000
+ withStorageClass: (storageClass: string) => SatisfiedGcpCloudStorageBuilder;
5001
+ withVersioningEnabled: (enabled: boolean) => SatisfiedGcpCloudStorageBuilder;
5002
+ withUniformBucketLevelAccess: (enabled: boolean) => SatisfiedGcpCloudStorageBuilder;
5003
+ build: () => LiveSystemComponent;
5004
+ };
5005
+ type GcpCloudStorageBuilder = {
5006
+ withId: (id: string) => GcpCloudStorageBuilder;
5007
+ withVersion: (major: number, minor: number, patch: number) => GcpCloudStorageBuilder;
5008
+ withDisplayName: (displayName: string) => GcpCloudStorageBuilder;
5009
+ withDescription: (description: string) => GcpCloudStorageBuilder;
5010
+ withRegion: (region: string) => GcpCloudStorageBuilder;
5011
+ withStorageClass: (storageClass: string) => GcpCloudStorageBuilder;
5012
+ withVersioningEnabled: (enabled: boolean) => GcpCloudStorageBuilder;
5013
+ withUniformBucketLevelAccess: (enabled: boolean) => GcpCloudStorageBuilder;
5014
+ build: () => LiveSystemComponent;
5015
+ };
5016
+ type GcpCloudStorageConfig = {
5017
+ id: string;
5018
+ version: {
5019
+ major: number;
5020
+ minor: number;
5021
+ patch: number;
5022
+ };
5023
+ displayName: string;
5024
+ description?: string;
5025
+ region: string;
5026
+ storageClass?: string;
5027
+ versioningEnabled?: boolean;
5028
+ uniformBucketLevelAccess?: boolean;
5029
+ };
5030
+ declare namespace GcpCloudStorage {
5031
+ const getBuilder: () => GcpCloudStorageBuilder;
5032
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedGcpCloudStorageBuilder;
5033
+ const create: (config: GcpCloudStorageConfig) => LiveSystemComponent;
5034
+ }
5035
+ //#endregion
5036
+ //#region src/live_system/component/storage/paas/gcp_postgresql_dbms.d.ts
5037
+ /**
5038
+ * Returned by satisfy() — only exposes vendor-specific parameters.
5039
+ * Structural properties (id, version, displayName, description,
5040
+ * dependencies, links, dbVersion) are locked to the blueprint.
5041
+ */
5042
+ type SatisfiedGcpPostgreSqlDbmsBuilder = {
5043
+ withRegion: (region: string) => SatisfiedGcpPostgreSqlDbmsBuilder;
5044
+ withTier: (tier: string) => SatisfiedGcpPostgreSqlDbmsBuilder;
5045
+ withStorageAutoResize: (enabled: boolean) => SatisfiedGcpPostgreSqlDbmsBuilder;
5046
+ build: () => LiveSystemComponent;
5047
+ };
5048
+ type GcpPostgreSqlDbmsBuilder = {
5049
+ withId: (id: string) => GcpPostgreSqlDbmsBuilder;
5050
+ withVersion: (major: number, minor: number, patch: number) => GcpPostgreSqlDbmsBuilder;
5051
+ withDisplayName: (displayName: string) => GcpPostgreSqlDbmsBuilder;
5052
+ withDescription: (description: string) => GcpPostgreSqlDbmsBuilder;
5053
+ withDbVersion: (version: string) => GcpPostgreSqlDbmsBuilder;
5054
+ withRegion: (region: string) => GcpPostgreSqlDbmsBuilder;
5055
+ withTier: (tier: string) => GcpPostgreSqlDbmsBuilder;
5056
+ withStorageAutoResize: (enabled: boolean) => GcpPostgreSqlDbmsBuilder;
5057
+ build: () => LiveSystemComponent;
5058
+ };
5059
+ type GcpPostgreSqlDbmsConfig = {
5060
+ id: string;
5061
+ version: {
5062
+ major: number;
5063
+ minor: number;
5064
+ patch: number;
5065
+ };
5066
+ displayName: string;
5067
+ description?: string;
5068
+ dbVersion?: string;
5069
+ region: string;
5070
+ tier?: string;
5071
+ storageAutoResize?: boolean;
5072
+ };
5073
+ declare namespace GcpPostgreSqlDbms {
5074
+ const getBuilder: () => GcpPostgreSqlDbmsBuilder;
5075
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedGcpPostgreSqlDbmsBuilder;
5076
+ const create: (config: GcpPostgreSqlDbmsConfig) => LiveSystemComponent;
5077
+ }
5078
+ //#endregion
5079
+ //#region src/live_system/component/storage/paas/gcp_postgresql_database.d.ts
5080
+ /**
5081
+ * Returned by satisfy() — only exposes build().
5082
+ * Structural properties (id, version, displayName, description,
5083
+ * dependencies, links, collation, charset) are locked to the blueprint.
5084
+ */
5085
+ type SatisfiedGcpPostgreSqlDatabaseBuilder = {
5086
+ build: () => LiveSystemComponent;
5087
+ };
5088
+ type GcpPostgreSqlDatabaseBuilder = {
5089
+ withId: (id: string) => GcpPostgreSqlDatabaseBuilder;
5090
+ withVersion: (major: number, minor: number, patch: number) => GcpPostgreSqlDatabaseBuilder;
5091
+ withDisplayName: (displayName: string) => GcpPostgreSqlDatabaseBuilder;
5092
+ withDescription: (description: string) => GcpPostgreSqlDatabaseBuilder;
5093
+ withCollation: (collation: string) => GcpPostgreSqlDatabaseBuilder;
5094
+ withCharset: (charset: string) => GcpPostgreSqlDatabaseBuilder;
5095
+ build: () => LiveSystemComponent;
5096
+ };
5097
+ type GcpPostgreSqlDatabaseConfig = {
5098
+ id: string;
5099
+ version: {
5100
+ major: number;
5101
+ minor: number;
5102
+ patch: number;
5103
+ };
5104
+ displayName: string;
5105
+ description?: string;
5106
+ collation?: string;
5107
+ charset?: string;
5108
+ };
5109
+ declare namespace GcpPostgreSqlDatabase {
5110
+ const getBuilder: () => GcpPostgreSqlDatabaseBuilder;
5111
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedGcpPostgreSqlDatabaseBuilder;
5112
+ const create: (config: GcpPostgreSqlDatabaseConfig) => LiveSystemComponent;
5113
+ }
5114
+ //#endregion
5115
+ //#region src/live_system/component/storage/paas/gcp_firestore.d.ts
5116
+ /**
5117
+ * Returned by satisfy() — no vendor-specific parameters.
5118
+ * Structural properties (id, version, displayName, description,
5119
+ * dependencies, links) are locked to the blueprint.
5120
+ */
5121
+ type SatisfiedGcpFirestoreBuilder = {
5122
+ build: () => LiveSystemComponent;
5123
+ };
5124
+ type GcpFirestoreBuilder = {
5125
+ withId: (id: string) => GcpFirestoreBuilder;
5126
+ withVersion: (major: number, minor: number, patch: number) => GcpFirestoreBuilder;
5127
+ withDisplayName: (displayName: string) => GcpFirestoreBuilder;
5128
+ withDescription: (description: string) => GcpFirestoreBuilder;
5129
+ build: () => LiveSystemComponent;
5130
+ };
5131
+ type GcpFirestoreConfig = {
5132
+ id: string;
5133
+ version: {
5134
+ major: number;
5135
+ minor: number;
5136
+ patch: number;
5137
+ };
5138
+ displayName: string;
5139
+ description?: string;
5140
+ };
5141
+ declare namespace GcpFirestore {
5142
+ const getBuilder: () => GcpFirestoreBuilder;
5143
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedGcpFirestoreBuilder;
5144
+ const create: (config: GcpFirestoreConfig) => LiveSystemComponent;
5145
+ }
5146
+ //#endregion
5147
+ //#region src/live_system/component/storage/paas/gcp_firestore_collection.d.ts
5148
+ /**
5149
+ * Returned by satisfy() — no vendor-specific parameters.
5150
+ * Structural properties (id, version, displayName, description,
5151
+ * dependencies, links) are locked to the blueprint.
5152
+ */
5153
+ type SatisfiedGcpFirestoreCollectionBuilder = {
5154
+ build: () => LiveSystemComponent;
5155
+ };
5156
+ type GcpFirestoreCollectionBuilder = {
5157
+ withId: (id: string) => GcpFirestoreCollectionBuilder;
5158
+ withVersion: (major: number, minor: number, patch: number) => GcpFirestoreCollectionBuilder;
5159
+ withDisplayName: (displayName: string) => GcpFirestoreCollectionBuilder;
5160
+ withDescription: (description: string) => GcpFirestoreCollectionBuilder;
5161
+ build: () => LiveSystemComponent;
5162
+ };
5163
+ type GcpFirestoreCollectionConfig = {
5164
+ id: string;
5165
+ version: {
5166
+ major: number;
5167
+ minor: number;
5168
+ patch: number;
5169
+ };
5170
+ displayName: string;
5171
+ description?: string;
5172
+ };
5173
+ declare namespace GcpFirestoreCollection {
5174
+ const getBuilder: () => GcpFirestoreCollectionBuilder;
5175
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedGcpFirestoreCollectionBuilder;
5176
+ const create: (config: GcpFirestoreCollectionConfig) => LiveSystemComponent;
5177
+ }
5178
+ //#endregion
5179
+ //#region src/live_system/component/storage/paas/gcp_bigtable.d.ts
5180
+ /**
5181
+ * Returned by satisfy() — only exposes vendor-specific parameters.
5182
+ * Structural properties (id, version, displayName, description,
5183
+ * dependencies, links) are locked to the blueprint.
5184
+ */
5185
+ type SatisfiedGcpBigTableBuilder = {
5186
+ withRegion: (region: string) => SatisfiedGcpBigTableBuilder;
5187
+ withInstanceType: (instanceType: string) => SatisfiedGcpBigTableBuilder;
5188
+ withStorageType: (storageType: string) => SatisfiedGcpBigTableBuilder;
5189
+ withClusterNodeCount: (count: number) => SatisfiedGcpBigTableBuilder;
5190
+ withReplicationEnabled: (enabled: boolean) => SatisfiedGcpBigTableBuilder;
5191
+ build: () => LiveSystemComponent;
5192
+ };
5193
+ type GcpBigTableBuilder = {
5194
+ withId: (id: string) => GcpBigTableBuilder;
5195
+ withVersion: (major: number, minor: number, patch: number) => GcpBigTableBuilder;
5196
+ withDisplayName: (displayName: string) => GcpBigTableBuilder;
5197
+ withDescription: (description: string) => GcpBigTableBuilder;
5198
+ withRegion: (region: string) => GcpBigTableBuilder;
5199
+ withInstanceType: (instanceType: string) => GcpBigTableBuilder;
5200
+ withStorageType: (storageType: string) => GcpBigTableBuilder;
5201
+ withClusterNodeCount: (count: number) => GcpBigTableBuilder;
5202
+ withReplicationEnabled: (enabled: boolean) => GcpBigTableBuilder;
5203
+ build: () => LiveSystemComponent;
5204
+ };
5205
+ type GcpBigTableConfig = {
5206
+ id: string;
5207
+ version: {
5208
+ major: number;
5209
+ minor: number;
5210
+ patch: number;
5211
+ };
5212
+ displayName: string;
5213
+ description?: string;
5214
+ region: string;
5215
+ instanceType?: string;
5216
+ storageType?: string;
5217
+ clusterNodeCount?: number;
5218
+ replicationEnabled?: boolean;
5219
+ };
5220
+ declare namespace GcpBigTable {
5221
+ const getBuilder: () => GcpBigTableBuilder;
5222
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedGcpBigTableBuilder;
5223
+ const create: (config: GcpBigTableConfig) => LiveSystemComponent;
5224
+ }
5225
+ //#endregion
5226
+ //#region src/live_system/component/storage/paas/gcp_bigtable_table.d.ts
5227
+ /**
5228
+ * Returned by satisfy() — only exposes vendor-specific parameters.
5229
+ * Structural properties (id, version, displayName, description,
5230
+ * dependencies, links) are locked to the blueprint.
5231
+ */
5232
+ type SatisfiedGcpBigTableTableBuilder = {
5233
+ withTableId: (tableId: string) => SatisfiedGcpBigTableTableBuilder;
5234
+ withColumnFamilies: (families: string[]) => SatisfiedGcpBigTableTableBuilder;
5235
+ withSplitKeys: (keys: string[]) => SatisfiedGcpBigTableTableBuilder;
5236
+ build: () => LiveSystemComponent;
5237
+ };
5238
+ type GcpBigTableTableBuilder = {
5239
+ withId: (id: string) => GcpBigTableTableBuilder;
5240
+ withVersion: (major: number, minor: number, patch: number) => GcpBigTableTableBuilder;
5241
+ withDisplayName: (displayName: string) => GcpBigTableTableBuilder;
5242
+ withDescription: (description: string) => GcpBigTableTableBuilder;
5243
+ withTableId: (tableId: string) => GcpBigTableTableBuilder;
5244
+ withColumnFamilies: (families: string[]) => GcpBigTableTableBuilder;
5245
+ withSplitKeys: (keys: string[]) => GcpBigTableTableBuilder;
5246
+ build: () => LiveSystemComponent;
5247
+ };
5248
+ type GcpBigTableTableConfig = {
5249
+ id: string;
5250
+ version: {
5251
+ major: number;
5252
+ minor: number;
5253
+ patch: number;
5254
+ };
5255
+ displayName: string;
5256
+ description?: string;
5257
+ tableId?: string;
5258
+ columnFamilies?: string[];
5259
+ splitKeys?: string[];
5260
+ };
5261
+ declare namespace GcpBigTableTable {
5262
+ const getBuilder: () => GcpBigTableTableBuilder;
5263
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedGcpBigTableTableBuilder;
5264
+ const create: (config: GcpBigTableTableConfig) => LiveSystemComponent;
5265
+ }
5266
+ //#endregion
5267
+ //#region src/live_system/component/storage/caas/elastic.d.ts
5268
+ /**
5269
+ * Returned by satisfy() — only exposes vendor-specific parameters.
5270
+ * Structural properties (id, version, displayName, description,
5271
+ * dependencies, links) are locked to the blueprint and cannot be overridden.
5272
+ */
5273
+ type SatisfiedElasticBuilder = {
5274
+ withNamespace: (namespace: string) => SatisfiedElasticBuilder;
5275
+ withElasticVersion: (version: string) => SatisfiedElasticBuilder;
5276
+ withElasticInstances: (instances: number) => SatisfiedElasticBuilder;
5277
+ withStorage: (storage: string) => SatisfiedElasticBuilder;
5278
+ build: () => LiveSystemComponent;
5279
+ };
5280
+ type ElasticBuilder = {
5281
+ withId: (id: string) => ElasticBuilder;
5282
+ withVersion: (major: number, minor: number, patch: number) => ElasticBuilder;
5283
+ withDisplayName: (displayName: string) => ElasticBuilder;
5284
+ withDescription: (description: string) => ElasticBuilder;
5285
+ withNamespace: (namespace: string) => ElasticBuilder;
5286
+ withElasticVersion: (version: string) => ElasticBuilder;
5287
+ withElasticInstances: (instances: number) => ElasticBuilder;
5288
+ withStorage: (storage: string) => ElasticBuilder;
5289
+ build: () => LiveSystemComponent;
5290
+ };
5291
+ type ElasticConfig = {
5292
+ id: string;
5293
+ version: {
5294
+ major: number;
5295
+ minor: number;
5296
+ patch: number;
5297
+ };
5298
+ displayName: string;
5299
+ description?: string;
5300
+ namespace?: string;
5301
+ elasticVersion?: string;
5302
+ elasticInstances?: number;
5303
+ storage?: string;
5304
+ };
5305
+ declare namespace Elastic {
5306
+ const getBuilder: () => ElasticBuilder;
5307
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedElasticBuilder;
5308
+ const create: (config: ElasticConfig) => LiveSystemComponent;
5309
+ }
5310
+ //#endregion
5311
+ //#region src/live_system/component/storage/caas/index_pattern.d.ts
5312
+ /**
5313
+ * Returned by satisfy() — only exposes vendor-specific parameters.
5314
+ * Structural properties (id, version, displayName, description,
5315
+ * dependencies, links) are locked to the blueprint and cannot be overridden.
5316
+ */
5317
+ type SatisfiedIndexPatternBuilder = {
5318
+ withNamespace: (namespace: string) => SatisfiedIndexPatternBuilder;
5319
+ withPattern: (pattern: string) => SatisfiedIndexPatternBuilder;
5320
+ withTimeField: (timeField: string) => SatisfiedIndexPatternBuilder;
5321
+ withIsDefault: (isDefault: boolean) => SatisfiedIndexPatternBuilder;
5322
+ build: () => LiveSystemComponent;
5323
+ };
5324
+ type IndexPatternBuilder = {
5325
+ withId: (id: string) => IndexPatternBuilder;
5326
+ withVersion: (major: number, minor: number, patch: number) => IndexPatternBuilder;
5327
+ withDisplayName: (displayName: string) => IndexPatternBuilder;
5328
+ withDescription: (description: string) => IndexPatternBuilder;
5329
+ withNamespace: (namespace: string) => IndexPatternBuilder;
5330
+ withPattern: (pattern: string) => IndexPatternBuilder;
5331
+ withTimeField: (timeField: string) => IndexPatternBuilder;
5332
+ withIsDefault: (isDefault: boolean) => IndexPatternBuilder;
5333
+ build: () => LiveSystemComponent;
5334
+ };
5335
+ type IndexPatternConfig = {
5336
+ id: string;
5337
+ version: {
5338
+ major: number;
5339
+ minor: number;
5340
+ patch: number;
5341
+ };
5342
+ displayName: string;
5343
+ description?: string;
5344
+ namespace?: string;
5345
+ pattern?: string;
5346
+ timeField?: string;
5347
+ isDefault?: boolean;
5348
+ };
5349
+ declare namespace IndexPattern {
5350
+ const getBuilder: () => IndexPatternBuilder;
5351
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedIndexPatternBuilder;
5352
+ const create: (config: IndexPatternConfig) => LiveSystemComponent;
5353
+ }
5354
+ //#endregion
5355
+ //#region src/live_system/component/storage/caas/openshift_persistent_volume.d.ts
5356
+ /**
5357
+ * Returned by satisfy() — only exposes vendor-specific parameters.
5358
+ * Structural properties (id, version, displayName, description,
5359
+ * dependencies, links) are locked to the blueprint and cannot be overridden.
5360
+ */
5361
+ type SatisfiedOpenshiftPersistentVolumeBuilder = {
5362
+ withName: (name: string) => SatisfiedOpenshiftPersistentVolumeBuilder;
5363
+ withStorageSize: (size: string) => SatisfiedOpenshiftPersistentVolumeBuilder;
5364
+ withStorageClassName: (className: string) => SatisfiedOpenshiftPersistentVolumeBuilder;
5365
+ withAccessMode: (mode: string) => SatisfiedOpenshiftPersistentVolumeBuilder;
5366
+ withNamespace: (namespace: string) => SatisfiedOpenshiftPersistentVolumeBuilder;
5367
+ build: () => LiveSystemComponent;
5368
+ };
5369
+ type OpenshiftPersistentVolumeBuilder = {
5370
+ withId: (id: string) => OpenshiftPersistentVolumeBuilder;
5371
+ withVersion: (major: number, minor: number, patch: number) => OpenshiftPersistentVolumeBuilder;
5372
+ withDisplayName: (displayName: string) => OpenshiftPersistentVolumeBuilder;
5373
+ withDescription: (description: string) => OpenshiftPersistentVolumeBuilder;
5374
+ withName: (name: string) => OpenshiftPersistentVolumeBuilder;
5375
+ withStorageSize: (size: string) => OpenshiftPersistentVolumeBuilder;
5376
+ withStorageClassName: (className: string) => OpenshiftPersistentVolumeBuilder;
5377
+ withAccessMode: (mode: string) => OpenshiftPersistentVolumeBuilder;
5378
+ withNamespace: (namespace: string) => OpenshiftPersistentVolumeBuilder;
5379
+ build: () => LiveSystemComponent;
5380
+ };
5381
+ type OpenshiftPersistentVolumeConfig = {
5382
+ id: string;
5383
+ version: {
5384
+ major: number;
5385
+ minor: number;
5386
+ patch: number;
5387
+ };
5388
+ displayName: string;
5389
+ description?: string;
5390
+ name: string;
5391
+ storageSize: string;
5392
+ storageClassName?: string;
5393
+ accessMode?: string;
5394
+ namespace?: string;
5395
+ };
5396
+ declare namespace OpenshiftPersistentVolume {
5397
+ const getBuilder: () => OpenshiftPersistentVolumeBuilder;
5398
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedOpenshiftPersistentVolumeBuilder;
5399
+ const create: (config: OpenshiftPersistentVolumeConfig) => LiveSystemComponent;
5400
+ }
5401
+ //#endregion
5402
+ //#region src/live_system/component/storage/saas/unmanaged.d.ts
5403
+ /**
5404
+ * Returned by satisfy() — no vendor-specific parameters.
5405
+ * Structural properties (id, version, displayName, description,
5406
+ * dependencies, links) are locked to the blueprint and cannot be overridden.
5407
+ */
5408
+ type SatisfiedSaaSUnmanagedBuilder = {
5409
+ build: () => LiveSystemComponent;
5410
+ };
5411
+ type SaaSUnmanagedBuilder = {
5412
+ withId: (id: string) => SaaSUnmanagedBuilder;
5413
+ withVersion: (major: number, minor: number, patch: number) => SaaSUnmanagedBuilder;
5414
+ withDisplayName: (displayName: string) => SaaSUnmanagedBuilder;
5415
+ withDescription: (description: string) => SaaSUnmanagedBuilder;
5416
+ build: () => LiveSystemComponent;
5417
+ };
5418
+ type SaaSUnmanagedConfig = {
5419
+ id: string;
5420
+ version: {
5421
+ major: number;
5422
+ minor: number;
5423
+ patch: number;
5424
+ };
5425
+ displayName: string;
5426
+ description?: string;
5427
+ };
5428
+ declare namespace SaaSUnmanaged {
5429
+ const getBuilder: () => SaaSUnmanagedBuilder;
5430
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedSaaSUnmanagedBuilder;
5431
+ const create: (config: SaaSUnmanagedConfig) => LiveSystemComponent;
5432
+ }
5433
+ //#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
+ //#region src/fractal/component/messaging/paas/broker.d.ts
5464
+ type BrokerComponent = {
5465
+ readonly broker: BlueprintComponent;
5466
+ readonly entities: ReadonlyArray<MessagingEntityComponent>;
5467
+ withEntities: (entities: MessagingEntityComponent[]) => BrokerComponent;
5468
+ };
5469
+ type BrokerBuilder = {
5470
+ withId: (id: string) => BrokerBuilder;
5471
+ withVersion: (major: number, minor: number, patch: number) => BrokerBuilder;
5472
+ withDisplayName: (displayName: string) => BrokerBuilder;
5473
+ withDescription: (description: string) => BrokerBuilder;
5474
+ build: () => BlueprintComponent;
5475
+ };
5476
+ type BrokerConfig = {
5477
+ id: string;
5478
+ version: {
5479
+ major: number;
5480
+ minor: number;
5481
+ patch: number;
5482
+ };
5483
+ displayName: string;
5484
+ description?: string;
5485
+ };
5486
+ declare namespace Broker {
5487
+ const getBuilder: () => BrokerBuilder;
5488
+ const create: (config: BrokerConfig) => BrokerComponent;
5489
+ }
5490
+ //#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
+ //#region src/fractal/component/messaging/saas/unmanaged.d.ts
5547
+ type MessagingUnmanagedComponent = {
5548
+ readonly component: BlueprintComponent;
5549
+ readonly components: ReadonlyArray<BlueprintComponent>;
5550
+ };
5551
+ type MessagingUnmanagedBuilder = {
5552
+ withId: (id: string) => MessagingUnmanagedBuilder;
5553
+ withVersion: (major: number, minor: number, patch: number) => MessagingUnmanagedBuilder;
5554
+ withDisplayName: (displayName: string) => MessagingUnmanagedBuilder;
5555
+ withDescription: (description: string) => MessagingUnmanagedBuilder;
5556
+ build: () => BlueprintComponent;
5557
+ };
5558
+ type MessagingUnmanagedConfig = {
5559
+ id: string;
5560
+ version: {
5561
+ major: number;
5562
+ minor: number;
5563
+ patch: number;
5564
+ };
5565
+ displayName: string;
5566
+ description?: string;
5567
+ };
5568
+ declare namespace MessagingUnmanaged {
5569
+ const getBuilder: () => MessagingUnmanagedBuilder;
5570
+ const create: (config: MessagingUnmanagedConfig) => MessagingUnmanagedComponent;
5571
+ }
5572
+ //#endregion
5573
+ //#region src/live_system/component/messaging/paas/azure_service_bus.d.ts
5574
+ type SatisfiedAzureServiceBusBuilder = {
5575
+ withAzureRegion: (region: string) => SatisfiedAzureServiceBusBuilder;
5576
+ withAzureResourceGroup: (rg: string) => SatisfiedAzureServiceBusBuilder;
5577
+ withSku: (sku: string) => SatisfiedAzureServiceBusBuilder;
5578
+ build: () => LiveSystemComponent;
5579
+ };
5580
+ type AzureServiceBusBuilder = {
5581
+ withId: (id: string) => AzureServiceBusBuilder;
5582
+ withVersion: (major: number, minor: number, patch: number) => AzureServiceBusBuilder;
5583
+ withDisplayName: (displayName: string) => AzureServiceBusBuilder;
5584
+ withDescription: (description: string) => AzureServiceBusBuilder;
5585
+ withAzureRegion: (region: string) => AzureServiceBusBuilder;
5586
+ withAzureResourceGroup: (rg: string) => AzureServiceBusBuilder;
5587
+ withSku: (sku: string) => AzureServiceBusBuilder;
5588
+ build: () => LiveSystemComponent;
5589
+ };
5590
+ type AzureServiceBusConfig = {
5591
+ id: string;
5592
+ version: {
5593
+ major: number;
5594
+ minor: number;
5595
+ patch: number;
5596
+ };
5597
+ displayName: string;
5598
+ description?: string;
5599
+ azureRegion: string;
5600
+ azureResourceGroup: string;
5601
+ sku?: string;
5602
+ };
5603
+ declare namespace AzureServiceBus {
5604
+ const getBuilder: () => AzureServiceBusBuilder;
5605
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedAzureServiceBusBuilder;
5606
+ const create: (config: AzureServiceBusConfig) => LiveSystemComponent;
5607
+ }
5608
+ //#endregion
5609
+ //#region src/live_system/component/messaging/paas/azure_service_bus_topic.d.ts
5610
+ type SatisfiedAzureServiceBusTopicBuilder = {
5611
+ withAzureRegion: (region: string) => SatisfiedAzureServiceBusTopicBuilder;
5612
+ withAzureResourceGroup: (rg: string) => SatisfiedAzureServiceBusTopicBuilder;
5613
+ build: () => LiveSystemComponent;
5614
+ };
5615
+ type AzureServiceBusTopicBuilder = {
5616
+ withId: (id: string) => AzureServiceBusTopicBuilder;
5617
+ withVersion: (major: number, minor: number, patch: number) => AzureServiceBusTopicBuilder;
5618
+ withDisplayName: (displayName: string) => AzureServiceBusTopicBuilder;
5619
+ withDescription: (description: string) => AzureServiceBusTopicBuilder;
5620
+ withAzureRegion: (region: string) => AzureServiceBusTopicBuilder;
5621
+ withAzureResourceGroup: (rg: string) => AzureServiceBusTopicBuilder;
5622
+ build: () => LiveSystemComponent;
5623
+ };
5624
+ type AzureServiceBusTopicConfig = {
5625
+ id: string;
5626
+ version: {
5627
+ major: number;
5628
+ minor: number;
5629
+ patch: number;
5630
+ };
5631
+ displayName: string;
5632
+ description?: string;
5633
+ azureRegion: string;
5634
+ azureResourceGroup: string;
5635
+ };
5636
+ declare namespace AzureServiceBusTopic {
5637
+ const getBuilder: () => AzureServiceBusTopicBuilder;
5638
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedAzureServiceBusTopicBuilder;
5639
+ const create: (config: AzureServiceBusTopicConfig) => LiveSystemComponent;
5640
+ }
5641
+ //#endregion
5642
+ //#region src/live_system/component/messaging/paas/azure_service_bus_queue.d.ts
5643
+ type SatisfiedAzureServiceBusQueueBuilder = {
5644
+ withAzureRegion: (region: string) => SatisfiedAzureServiceBusQueueBuilder;
5645
+ withAzureResourceGroup: (rg: string) => SatisfiedAzureServiceBusQueueBuilder;
5646
+ build: () => LiveSystemComponent;
5647
+ };
5648
+ type AzureServiceBusQueueBuilder = {
5649
+ withId: (id: string) => AzureServiceBusQueueBuilder;
5650
+ withVersion: (major: number, minor: number, patch: number) => AzureServiceBusQueueBuilder;
5651
+ withDisplayName: (displayName: string) => AzureServiceBusQueueBuilder;
5652
+ withDescription: (description: string) => AzureServiceBusQueueBuilder;
5653
+ withAzureRegion: (region: string) => AzureServiceBusQueueBuilder;
5654
+ withAzureResourceGroup: (rg: string) => AzureServiceBusQueueBuilder;
5655
+ build: () => LiveSystemComponent;
5656
+ };
5657
+ type AzureServiceBusQueueConfig = {
5658
+ id: string;
5659
+ version: {
5660
+ major: number;
5661
+ minor: number;
5662
+ patch: number;
5663
+ };
5664
+ displayName: string;
5665
+ description?: string;
5666
+ azureRegion: string;
5667
+ azureResourceGroup: string;
5668
+ };
5669
+ declare namespace AzureServiceBusQueue {
5670
+ const getBuilder: () => AzureServiceBusQueueBuilder;
5671
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedAzureServiceBusQueueBuilder;
5672
+ const create: (config: AzureServiceBusQueueConfig) => LiveSystemComponent;
5673
+ }
5674
+ //#endregion
5675
+ //#region src/live_system/component/messaging/paas/azure_relay.d.ts
5676
+ type SatisfiedAzureRelayBuilder = {
5677
+ withAzureRegion: (region: string) => SatisfiedAzureRelayBuilder;
5678
+ withAzureResourceGroup: (rg: string) => SatisfiedAzureRelayBuilder;
5679
+ withSku: (sku: string) => SatisfiedAzureRelayBuilder;
5680
+ build: () => LiveSystemComponent;
5681
+ };
5682
+ type AzureRelayBuilder = {
5683
+ withId: (id: string) => AzureRelayBuilder;
5684
+ withVersion: (major: number, minor: number, patch: number) => AzureRelayBuilder;
5685
+ withDisplayName: (displayName: string) => AzureRelayBuilder;
5686
+ withDescription: (description: string) => AzureRelayBuilder;
5687
+ withAzureRegion: (region: string) => AzureRelayBuilder;
5688
+ withAzureResourceGroup: (rg: string) => AzureRelayBuilder;
5689
+ withSku: (sku: string) => AzureRelayBuilder;
5690
+ build: () => LiveSystemComponent;
5691
+ };
5692
+ type AzureRelayConfig = {
5693
+ id: string;
5694
+ version: {
5695
+ major: number;
5696
+ minor: number;
5697
+ patch: number;
5698
+ };
5699
+ displayName: string;
5700
+ description?: string;
5701
+ azureRegion: string;
5702
+ azureResourceGroup: string;
5703
+ sku?: string;
5704
+ };
5705
+ declare namespace AzureRelay {
5706
+ const getBuilder: () => AzureRelayBuilder;
5707
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedAzureRelayBuilder;
5708
+ const create: (config: AzureRelayConfig) => LiveSystemComponent;
5709
+ }
5710
+ //#endregion
5711
+ //#region src/live_system/component/messaging/paas/azure_eventhub_namespace.d.ts
5712
+ type SatisfiedAzureEventHubNamespaceBuilder = {
5713
+ withAzureRegion: (region: string) => SatisfiedAzureEventHubNamespaceBuilder;
5714
+ withAzureResourceGroup: (rg: string) => SatisfiedAzureEventHubNamespaceBuilder;
5715
+ withKafkaEnabled: (enabled: boolean) => SatisfiedAzureEventHubNamespaceBuilder;
5716
+ withAutoInflateEnabled: (enabled: boolean) => SatisfiedAzureEventHubNamespaceBuilder;
5717
+ withMaximumThroughputUnits: (units: number) => SatisfiedAzureEventHubNamespaceBuilder;
5718
+ withMinimumTlsVersion: (version: string) => SatisfiedAzureEventHubNamespaceBuilder;
5719
+ withPublicNetworkAccess: (access: string) => SatisfiedAzureEventHubNamespaceBuilder;
5720
+ withSkuName: (name: string) => SatisfiedAzureEventHubNamespaceBuilder;
5721
+ withSkuTier: (tier: string) => SatisfiedAzureEventHubNamespaceBuilder;
5722
+ withSkuCapacity: (capacity: number) => SatisfiedAzureEventHubNamespaceBuilder;
5723
+ withZoneRedundant: (zoneRedundant: boolean) => SatisfiedAzureEventHubNamespaceBuilder;
5724
+ build: () => LiveSystemComponent;
5725
+ };
5726
+ type AzureEventHubNamespaceBuilder = {
5727
+ withId: (id: string) => AzureEventHubNamespaceBuilder;
5728
+ withVersion: (major: number, minor: number, patch: number) => AzureEventHubNamespaceBuilder;
5729
+ withDisplayName: (displayName: string) => AzureEventHubNamespaceBuilder;
5730
+ withDescription: (description: string) => AzureEventHubNamespaceBuilder;
5731
+ withAzureRegion: (region: string) => AzureEventHubNamespaceBuilder;
5732
+ withAzureResourceGroup: (rg: string) => AzureEventHubNamespaceBuilder;
5733
+ withKafkaEnabled: (enabled: boolean) => AzureEventHubNamespaceBuilder;
5734
+ withAutoInflateEnabled: (enabled: boolean) => AzureEventHubNamespaceBuilder;
5735
+ withMaximumThroughputUnits: (units: number) => AzureEventHubNamespaceBuilder;
5736
+ withMinimumTlsVersion: (version: string) => AzureEventHubNamespaceBuilder;
5737
+ withPublicNetworkAccess: (access: string) => AzureEventHubNamespaceBuilder;
5738
+ withSkuName: (name: string) => AzureEventHubNamespaceBuilder;
5739
+ withSkuTier: (tier: string) => AzureEventHubNamespaceBuilder;
5740
+ withSkuCapacity: (capacity: number) => AzureEventHubNamespaceBuilder;
5741
+ withZoneRedundant: (zoneRedundant: boolean) => AzureEventHubNamespaceBuilder;
5742
+ build: () => LiveSystemComponent;
5743
+ };
5744
+ type AzureEventHubNamespaceConfig = {
5745
+ id: string;
5746
+ version: {
5747
+ major: number;
5748
+ minor: number;
5749
+ patch: number;
5750
+ };
5751
+ displayName: string;
5752
+ description?: string;
5753
+ azureRegion: string;
5754
+ azureResourceGroup: string;
5755
+ kafkaEnabled?: boolean;
5756
+ autoInflateEnabled?: boolean;
5757
+ maximumThroughputUnits?: number;
5758
+ minimumTlsVersion?: string;
5759
+ publicNetworkAccess?: string;
5760
+ skuName?: string;
5761
+ skuTier?: string;
5762
+ skuCapacity?: number;
5763
+ zoneRedundant?: boolean;
5764
+ };
5765
+ declare namespace AzureEventHubNamespace {
5766
+ const getBuilder: () => AzureEventHubNamespaceBuilder;
5767
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedAzureEventHubNamespaceBuilder;
5768
+ const create: (config: AzureEventHubNamespaceConfig) => LiveSystemComponent;
5769
+ }
5770
+ //#endregion
5771
+ //#region src/live_system/component/messaging/paas/azure_eventhub.d.ts
5772
+ type SatisfiedAzureEventHubBuilder = {
5773
+ withAzureRegion: (region: string) => SatisfiedAzureEventHubBuilder;
5774
+ withAzureResourceGroup: (rg: string) => SatisfiedAzureEventHubBuilder;
5775
+ withPartitionCount: (count: number) => SatisfiedAzureEventHubBuilder;
5776
+ withMessageRetentionInDays: (days: number) => SatisfiedAzureEventHubBuilder;
5777
+ build: () => LiveSystemComponent;
5778
+ };
5779
+ type AzureEventHubBuilder = {
5780
+ withId: (id: string) => AzureEventHubBuilder;
5781
+ withVersion: (major: number, minor: number, patch: number) => AzureEventHubBuilder;
5782
+ withDisplayName: (displayName: string) => AzureEventHubBuilder;
5783
+ withDescription: (description: string) => AzureEventHubBuilder;
5784
+ withAzureRegion: (region: string) => AzureEventHubBuilder;
5785
+ withAzureResourceGroup: (rg: string) => AzureEventHubBuilder;
5786
+ withPartitionCount: (count: number) => AzureEventHubBuilder;
5787
+ withMessageRetentionInDays: (days: number) => AzureEventHubBuilder;
5788
+ build: () => LiveSystemComponent;
5789
+ };
5790
+ type AzureEventHubConfig = {
5791
+ id: string;
5792
+ version: {
5793
+ major: number;
5794
+ minor: number;
5795
+ patch: number;
5796
+ };
5797
+ displayName: string;
5798
+ description?: string;
5799
+ azureRegion: string;
5800
+ azureResourceGroup: string;
5801
+ partitionCount?: number;
5802
+ messageRetentionInDays?: number;
5803
+ };
5804
+ declare namespace AzureEventHub {
5805
+ const getBuilder: () => AzureEventHubBuilder;
5806
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedAzureEventHubBuilder;
5807
+ const create: (config: AzureEventHubConfig) => LiveSystemComponent;
5808
+ }
5809
+ //#endregion
5810
+ //#region src/live_system/component/messaging/paas/gcp_pubsub.d.ts
5811
+ /**
5812
+ * Returned by satisfy() — no vendor-specific parameters.
5813
+ * Structural properties (id, version, displayName, description,
5814
+ * dependencies, links) are locked to the blueprint and cannot be overridden.
5815
+ */
5816
+ type SatisfiedGcpPubSubBuilder = {
5817
+ build: () => LiveSystemComponent;
5818
+ };
5819
+ type GcpPubSubBuilder = {
5820
+ withId: (id: string) => GcpPubSubBuilder;
5821
+ withVersion: (major: number, minor: number, patch: number) => GcpPubSubBuilder;
5822
+ withDisplayName: (displayName: string) => GcpPubSubBuilder;
5823
+ withDescription: (description: string) => GcpPubSubBuilder;
5824
+ build: () => LiveSystemComponent;
5825
+ };
5826
+ type GcpPubSubConfig = {
5827
+ id: string;
5828
+ version: {
5829
+ major: number;
5830
+ minor: number;
5831
+ patch: number;
5832
+ };
5833
+ displayName: string;
5834
+ description?: string;
5835
+ };
5836
+ declare namespace GcpPubSub {
5837
+ const getBuilder: () => GcpPubSubBuilder;
5838
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedGcpPubSubBuilder;
5839
+ const create: (config: GcpPubSubConfig) => LiveSystemComponent;
5840
+ }
5841
+ //#endregion
5842
+ //#region src/live_system/component/messaging/paas/gcp_pubsub_topic.d.ts
5843
+ /**
5844
+ * Returned by satisfy() — no vendor-specific parameters.
5845
+ * Structural properties (id, version, displayName, description,
5846
+ * dependencies, links) are locked to the blueprint and cannot be overridden.
5847
+ */
5848
+ type SatisfiedGcpPubSubTopicBuilder = {
5849
+ build: () => LiveSystemComponent;
5850
+ };
5851
+ type GcpPubSubTopicBuilder = {
5852
+ withId: (id: string) => GcpPubSubTopicBuilder;
5853
+ withVersion: (major: number, minor: number, patch: number) => GcpPubSubTopicBuilder;
5854
+ withDisplayName: (displayName: string) => GcpPubSubTopicBuilder;
5855
+ withDescription: (description: string) => GcpPubSubTopicBuilder;
5856
+ build: () => LiveSystemComponent;
5857
+ };
5858
+ type GcpPubSubTopicConfig = {
5859
+ id: string;
5860
+ version: {
5861
+ major: number;
5862
+ minor: number;
5863
+ patch: number;
5864
+ };
5865
+ displayName: string;
5866
+ description?: string;
5867
+ };
5868
+ declare namespace GcpPubSubTopic {
5869
+ const getBuilder: () => GcpPubSubTopicBuilder;
5870
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedGcpPubSubTopicBuilder;
5871
+ const create: (config: GcpPubSubTopicConfig) => LiveSystemComponent;
5872
+ }
5873
+ //#endregion
5874
+ //#region src/live_system/component/messaging/paas/gcp_pubsub_subscription.d.ts
5875
+ /**
5876
+ * Returned by satisfy() — no vendor-specific parameters.
5877
+ * Structural properties (id, version, displayName, description,
5878
+ * dependencies, links) are locked to the blueprint and cannot be overridden.
5879
+ */
5880
+ type SatisfiedGcpPubSubSubscriptionBuilder = {
5881
+ build: () => LiveSystemComponent;
5882
+ };
5883
+ type GcpPubSubSubscriptionBuilder = {
5884
+ withId: (id: string) => GcpPubSubSubscriptionBuilder;
5885
+ withVersion: (major: number, minor: number, patch: number) => GcpPubSubSubscriptionBuilder;
5886
+ withDisplayName: (displayName: string) => GcpPubSubSubscriptionBuilder;
5887
+ withDescription: (description: string) => GcpPubSubSubscriptionBuilder;
5888
+ build: () => LiveSystemComponent;
5889
+ };
5890
+ type GcpPubSubSubscriptionConfig = {
5891
+ id: string;
5892
+ version: {
5893
+ major: number;
5894
+ minor: number;
5895
+ patch: number;
5896
+ };
5897
+ displayName: string;
5898
+ description?: string;
5899
+ };
5900
+ declare namespace GcpPubSubSubscription {
5901
+ const getBuilder: () => GcpPubSubSubscriptionBuilder;
5902
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedGcpPubSubSubscriptionBuilder;
5903
+ const create: (config: GcpPubSubSubscriptionConfig) => LiveSystemComponent;
5904
+ }
5905
+ //#endregion
5906
+ //#region src/live_system/component/messaging/caas/kafka.d.ts
5907
+ /**
5908
+ * Returned by satisfy() — only exposes vendor-specific parameters.
5909
+ * Structural properties (id, version, displayName, description,
5910
+ * dependencies, links) are locked to the blueprint and cannot be overridden.
5911
+ */
5912
+ type SatisfiedKafkaBuilder = {
5913
+ withNamespace: (namespace: string) => SatisfiedKafkaBuilder;
5914
+ withClusterName: (clusterName: string) => SatisfiedKafkaBuilder;
5915
+ build: () => LiveSystemComponent;
5916
+ };
5917
+ type KafkaBuilder = {
5918
+ withId: (id: string) => KafkaBuilder;
5919
+ withVersion: (major: number, minor: number, patch: number) => KafkaBuilder;
5920
+ withDisplayName: (displayName: string) => KafkaBuilder;
5921
+ withDescription: (description: string) => KafkaBuilder;
5922
+ withNamespace: (namespace: string) => KafkaBuilder;
5923
+ withClusterName: (clusterName: string) => KafkaBuilder;
5924
+ build: () => LiveSystemComponent;
5925
+ };
5926
+ type KafkaConfig = {
5927
+ id: string;
5928
+ version: {
5929
+ major: number;
5930
+ minor: number;
5931
+ patch: number;
5932
+ };
5933
+ displayName: string;
5934
+ description?: string;
5935
+ namespace?: string;
5936
+ clusterName?: string;
5937
+ };
5938
+ declare namespace Kafka {
5939
+ const getBuilder: () => KafkaBuilder;
5940
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedKafkaBuilder;
5941
+ const create: (config: KafkaConfig) => LiveSystemComponent;
5942
+ }
5943
+ //#endregion
5944
+ //#region src/live_system/component/messaging/caas/kafka_topic.d.ts
5945
+ /**
5946
+ * Returned by satisfy() — only exposes vendor-specific parameters.
5947
+ * Structural properties (id, version, displayName, description,
5948
+ * dependencies, links) are locked to the blueprint and cannot be overridden.
5949
+ */
5950
+ type SatisfiedKafkaTopicBuilder = {
5951
+ withNamespace: (namespace: string) => SatisfiedKafkaTopicBuilder;
5952
+ build: () => LiveSystemComponent;
5953
+ };
5954
+ type KafkaTopicBuilder = {
5955
+ withId: (id: string) => KafkaTopicBuilder;
5956
+ withVersion: (major: number, minor: number, patch: number) => KafkaTopicBuilder;
5957
+ withDisplayName: (displayName: string) => KafkaTopicBuilder;
5958
+ withDescription: (description: string) => KafkaTopicBuilder;
5959
+ withNamespace: (namespace: string) => KafkaTopicBuilder;
5960
+ build: () => LiveSystemComponent;
5961
+ };
5962
+ type KafkaTopicConfig = {
5963
+ id: string;
5964
+ version: {
5965
+ major: number;
5966
+ minor: number;
5967
+ patch: number;
5968
+ };
5969
+ displayName: string;
5970
+ description?: string;
5971
+ namespace?: string;
5972
+ };
5973
+ declare namespace KafkaTopic {
5974
+ const getBuilder: () => KafkaTopicBuilder;
5975
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedKafkaTopicBuilder;
5976
+ const create: (config: KafkaTopicConfig) => LiveSystemComponent;
5977
+ }
5978
+ //#endregion
5979
+ //#region src/live_system/component/messaging/saas/unmanaged.d.ts
5980
+ /**
5981
+ * Returned by satisfy() — no vendor-specific parameters.
5982
+ * Structural properties (id, version, displayName, description,
5983
+ * dependencies, links) are locked to the blueprint and cannot be overridden.
5984
+ */
5985
+ type SatisfiedMessagingSaaSUnmanagedBuilder = {
5986
+ build: () => LiveSystemComponent;
5987
+ };
5988
+ type MessagingSaaSUnmanagedBuilder = {
5989
+ withId: (id: string) => MessagingSaaSUnmanagedBuilder;
5990
+ withVersion: (major: number, minor: number, patch: number) => MessagingSaaSUnmanagedBuilder;
5991
+ withDisplayName: (displayName: string) => MessagingSaaSUnmanagedBuilder;
5992
+ withDescription: (description: string) => MessagingSaaSUnmanagedBuilder;
5993
+ build: () => LiveSystemComponent;
5994
+ };
5995
+ type MessagingSaaSUnmanagedConfig = {
5996
+ id: string;
5997
+ version: {
5998
+ major: number;
5999
+ minor: number;
6000
+ patch: number;
6001
+ };
6002
+ displayName: string;
6003
+ description?: string;
6004
+ };
6005
+ declare namespace MessagingSaaSUnmanaged {
6006
+ const getBuilder: () => MessagingSaaSUnmanagedBuilder;
6007
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedMessagingSaaSUnmanagedBuilder;
6008
+ const create: (config: MessagingSaaSUnmanagedConfig) => LiveSystemComponent;
6009
+ }
6010
+ //#endregion
6011
+ //#region src/fractal/component/big_data/paas/compute_cluster.d.ts
6012
+ type ComputeClusterComponent = {
6013
+ readonly component: BlueprintComponent;
6014
+ readonly components: ReadonlyArray<BlueprintComponent>;
6015
+ };
6016
+ type ComputeClusterBuilder = {
6017
+ withId: (id: string) => ComputeClusterBuilder;
6018
+ withVersion: (major: number, minor: number, patch: number) => ComputeClusterBuilder;
6019
+ withDisplayName: (displayName: string) => ComputeClusterBuilder;
6020
+ withDescription: (description: string) => ComputeClusterBuilder;
6021
+ withClusterName: (name: string) => ComputeClusterBuilder;
6022
+ withSparkVersion: (version: string) => ComputeClusterBuilder;
6023
+ withNumWorkers: (num: number) => ComputeClusterBuilder;
6024
+ withMinWorkers: (min: number) => ComputeClusterBuilder;
6025
+ withMaxWorkers: (max: number) => ComputeClusterBuilder;
6026
+ withSparkConf: (conf: Record<string, string>) => ComputeClusterBuilder;
6027
+ withPypiLibraries: (libs: string[]) => ComputeClusterBuilder;
6028
+ withMavenLibraries: (libs: string[]) => ComputeClusterBuilder;
6029
+ withAutoTerminationMinutes: (minutes: number) => ComputeClusterBuilder;
6030
+ build: () => BlueprintComponent;
6031
+ };
6032
+ type ComputeClusterConfig = {
6033
+ id: string;
6034
+ version: {
6035
+ major: number;
6036
+ minor: number;
6037
+ patch: number;
6038
+ };
6039
+ displayName: string;
6040
+ description?: string;
6041
+ clusterName?: string;
6042
+ sparkVersion?: string;
6043
+ numWorkers?: number;
6044
+ minWorkers?: number;
6045
+ maxWorkers?: number;
6046
+ sparkConf?: Record<string, string>;
6047
+ pypiLibraries?: string[];
6048
+ mavenLibraries?: string[];
6049
+ autoTerminationMinutes?: number;
6050
+ };
6051
+ declare namespace ComputeCluster {
6052
+ const getBuilder: () => ComputeClusterBuilder;
6053
+ const create: (config: ComputeClusterConfig) => ComputeClusterComponent;
6054
+ }
6055
+ //#endregion
6056
+ //#region src/fractal/component/big_data/paas/data_processing_job.d.ts
6057
+ type DataProcessingJobComponent = {
6058
+ readonly component: BlueprintComponent;
6059
+ readonly components: ReadonlyArray<BlueprintComponent>;
6060
+ };
6061
+ type DataProcessingJobBuilder = {
6062
+ withId: (id: string) => DataProcessingJobBuilder;
6063
+ withVersion: (major: number, minor: number, patch: number) => DataProcessingJobBuilder;
6064
+ withDisplayName: (displayName: string) => DataProcessingJobBuilder;
6065
+ withDescription: (description: string) => DataProcessingJobBuilder;
6066
+ withJobName: (name: string) => DataProcessingJobBuilder;
6067
+ withTaskType: (taskType: string) => DataProcessingJobBuilder;
6068
+ withNotebookPath: (path: string) => DataProcessingJobBuilder;
6069
+ withPythonFile: (file: string) => DataProcessingJobBuilder;
6070
+ withMainClassName: (className: string) => DataProcessingJobBuilder;
6071
+ withJarUri: (uri: string) => DataProcessingJobBuilder;
6072
+ withParameters: (params: string[]) => DataProcessingJobBuilder;
6073
+ withCronSchedule: (cron: string) => DataProcessingJobBuilder;
6074
+ withMaxRetries: (retries: number) => DataProcessingJobBuilder;
6075
+ withExistingCluster: (useExisting: boolean) => DataProcessingJobBuilder;
6076
+ build: () => BlueprintComponent;
6077
+ };
6078
+ type DataProcessingJobConfig = {
6079
+ id: string;
6080
+ version: {
6081
+ major: number;
6082
+ minor: number;
6083
+ patch: number;
6084
+ };
6085
+ displayName: string;
6086
+ description?: string;
6087
+ jobName?: string;
6088
+ taskType?: string;
6089
+ notebookPath?: string;
6090
+ pythonFile?: string;
6091
+ mainClassName?: string;
6092
+ jarUri?: string;
6093
+ parameters?: string[];
6094
+ cronSchedule?: string;
6095
+ maxRetries?: number;
6096
+ existingCluster?: boolean;
6097
+ };
6098
+ declare namespace DataProcessingJob {
6099
+ const getBuilder: () => DataProcessingJobBuilder;
6100
+ const create: (config: DataProcessingJobConfig) => DataProcessingJobComponent;
6101
+ }
6102
+ //#endregion
6103
+ //#region src/fractal/component/big_data/paas/ml_experiment.d.ts
6104
+ type MlExperimentComponent = {
6105
+ readonly component: BlueprintComponent;
6106
+ readonly components: ReadonlyArray<BlueprintComponent>;
6107
+ };
6108
+ type MlExperimentBuilder = {
6109
+ withId: (id: string) => MlExperimentBuilder;
6110
+ withVersion: (major: number, minor: number, patch: number) => MlExperimentBuilder;
6111
+ withDisplayName: (displayName: string) => MlExperimentBuilder;
6112
+ withDescription: (description: string) => MlExperimentBuilder;
6113
+ withExperimentName: (name: string) => MlExperimentBuilder;
6114
+ build: () => BlueprintComponent;
6115
+ };
6116
+ type MlExperimentConfig = {
6117
+ id: string;
6118
+ version: {
6119
+ major: number;
6120
+ minor: number;
6121
+ patch: number;
6122
+ };
6123
+ displayName: string;
6124
+ description?: string;
6125
+ experimentName?: string;
6126
+ };
6127
+ declare namespace MlExperiment {
6128
+ const getBuilder: () => MlExperimentBuilder;
6129
+ const create: (config: MlExperimentConfig) => MlExperimentComponent;
6130
+ }
6131
+ //#endregion
6132
+ //#region src/fractal/component/big_data/paas/distributed_data_processing.d.ts
6133
+ type DistributedDataProcessingComponent = {
6134
+ readonly platform: BlueprintComponent;
6135
+ readonly clusters: ReadonlyArray<ComputeClusterComponent>;
6136
+ readonly jobs: ReadonlyArray<DataProcessingJobComponent>;
6137
+ readonly experiments: ReadonlyArray<MlExperimentComponent>;
6138
+ withClusters: (clusters: ComputeClusterComponent[]) => DistributedDataProcessingComponent;
6139
+ withJobs: (jobs: DataProcessingJobComponent[]) => DistributedDataProcessingComponent;
6140
+ withExperiments: (experiments: MlExperimentComponent[]) => DistributedDataProcessingComponent;
6141
+ };
6142
+ type DistributedDataProcessingBuilder = {
6143
+ withId: (id: string) => DistributedDataProcessingBuilder;
6144
+ withVersion: (major: number, minor: number, patch: number) => DistributedDataProcessingBuilder;
6145
+ withDisplayName: (displayName: string) => DistributedDataProcessingBuilder;
6146
+ withDescription: (description: string) => DistributedDataProcessingBuilder;
6147
+ build: () => BlueprintComponent;
6148
+ };
6149
+ type DistributedDataProcessingConfig = {
6150
+ id: string;
6151
+ version: {
6152
+ major: number;
6153
+ minor: number;
6154
+ patch: number;
6155
+ };
6156
+ displayName: string;
6157
+ description?: string;
6158
+ };
6159
+ declare namespace DistributedDataProcessing {
6160
+ const getBuilder: () => DistributedDataProcessingBuilder;
6161
+ const create: (config: DistributedDataProcessingConfig) => DistributedDataProcessingComponent;
6162
+ }
6163
+ //#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
+ //#region src/fractal/component/big_data/saas/unmanaged.d.ts
6192
+ type BigDataUnmanagedComponent = {
6193
+ readonly component: BlueprintComponent;
6194
+ readonly components: ReadonlyArray<BlueprintComponent>;
6195
+ };
6196
+ type BigDataUnmanagedBuilder = {
6197
+ withId: (id: string) => BigDataUnmanagedBuilder;
6198
+ withVersion: (major: number, minor: number, patch: number) => BigDataUnmanagedBuilder;
6199
+ withDisplayName: (displayName: string) => BigDataUnmanagedBuilder;
6200
+ withDescription: (description: string) => BigDataUnmanagedBuilder;
6201
+ build: () => BlueprintComponent;
6202
+ };
6203
+ type BigDataUnmanagedConfig = {
6204
+ id: string;
6205
+ version: {
6206
+ major: number;
6207
+ minor: number;
6208
+ patch: number;
6209
+ };
6210
+ displayName: string;
6211
+ description?: string;
6212
+ };
6213
+ declare namespace BigDataUnmanaged {
6214
+ const getBuilder: () => BigDataUnmanagedBuilder;
6215
+ const create: (config: BigDataUnmanagedConfig) => BigDataUnmanagedComponent;
6216
+ }
6217
+ //#endregion
6218
+ //#region src/live_system/component/big_data/paas/aws_databricks.d.ts
6219
+ /**
6220
+ * Returned by satisfy() — only exposes vendor-specific parameters.
6221
+ * Structural properties (id, version, displayName, description,
6222
+ * dependencies, links) are locked to the blueprint and cannot be overridden.
6223
+ */
6224
+ type SatisfiedAwsDatabricksBuilder = {
6225
+ withPricingTier: (tier: string) => SatisfiedAwsDatabricksBuilder;
6226
+ withCredentialsId: (id: string) => SatisfiedAwsDatabricksBuilder;
6227
+ withStorageConfigurationId: (id: string) => SatisfiedAwsDatabricksBuilder;
6228
+ withNetworkId: (id: string) => SatisfiedAwsDatabricksBuilder;
6229
+ build: () => LiveSystemComponent;
6230
+ };
6231
+ type AwsDatabricksBuilder = {
6232
+ withId: (id: string) => AwsDatabricksBuilder;
6233
+ withVersion: (major: number, minor: number, patch: number) => AwsDatabricksBuilder;
6234
+ withDisplayName: (displayName: string) => AwsDatabricksBuilder;
6235
+ withDescription: (description: string) => AwsDatabricksBuilder;
6236
+ withPricingTier: (tier: string) => AwsDatabricksBuilder;
6237
+ withCredentialsId: (id: string) => AwsDatabricksBuilder;
6238
+ withStorageConfigurationId: (id: string) => AwsDatabricksBuilder;
6239
+ withNetworkId: (id: string) => AwsDatabricksBuilder;
6240
+ build: () => LiveSystemComponent;
6241
+ };
6242
+ type AwsDatabricksConfig = {
6243
+ id: string;
6244
+ version: {
6245
+ major: number;
6246
+ minor: number;
6247
+ patch: number;
6248
+ };
6249
+ displayName: string;
6250
+ description?: string;
6251
+ pricingTier?: string;
6252
+ credentialsId?: string;
6253
+ storageConfigurationId?: string;
6254
+ networkId?: string;
6255
+ };
6256
+ declare namespace AwsDatabricks {
6257
+ const getBuilder: () => AwsDatabricksBuilder;
6258
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedAwsDatabricksBuilder;
6259
+ const create: (config: AwsDatabricksConfig) => LiveSystemComponent;
6260
+ }
6261
+ //#endregion
6262
+ //#region src/live_system/component/big_data/paas/aws_databricks_cluster.d.ts
6263
+ /**
6264
+ * Returned by satisfy() — blueprint params are locked.
6265
+ * Exposes vendor-specific nodeTypeId.
6266
+ */
6267
+ type SatisfiedAwsDatabricksClusterBuilder = {
6268
+ withNodeTypeId: (nodeTypeId: string) => SatisfiedAwsDatabricksClusterBuilder;
6269
+ withDataSecurityMode: (mode: string) => SatisfiedAwsDatabricksClusterBuilder;
6270
+ build: () => LiveSystemComponent;
6271
+ };
6272
+ type AwsDatabricksClusterBuilder = {
6273
+ withId: (id: string) => AwsDatabricksClusterBuilder;
6274
+ withVersion: (major: number, minor: number, patch: number) => AwsDatabricksClusterBuilder;
6275
+ withDisplayName: (displayName: string) => AwsDatabricksClusterBuilder;
6276
+ withDescription: (description: string) => AwsDatabricksClusterBuilder;
6277
+ withClusterName: (name: string) => AwsDatabricksClusterBuilder;
6278
+ withSparkVersion: (version: string) => AwsDatabricksClusterBuilder;
6279
+ withNodeTypeId: (nodeTypeId: string) => AwsDatabricksClusterBuilder;
6280
+ withNumWorkers: (num: number) => AwsDatabricksClusterBuilder;
6281
+ withMinWorkers: (min: number) => AwsDatabricksClusterBuilder;
6282
+ withMaxWorkers: (max: number) => AwsDatabricksClusterBuilder;
6283
+ withSparkConf: (conf: Record<string, string>) => AwsDatabricksClusterBuilder;
6284
+ withPypiLibraries: (libs: string[]) => AwsDatabricksClusterBuilder;
6285
+ withMavenLibraries: (libs: string[]) => AwsDatabricksClusterBuilder;
6286
+ withAutoTerminationMinutes: (minutes: number) => AwsDatabricksClusterBuilder;
6287
+ withDataSecurityMode: (mode: string) => AwsDatabricksClusterBuilder;
6288
+ build: () => LiveSystemComponent;
6289
+ };
6290
+ type AwsDatabricksClusterConfig = {
6291
+ id: string;
6292
+ version: {
6293
+ major: number;
6294
+ minor: number;
6295
+ patch: number;
6296
+ };
6297
+ displayName: string;
6298
+ description?: string;
6299
+ clusterName?: string;
6300
+ sparkVersion?: string;
6301
+ nodeTypeId?: string;
6302
+ numWorkers?: number;
6303
+ minWorkers?: number;
6304
+ maxWorkers?: number;
6305
+ sparkConf?: Record<string, string>;
6306
+ pypiLibraries?: string[];
6307
+ mavenLibraries?: string[];
6308
+ autoTerminationMinutes?: number;
6309
+ dataSecurityMode?: string;
6310
+ };
6311
+ declare namespace AwsDatabricksCluster {
6312
+ const getBuilder: () => AwsDatabricksClusterBuilder;
6313
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedAwsDatabricksClusterBuilder;
6314
+ const create: (config: AwsDatabricksClusterConfig) => LiveSystemComponent;
6315
+ }
6316
+ //#endregion
6317
+ //#region src/live_system/component/big_data/paas/aws_databricks_job.d.ts
6318
+ /**
6319
+ * Returned by satisfy() — all blueprint params are locked.
6320
+ * No vendor-specific parameters for DatabricksJob.
6321
+ */
6322
+ type SatisfiedAwsDatabricksJobBuilder = {
6323
+ build: () => LiveSystemComponent;
6324
+ };
6325
+ type AwsDatabricksJobBuilder = {
6326
+ withId: (id: string) => AwsDatabricksJobBuilder;
6327
+ withVersion: (major: number, minor: number, patch: number) => AwsDatabricksJobBuilder;
6328
+ withDisplayName: (displayName: string) => AwsDatabricksJobBuilder;
6329
+ withDescription: (description: string) => AwsDatabricksJobBuilder;
6330
+ withJobName: (name: string) => AwsDatabricksJobBuilder;
6331
+ withTaskType: (taskType: string) => AwsDatabricksJobBuilder;
6332
+ withNotebookPath: (path: string) => AwsDatabricksJobBuilder;
6333
+ withPythonFile: (file: string) => AwsDatabricksJobBuilder;
6334
+ withMainClassName: (className: string) => AwsDatabricksJobBuilder;
6335
+ withJarUri: (uri: string) => AwsDatabricksJobBuilder;
6336
+ withParameters: (params: string[]) => AwsDatabricksJobBuilder;
6337
+ withCronSchedule: (cron: string) => AwsDatabricksJobBuilder;
6338
+ withMaxRetries: (retries: number) => AwsDatabricksJobBuilder;
6339
+ withExistingCluster: (useExisting: boolean) => AwsDatabricksJobBuilder;
6340
+ build: () => LiveSystemComponent;
6341
+ };
6342
+ type AwsDatabricksJobConfig = {
6343
+ id: string;
6344
+ version: {
6345
+ major: number;
6346
+ minor: number;
6347
+ patch: number;
6348
+ };
6349
+ displayName: string;
6350
+ description?: string;
6351
+ jobName?: string;
6352
+ taskType?: string;
6353
+ notebookPath?: string;
6354
+ pythonFile?: string;
6355
+ mainClassName?: string;
6356
+ jarUri?: string;
6357
+ parameters?: string[];
6358
+ cronSchedule?: string;
6359
+ maxRetries?: number;
6360
+ existingCluster?: boolean;
6361
+ };
6362
+ declare namespace AwsDatabricksJob {
6363
+ const getBuilder: () => AwsDatabricksJobBuilder;
6364
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedAwsDatabricksJobBuilder;
6365
+ const create: (config: AwsDatabricksJobConfig) => LiveSystemComponent;
6366
+ }
6367
+ //#endregion
6368
+ //#region src/live_system/component/big_data/paas/aws_databricks_mlflow.d.ts
6369
+ /**
6370
+ * Returned by satisfy() — blueprint params are locked.
6371
+ * artifactLocation is vendor-specific and set via the sealed builder.
6372
+ */
6373
+ type SatisfiedAwsDatabricksMlflowBuilder = {
6374
+ withArtifactLocation: (location: string) => SatisfiedAwsDatabricksMlflowBuilder;
6375
+ build: () => LiveSystemComponent;
6376
+ };
6377
+ type AwsDatabricksMlflowBuilder = {
6378
+ withId: (id: string) => AwsDatabricksMlflowBuilder;
6379
+ withVersion: (major: number, minor: number, patch: number) => AwsDatabricksMlflowBuilder;
6380
+ withDisplayName: (displayName: string) => AwsDatabricksMlflowBuilder;
6381
+ withDescription: (description: string) => AwsDatabricksMlflowBuilder;
6382
+ withExperimentName: (name: string) => AwsDatabricksMlflowBuilder;
6383
+ withArtifactLocation: (location: string) => AwsDatabricksMlflowBuilder;
6384
+ build: () => LiveSystemComponent;
6385
+ };
6386
+ type AwsDatabricksMlflowConfig = {
6387
+ id: string;
6388
+ version: {
6389
+ major: number;
6390
+ minor: number;
6391
+ patch: number;
6392
+ };
6393
+ displayName: string;
6394
+ description?: string;
6395
+ experimentName?: string;
6396
+ artifactLocation?: string;
6397
+ };
6398
+ declare namespace AwsDatabricksMlflow {
6399
+ const getBuilder: () => AwsDatabricksMlflowBuilder;
6400
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedAwsDatabricksMlflowBuilder;
6401
+ const create: (config: AwsDatabricksMlflowConfig) => LiveSystemComponent;
6402
+ }
6403
+ //#endregion
6404
+ //#region src/live_system/component/big_data/paas/aws_s3_datalake.d.ts
6405
+ /**
6406
+ * Returned by satisfy() — only exposes vendor-specific parameters.
6407
+ * Structural properties (id, version, displayName, description,
6408
+ * dependencies, links) are locked to the blueprint and cannot be overridden.
6409
+ */
6410
+ type SatisfiedAwsS3DatalakeBuilder = {
6411
+ withBucket: (bucket: string) => SatisfiedAwsS3DatalakeBuilder;
6412
+ withVersioning: (versioning: boolean) => SatisfiedAwsS3DatalakeBuilder;
6413
+ withForceDestroy: (forceDestroy: boolean) => SatisfiedAwsS3DatalakeBuilder;
6414
+ build: () => LiveSystemComponent;
6415
+ };
6416
+ type AwsS3DatalakeBuilder = {
6417
+ withId: (id: string) => AwsS3DatalakeBuilder;
6418
+ withVersion: (major: number, minor: number, patch: number) => AwsS3DatalakeBuilder;
6419
+ withDisplayName: (displayName: string) => AwsS3DatalakeBuilder;
6420
+ withDescription: (description: string) => AwsS3DatalakeBuilder;
6421
+ withBucket: (bucket: string) => AwsS3DatalakeBuilder;
6422
+ withVersioning: (versioning: boolean) => AwsS3DatalakeBuilder;
6423
+ withForceDestroy: (forceDestroy: boolean) => AwsS3DatalakeBuilder;
6424
+ build: () => LiveSystemComponent;
6425
+ };
6426
+ type AwsS3DatalakeConfig = {
6427
+ id: string;
6428
+ version: {
6429
+ major: number;
6430
+ minor: number;
6431
+ patch: number;
6432
+ };
6433
+ displayName: string;
6434
+ description?: string;
6435
+ bucket?: string;
6436
+ versioning?: boolean;
6437
+ forceDestroy?: boolean;
6438
+ };
6439
+ declare namespace AwsS3Datalake {
6440
+ const getBuilder: () => AwsS3DatalakeBuilder;
6441
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedAwsS3DatalakeBuilder;
6442
+ const create: (config: AwsS3DatalakeConfig) => LiveSystemComponent;
6443
+ }
6444
+ //#endregion
6445
+ //#region src/live_system/component/big_data/paas/azure_databricks.d.ts
6446
+ type SatisfiedAzureDatabricksBuilder = {
6447
+ withPricingTier: (tier: string) => SatisfiedAzureDatabricksBuilder;
6448
+ withManagedResourceGroupName: (name: string) => SatisfiedAzureDatabricksBuilder;
6449
+ withEnableNoPublicIp: (enable: boolean) => SatisfiedAzureDatabricksBuilder;
6450
+ build: () => LiveSystemComponent;
6451
+ };
6452
+ type AzureDatabricksBuilder = {
6453
+ withId: (id: string) => AzureDatabricksBuilder;
6454
+ withVersion: (major: number, minor: number, patch: number) => AzureDatabricksBuilder;
6455
+ withDisplayName: (displayName: string) => AzureDatabricksBuilder;
6456
+ withDescription: (description: string) => AzureDatabricksBuilder;
6457
+ withManagedResourceGroupName: (name: string) => AzureDatabricksBuilder;
6458
+ withEnableNoPublicIp: (enable: boolean) => AzureDatabricksBuilder;
6459
+ build: () => LiveSystemComponent;
6460
+ };
6461
+ type AzureDatabricksConfig = {
6462
+ id: string;
6463
+ version: {
6464
+ major: number;
6465
+ minor: number;
6466
+ patch: number;
6467
+ };
6468
+ displayName: string;
6469
+ description?: string;
6470
+ managedResourceGroupName?: string;
6471
+ enableNoPublicIp?: boolean;
6472
+ };
6473
+ declare namespace AzureDatabricks {
6474
+ const getBuilder: () => AzureDatabricksBuilder;
6475
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedAzureDatabricksBuilder;
6476
+ const create: (config: AzureDatabricksConfig) => LiveSystemComponent;
6477
+ }
6478
+ //#endregion
6479
+ //#region src/live_system/component/big_data/paas/azure_databricks_cluster.d.ts
6480
+ /**
6481
+ * Returned by satisfy() — all cluster params are locked from the blueprint.
6482
+ * No Azure-specific parameters are needed, so only build() is exposed.
6483
+ */
6484
+ type SatisfiedAzureDatabricksClusterBuilder = {
6485
+ withNodeTypeId: (nodeTypeId: string) => SatisfiedAzureDatabricksClusterBuilder;
6486
+ withDataSecurityMode: (mode: string) => SatisfiedAzureDatabricksClusterBuilder;
6487
+ build: () => LiveSystemComponent;
6488
+ };
6489
+ type AzureDatabricksClusterBuilder = {
6490
+ withId: (id: string) => AzureDatabricksClusterBuilder;
6491
+ withVersion: (major: number, minor: number, patch: number) => AzureDatabricksClusterBuilder;
6492
+ withDisplayName: (displayName: string) => AzureDatabricksClusterBuilder;
6493
+ withDescription: (description: string) => AzureDatabricksClusterBuilder;
6494
+ build: () => LiveSystemComponent;
6495
+ };
6496
+ type AzureDatabricksClusterConfig = {
6497
+ id: string;
6498
+ version: {
6499
+ major: number;
6500
+ minor: number;
6501
+ patch: number;
6502
+ };
6503
+ displayName: string;
6504
+ description?: string;
6505
+ };
6506
+ declare namespace AzureDatabricksCluster {
6507
+ const getBuilder: () => AzureDatabricksClusterBuilder;
6508
+ /**
6509
+ * Satisfies a blueprint ComputeCluster component as an Azure Databricks Cluster.
6510
+ * Carries id, version, displayName, dependencies, links, and all cluster params.
6511
+ */
6512
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedAzureDatabricksClusterBuilder;
6513
+ const create: (config: AzureDatabricksClusterConfig) => LiveSystemComponent;
6514
+ }
6515
+ //#endregion
6516
+ //#region src/live_system/component/big_data/paas/azure_databricks_job.d.ts
6517
+ /**
6518
+ * Returned by satisfy() — all job params are locked from the blueprint.
6519
+ * No Azure-specific parameters are needed, so only build() is exposed.
6520
+ */
6521
+ type SatisfiedAzureDatabricksJobBuilder = {
6522
+ build: () => LiveSystemComponent;
6523
+ };
6524
+ type AzureDatabricksJobBuilder = {
6525
+ withId: (id: string) => AzureDatabricksJobBuilder;
6526
+ withVersion: (major: number, minor: number, patch: number) => AzureDatabricksJobBuilder;
6527
+ withDisplayName: (displayName: string) => AzureDatabricksJobBuilder;
6528
+ withDescription: (description: string) => AzureDatabricksJobBuilder;
6529
+ build: () => LiveSystemComponent;
6530
+ };
6531
+ type AzureDatabricksJobConfig = {
6532
+ id: string;
6533
+ version: {
6534
+ major: number;
6535
+ minor: number;
6536
+ patch: number;
6537
+ };
6538
+ displayName: string;
6539
+ description?: string;
6540
+ };
6541
+ declare namespace AzureDatabricksJob {
6542
+ const getBuilder: () => AzureDatabricksJobBuilder;
6543
+ /**
6544
+ * Satisfies a blueprint DataProcessingJob component as an Azure Databricks Job.
6545
+ * Carries id, version, displayName, dependencies, links, and all job params.
6546
+ */
6547
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedAzureDatabricksJobBuilder;
6548
+ const create: (config: AzureDatabricksJobConfig) => LiveSystemComponent;
6549
+ }
6550
+ //#endregion
6551
+ //#region src/live_system/component/big_data/paas/azure_databricks_mlflow.d.ts
6552
+ /**
6553
+ * Returned by satisfy() — blueprint params are locked.
6554
+ * artifactLocation is vendor-specific and set via the sealed builder.
6555
+ */
6556
+ type SatisfiedAzureDatabricksMlflowBuilder = {
6557
+ withArtifactLocation: (location: string) => SatisfiedAzureDatabricksMlflowBuilder;
6558
+ build: () => LiveSystemComponent;
6559
+ };
6560
+ type AzureDatabricksMlflowBuilder = {
6561
+ withId: (id: string) => AzureDatabricksMlflowBuilder;
6562
+ withVersion: (major: number, minor: number, patch: number) => AzureDatabricksMlflowBuilder;
6563
+ withDisplayName: (displayName: string) => AzureDatabricksMlflowBuilder;
6564
+ withDescription: (description: string) => AzureDatabricksMlflowBuilder;
6565
+ build: () => LiveSystemComponent;
6566
+ };
6567
+ type AzureDatabricksMlflowConfig = {
6568
+ id: string;
6569
+ version: {
6570
+ major: number;
6571
+ minor: number;
6572
+ patch: number;
6573
+ };
6574
+ displayName: string;
6575
+ description?: string;
6576
+ };
6577
+ declare namespace AzureDatabricksMlflow {
6578
+ const getBuilder: () => AzureDatabricksMlflowBuilder;
6579
+ /**
6580
+ * Satisfies a blueprint MlExperiment component as an Azure Databricks MLflow Experiment.
6581
+ * Carries id, version, displayName, dependencies, links, and experiment params.
6582
+ */
6583
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedAzureDatabricksMlflowBuilder;
6584
+ const create: (config: AzureDatabricksMlflowConfig) => LiveSystemComponent;
6585
+ }
6586
+ //#endregion
6587
+ //#region src/live_system/component/big_data/paas/azure_datalake.d.ts
6588
+ type SatisfiedAzureDatalakeBuilder = {
6589
+ withAzureRegion: (region: string) => SatisfiedAzureDatalakeBuilder;
6590
+ withAzureResourceGroup: (rg: string) => SatisfiedAzureDatalakeBuilder;
6591
+ build: () => LiveSystemComponent;
6592
+ };
6593
+ type AzureDatalakeBuilder = {
6594
+ withId: (id: string) => AzureDatalakeBuilder;
6595
+ withVersion: (major: number, minor: number, patch: number) => AzureDatalakeBuilder;
6596
+ withDisplayName: (displayName: string) => AzureDatalakeBuilder;
6597
+ withDescription: (description: string) => AzureDatalakeBuilder;
6598
+ withAzureRegion: (region: string) => AzureDatalakeBuilder;
6599
+ withAzureResourceGroup: (rg: string) => AzureDatalakeBuilder;
6600
+ build: () => LiveSystemComponent;
6601
+ };
6602
+ type AzureDatalakeConfig = {
6603
+ id: string;
6604
+ version: {
6605
+ major: number;
6606
+ minor: number;
6607
+ patch: number;
6608
+ };
6609
+ displayName: string;
6610
+ description?: string;
6611
+ azureRegion: string;
6612
+ azureResourceGroup: string;
6613
+ };
6614
+ declare namespace AzureDatalake {
6615
+ const getBuilder: () => AzureDatalakeBuilder;
6616
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedAzureDatalakeBuilder;
6617
+ const create: (config: AzureDatalakeConfig) => LiveSystemComponent;
6618
+ }
6619
+ //#endregion
6620
+ //#region src/live_system/component/big_data/paas/gcp_databricks.d.ts
6621
+ /**
6622
+ * Returned by satisfy() — only exposes vendor-specific parameters.
6623
+ * Structural properties (id, version, displayName, description,
6624
+ * dependencies, links) are locked to the blueprint and cannot be overridden.
6625
+ */
6626
+ type SatisfiedGcpDatabricksBuilder = {
6627
+ withPricingTier: (tier: string) => SatisfiedGcpDatabricksBuilder;
6628
+ withNetworkId: (networkId: string) => SatisfiedGcpDatabricksBuilder;
6629
+ build: () => LiveSystemComponent;
6630
+ };
6631
+ type GcpDatabricksBuilder = {
6632
+ withId: (id: string) => GcpDatabricksBuilder;
6633
+ withVersion: (major: number, minor: number, patch: number) => GcpDatabricksBuilder;
6634
+ withDisplayName: (displayName: string) => GcpDatabricksBuilder;
6635
+ withDescription: (description: string) => GcpDatabricksBuilder;
6636
+ withNetworkId: (networkId: string) => GcpDatabricksBuilder;
6637
+ build: () => LiveSystemComponent;
6638
+ };
6639
+ type GcpDatabricksConfig = {
6640
+ id: string;
6641
+ version: {
6642
+ major: number;
6643
+ minor: number;
6644
+ patch: number;
6645
+ };
6646
+ displayName: string;
6647
+ description?: string;
6648
+ networkId?: string;
6649
+ };
6650
+ declare namespace GcpDatabricks {
6651
+ const getBuilder: () => GcpDatabricksBuilder;
6652
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedGcpDatabricksBuilder;
6653
+ const create: (config: GcpDatabricksConfig) => LiveSystemComponent;
6654
+ }
6655
+ //#endregion
6656
+ //#region src/live_system/component/big_data/paas/gcp_databricks_cluster.d.ts
6657
+ /**
6658
+ * Returned by satisfy() — no vendor-specific parameters needed for a
6659
+ * GCP Databricks Cluster. All parameters are carried from the blueprint.
6660
+ */
6661
+ type SatisfiedGcpDatabricksClusterBuilder = {
6662
+ withNodeTypeId: (nodeTypeId: string) => SatisfiedGcpDatabricksClusterBuilder;
6663
+ withDataSecurityMode: (mode: string) => SatisfiedGcpDatabricksClusterBuilder;
6664
+ build: () => LiveSystemComponent;
6665
+ };
6666
+ type GcpDatabricksClusterBuilder = {
6667
+ withId: (id: string) => GcpDatabricksClusterBuilder;
6668
+ withVersion: (major: number, minor: number, patch: number) => GcpDatabricksClusterBuilder;
6669
+ withDisplayName: (displayName: string) => GcpDatabricksClusterBuilder;
6670
+ withDescription: (description: string) => GcpDatabricksClusterBuilder;
6671
+ build: () => LiveSystemComponent;
6672
+ };
6673
+ type GcpDatabricksClusterConfig = {
6674
+ id: string;
6675
+ version: {
6676
+ major: number;
6677
+ minor: number;
6678
+ patch: number;
6679
+ };
6680
+ displayName: string;
6681
+ description?: string;
6682
+ };
6683
+ declare namespace GcpDatabricksCluster {
6684
+ const getBuilder: () => GcpDatabricksClusterBuilder;
6685
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedGcpDatabricksClusterBuilder;
6686
+ const create: (config: GcpDatabricksClusterConfig) => LiveSystemComponent;
6687
+ }
6688
+ //#endregion
6689
+ //#region src/live_system/component/big_data/paas/gcp_databricks_job.d.ts
6690
+ /**
6691
+ * Returned by satisfy() — no vendor-specific parameters needed for a
6692
+ * GCP Databricks Job. All parameters are carried from the blueprint.
6693
+ */
6694
+ type SatisfiedGcpDatabricksJobBuilder = {
6695
+ build: () => LiveSystemComponent;
6696
+ };
6697
+ type GcpDatabricksJobBuilder = {
6698
+ withId: (id: string) => GcpDatabricksJobBuilder;
6699
+ withVersion: (major: number, minor: number, patch: number) => GcpDatabricksJobBuilder;
6700
+ withDisplayName: (displayName: string) => GcpDatabricksJobBuilder;
6701
+ withDescription: (description: string) => GcpDatabricksJobBuilder;
6702
+ build: () => LiveSystemComponent;
6703
+ };
6704
+ type GcpDatabricksJobConfig = {
6705
+ id: string;
6706
+ version: {
6707
+ major: number;
6708
+ minor: number;
6709
+ patch: number;
6710
+ };
6711
+ displayName: string;
6712
+ description?: string;
6713
+ };
6714
+ declare namespace GcpDatabricksJob {
6715
+ const getBuilder: () => GcpDatabricksJobBuilder;
6716
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedGcpDatabricksJobBuilder;
6717
+ const create: (config: GcpDatabricksJobConfig) => LiveSystemComponent;
6718
+ }
6719
+ //#endregion
6720
+ //#region src/live_system/component/big_data/paas/gcp_databricks_mlflow.d.ts
6721
+ /**
6722
+ * Returned by satisfy() — blueprint params are locked.
6723
+ * artifactLocation is vendor-specific and set via the sealed builder.
6724
+ */
6725
+ type SatisfiedGcpDatabricksMlflowBuilder = {
6726
+ withArtifactLocation: (location: string) => SatisfiedGcpDatabricksMlflowBuilder;
6727
+ build: () => LiveSystemComponent;
6728
+ };
6729
+ type GcpDatabricksMlflowBuilder = {
6730
+ withId: (id: string) => GcpDatabricksMlflowBuilder;
6731
+ withVersion: (major: number, minor: number, patch: number) => GcpDatabricksMlflowBuilder;
6732
+ withDisplayName: (displayName: string) => GcpDatabricksMlflowBuilder;
6733
+ withDescription: (description: string) => GcpDatabricksMlflowBuilder;
6734
+ build: () => LiveSystemComponent;
6735
+ };
6736
+ type GcpDatabricksMlflowConfig = {
6737
+ id: string;
6738
+ version: {
6739
+ major: number;
6740
+ minor: number;
6741
+ patch: number;
6742
+ };
6743
+ displayName: string;
6744
+ description?: string;
6745
+ };
6746
+ declare namespace GcpDatabricksMlflow {
6747
+ const getBuilder: () => GcpDatabricksMlflowBuilder;
6748
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedGcpDatabricksMlflowBuilder;
6749
+ const create: (config: GcpDatabricksMlflowConfig) => LiveSystemComponent;
6750
+ }
6751
+ //#endregion
6752
+ //#region src/live_system/component/big_data/paas/gcp_datalake.d.ts
6753
+ /**
6754
+ * Returned by satisfy() — only exposes vendor-specific parameters.
6755
+ * Structural properties (id, version, displayName, description,
6756
+ * dependencies, links) are locked to the blueprint and cannot be overridden.
6757
+ */
6758
+ type SatisfiedGcpDatalakeBuilder = {
6759
+ withBucketName: (bucketName: string) => SatisfiedGcpDatalakeBuilder;
6760
+ withRegion: (region: string) => SatisfiedGcpDatalakeBuilder;
6761
+ withStorageClass: (storageClass: string) => SatisfiedGcpDatalakeBuilder;
6762
+ withVersioningEnabled: (enabled: boolean) => SatisfiedGcpDatalakeBuilder;
6763
+ withUniformBucketLevelAccess: (enabled: boolean) => SatisfiedGcpDatalakeBuilder;
6764
+ build: () => LiveSystemComponent;
6765
+ };
6766
+ type GcpDatalakeBuilder = {
6767
+ withId: (id: string) => GcpDatalakeBuilder;
6768
+ withVersion: (major: number, minor: number, patch: number) => GcpDatalakeBuilder;
6769
+ withDisplayName: (displayName: string) => GcpDatalakeBuilder;
6770
+ withDescription: (description: string) => GcpDatalakeBuilder;
6771
+ withBucketName: (bucketName: string) => GcpDatalakeBuilder;
6772
+ withRegion: (region: string) => GcpDatalakeBuilder;
6773
+ withStorageClass: (storageClass: string) => GcpDatalakeBuilder;
6774
+ withVersioningEnabled: (enabled: boolean) => GcpDatalakeBuilder;
6775
+ withUniformBucketLevelAccess: (enabled: boolean) => GcpDatalakeBuilder;
6776
+ build: () => LiveSystemComponent;
6777
+ };
6778
+ type GcpDatalakeConfig = {
6779
+ id: string;
6780
+ version: {
6781
+ major: number;
6782
+ minor: number;
6783
+ patch: number;
6784
+ };
6785
+ displayName: string;
6786
+ description?: string;
6787
+ bucketName?: string;
6788
+ region?: string;
6789
+ storageClass?: string;
6790
+ versioningEnabled?: boolean;
6791
+ uniformBucketLevelAccess?: boolean;
6792
+ };
6793
+ declare namespace GcpDatalake {
6794
+ const getBuilder: () => GcpDatalakeBuilder;
6795
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedGcpDatalakeBuilder;
6796
+ const create: (config: GcpDatalakeConfig) => LiveSystemComponent;
6797
+ }
6798
+ //#endregion
6799
+ //#region src/live_system/component/big_data/saas/unmanaged.d.ts
6800
+ /**
6801
+ * Returned by satisfy() — no vendor-specific parameters.
6802
+ * Structural properties (id, version, displayName, description,
6803
+ * dependencies, links) are locked to the blueprint and cannot be overridden.
6804
+ */
6805
+ type SatisfiedBigDataSaaSUnmanagedBuilder = {
6806
+ build: () => LiveSystemComponent;
6807
+ };
6808
+ type BigDataSaaSUnmanagedBuilder = {
6809
+ withId: (id: string) => BigDataSaaSUnmanagedBuilder;
6810
+ withVersion: (major: number, minor: number, patch: number) => BigDataSaaSUnmanagedBuilder;
6811
+ withDisplayName: (displayName: string) => BigDataSaaSUnmanagedBuilder;
6812
+ withDescription: (description: string) => BigDataSaaSUnmanagedBuilder;
6813
+ build: () => LiveSystemComponent;
6814
+ };
6815
+ type BigDataSaaSUnmanagedConfig = {
6816
+ id: string;
6817
+ version: {
6818
+ major: number;
6819
+ minor: number;
6820
+ patch: number;
6821
+ };
6822
+ displayName: string;
6823
+ description?: string;
6824
+ };
6825
+ declare namespace BigDataSaaSUnmanaged {
6826
+ const getBuilder: () => BigDataSaaSUnmanagedBuilder;
6827
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedBigDataSaaSUnmanagedBuilder;
6828
+ const create: (config: BigDataSaaSUnmanagedConfig) => LiveSystemComponent;
6829
+ }
6830
+ //#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>;
6835
+ };
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;
6842
+ };
6843
+ type PaaSApiGatewayConfig = {
6844
+ id: string;
6845
+ version: {
6846
+ major: number;
6847
+ minor: number;
6848
+ patch: number;
6849
+ };
6850
+ displayName: string;
6851
+ description?: string;
6852
+ };
6853
+ declare namespace PaaSApiGateway {
6854
+ const getBuilder: () => PaaSApiGatewayBuilder;
6855
+ const create: (config: PaaSApiGatewayConfig) => PaaSApiGatewayComponent;
6856
+ }
6857
+ //#endregion
6858
+ //#region src/fractal/component/api_management/caas/api_gateway.d.ts
6859
+ type CaaSApiGatewayComponent = {
6860
+ readonly component: BlueprintComponent;
6861
+ readonly components: ReadonlyArray<BlueprintComponent>;
6862
+ };
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;
6868
+ build: () => BlueprintComponent;
6869
+ };
6870
+ type CaaSApiGatewayConfig = {
6871
+ id: string;
6872
+ version: {
6873
+ major: number;
6874
+ minor: number;
6875
+ patch: number;
6876
+ };
6877
+ displayName: string;
6878
+ description?: string;
6879
+ };
6880
+ declare namespace CaaSApiGateway {
6881
+ const getBuilder: () => CaaSApiGatewayBuilder;
6882
+ const create: (config: CaaSApiGatewayConfig) => CaaSApiGatewayComponent;
6883
+ }
6884
+ //#endregion
6885
+ //#region src/fractal/component/api_management/saas/unmanaged.d.ts
6886
+ type ApiManagementUnmanagedComponent = {
6887
+ readonly component: BlueprintComponent;
6888
+ readonly components: ReadonlyArray<BlueprintComponent>;
6889
+ };
6890
+ type ApiManagementUnmanagedBuilder = {
6891
+ withId: (id: string) => ApiManagementUnmanagedBuilder;
6892
+ withVersion: (major: number, minor: number, patch: number) => ApiManagementUnmanagedBuilder;
6893
+ withDisplayName: (displayName: string) => ApiManagementUnmanagedBuilder;
6894
+ withDescription: (description: string) => ApiManagementUnmanagedBuilder;
6895
+ build: () => BlueprintComponent;
6896
+ };
6897
+ type ApiManagementUnmanagedConfig = {
6898
+ id: string;
6899
+ version: {
6900
+ major: number;
6901
+ minor: number;
6902
+ patch: number;
6903
+ };
6904
+ displayName: string;
6905
+ description?: string;
6906
+ };
6907
+ declare namespace ApiManagementUnmanaged {
6908
+ const getBuilder: () => ApiManagementUnmanagedBuilder;
6909
+ const create: (config: ApiManagementUnmanagedConfig) => ApiManagementUnmanagedComponent;
6910
+ }
6911
+ //#endregion
6912
+ //#region src/live_system/component/api_management/paas/aws_cloudfront.d.ts
6913
+ /**
6914
+ * Returned by satisfy() — only exposes vendor-specific parameters.
6915
+ * Structural properties (id, version, displayName, description,
6916
+ * dependencies, links) are locked to the blueprint and cannot be overridden.
6917
+ */
6918
+ type SatisfiedAwsCloudFrontBuilder = {
6919
+ withAwsRegion: (region: string) => SatisfiedAwsCloudFrontBuilder;
6920
+ withApiKeySource: (source: string) => SatisfiedAwsCloudFrontBuilder;
6921
+ withBinaryMediaTypes: (types: string[]) => SatisfiedAwsCloudFrontBuilder;
6922
+ withMinimumCompressionSize: (size: number) => SatisfiedAwsCloudFrontBuilder;
6923
+ withDisableExecuteApiEndpoint: (disable: boolean) => SatisfiedAwsCloudFrontBuilder;
6924
+ build: () => LiveSystemComponent;
6925
+ };
6926
+ type AwsCloudFrontBuilder = {
6927
+ withId: (id: string) => AwsCloudFrontBuilder;
6928
+ withVersion: (major: number, minor: number, patch: number) => AwsCloudFrontBuilder;
6929
+ withDisplayName: (displayName: string) => AwsCloudFrontBuilder;
6930
+ withDescription: (description: string) => AwsCloudFrontBuilder;
6931
+ withAwsRegion: (region: string) => AwsCloudFrontBuilder;
6932
+ withApiKeySource: (source: string) => AwsCloudFrontBuilder;
6933
+ withBinaryMediaTypes: (types: string[]) => AwsCloudFrontBuilder;
6934
+ withMinimumCompressionSize: (size: number) => AwsCloudFrontBuilder;
6935
+ withDisableExecuteApiEndpoint: (disable: boolean) => AwsCloudFrontBuilder;
6936
+ build: () => LiveSystemComponent;
6937
+ };
6938
+ type AwsCloudFrontConfig = {
6939
+ id: string;
6940
+ version: {
6941
+ major: number;
6942
+ minor: number;
6943
+ patch: number;
6944
+ };
6945
+ displayName: string;
6946
+ description?: string;
6947
+ awsRegion?: string;
6948
+ apiKeySource?: string;
6949
+ binaryMediaTypes?: string[];
6950
+ minimumCompressionSize?: number;
6951
+ disableExecuteApiEndpoint?: boolean;
6952
+ };
6953
+ declare namespace AwsCloudFront {
6954
+ const getBuilder: () => AwsCloudFrontBuilder;
6955
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedAwsCloudFrontBuilder;
6956
+ const create: (config: AwsCloudFrontConfig) => LiveSystemComponent;
6957
+ }
6958
+ //#endregion
6959
+ //#region src/live_system/component/api_management/paas/azure_api_management.d.ts
6960
+ /**
6961
+ * Returned by satisfy() — only exposes vendor-specific parameters.
6962
+ * Structural properties (id, version, displayName, description,
6963
+ * dependencies, links) are locked to the blueprint and cannot be overridden.
6964
+ */
6965
+ type SatisfiedAzureApiManagementBuilder = {
6966
+ withAzureRegion: (region: string) => SatisfiedAzureApiManagementBuilder;
6967
+ withAzureResourceGroup: (group: string) => SatisfiedAzureApiManagementBuilder;
6968
+ withPublisherName: (name: string) => SatisfiedAzureApiManagementBuilder;
6969
+ withPublisherEmail: (email: string) => SatisfiedAzureApiManagementBuilder;
6970
+ withSkuName: (sku: string) => SatisfiedAzureApiManagementBuilder;
6971
+ withPublicNetworkAccessEnabled: (enabled: boolean) => SatisfiedAzureApiManagementBuilder;
6972
+ build: () => LiveSystemComponent;
6973
+ };
6974
+ type AzureApiManagementBuilder = {
6975
+ withId: (id: string) => AzureApiManagementBuilder;
6976
+ withVersion: (major: number, minor: number, patch: number) => AzureApiManagementBuilder;
6977
+ withDisplayName: (displayName: string) => AzureApiManagementBuilder;
6978
+ withDescription: (description: string) => AzureApiManagementBuilder;
6979
+ withAzureRegion: (region: string) => AzureApiManagementBuilder;
6980
+ withAzureResourceGroup: (group: string) => AzureApiManagementBuilder;
6981
+ withPublisherName: (name: string) => AzureApiManagementBuilder;
6982
+ withPublisherEmail: (email: string) => AzureApiManagementBuilder;
6983
+ withSkuName: (sku: string) => AzureApiManagementBuilder;
6984
+ withPublicNetworkAccessEnabled: (enabled: boolean) => AzureApiManagementBuilder;
6985
+ build: () => LiveSystemComponent;
6986
+ };
6987
+ type AzureApiManagementConfig = {
6988
+ id: string;
6989
+ version: {
6990
+ major: number;
6991
+ minor: number;
6992
+ patch: number;
6993
+ };
6994
+ displayName: string;
6995
+ description?: string;
6996
+ azureRegion?: string;
6997
+ azureResourceGroup?: string;
6998
+ publisherName?: string;
6999
+ publisherEmail?: string;
7000
+ skuName?: string;
7001
+ publicNetworkAccessEnabled?: boolean;
7002
+ };
7003
+ declare namespace AzureApiManagement {
7004
+ const getBuilder: () => AzureApiManagementBuilder;
7005
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedAzureApiManagementBuilder;
7006
+ const create: (config: AzureApiManagementConfig) => LiveSystemComponent;
7007
+ }
7008
+ //#endregion
7009
+ //#region src/live_system/component/api_management/paas/gcp_api_gateway.d.ts
7010
+ /**
7011
+ * Returned by satisfy() — only exposes vendor-specific parameters.
7012
+ * Structural properties (id, version, displayName, description,
7013
+ * dependencies, links) are locked to the blueprint and cannot be overridden.
7014
+ */
7015
+ type SatisfiedGcpApiGatewayBuilder = {
7016
+ withRegion: (region: string) => SatisfiedGcpApiGatewayBuilder;
7017
+ withName: (name: string) => SatisfiedGcpApiGatewayBuilder;
7018
+ withApiId: (apiId: string) => SatisfiedGcpApiGatewayBuilder;
7019
+ withApiConfigId: (configId: string) => SatisfiedGcpApiGatewayBuilder;
7020
+ build: () => LiveSystemComponent;
7021
+ };
7022
+ type GcpApiGatewayBuilder = {
7023
+ withId: (id: string) => GcpApiGatewayBuilder;
7024
+ withVersion: (major: number, minor: number, patch: number) => GcpApiGatewayBuilder;
7025
+ withDisplayName: (displayName: string) => GcpApiGatewayBuilder;
7026
+ withDescription: (description: string) => GcpApiGatewayBuilder;
7027
+ withRegion: (region: string) => GcpApiGatewayBuilder;
7028
+ withName: (name: string) => GcpApiGatewayBuilder;
7029
+ withApiId: (apiId: string) => GcpApiGatewayBuilder;
7030
+ withApiConfigId: (configId: string) => GcpApiGatewayBuilder;
7031
+ build: () => LiveSystemComponent;
7032
+ };
7033
+ type GcpApiGatewayConfig = {
7034
+ id: string;
7035
+ version: {
7036
+ major: number;
7037
+ minor: number;
7038
+ patch: number;
7039
+ };
7040
+ displayName: string;
7041
+ description?: string;
7042
+ region?: string;
7043
+ name?: string;
7044
+ apiId?: string;
7045
+ apiConfigId?: string;
7046
+ };
7047
+ declare namespace GcpApiGateway {
7048
+ const getBuilder: () => GcpApiGatewayBuilder;
7049
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedGcpApiGatewayBuilder;
7050
+ const create: (config: GcpApiGatewayConfig) => LiveSystemComponent;
7051
+ }
7052
+ //#endregion
7053
+ //#region src/live_system/component/api_management/caas/ambassador.d.ts
7054
+ /**
7055
+ * Returned by satisfy() — only exposes vendor-specific parameters.
7056
+ * Structural properties (id, version, displayName, description,
7057
+ * dependencies, links) are locked to the blueprint and cannot be overridden.
7058
+ */
7059
+ type SatisfiedAmbassadorBuilder = {
7060
+ withNamespace: (namespace: string) => SatisfiedAmbassadorBuilder;
7061
+ withHost: (host: string) => SatisfiedAmbassadorBuilder;
7062
+ withHostOwnerEmail: (email: string) => SatisfiedAmbassadorBuilder;
7063
+ withAcmeProviderAuthority: (authority: string) => SatisfiedAmbassadorBuilder;
7064
+ withTlsSecretName: (name: string) => SatisfiedAmbassadorBuilder;
7065
+ withLicenseKey: (key: string) => SatisfiedAmbassadorBuilder;
7066
+ build: () => LiveSystemComponent;
7067
+ };
7068
+ type AmbassadorBuilder = {
7069
+ withId: (id: string) => AmbassadorBuilder;
7070
+ withVersion: (major: number, minor: number, patch: number) => AmbassadorBuilder;
7071
+ withDisplayName: (displayName: string) => AmbassadorBuilder;
7072
+ withDescription: (description: string) => AmbassadorBuilder;
7073
+ withNamespace: (namespace: string) => AmbassadorBuilder;
7074
+ withHost: (host: string) => AmbassadorBuilder;
7075
+ withHostOwnerEmail: (email: string) => AmbassadorBuilder;
7076
+ withAcmeProviderAuthority: (authority: string) => AmbassadorBuilder;
7077
+ withTlsSecretName: (name: string) => AmbassadorBuilder;
7078
+ withLicenseKey: (key: string) => AmbassadorBuilder;
7079
+ build: () => LiveSystemComponent;
7080
+ };
7081
+ type AmbassadorConfig = {
7082
+ id: string;
7083
+ version: {
7084
+ major: number;
7085
+ minor: number;
7086
+ patch: number;
7087
+ };
7088
+ displayName: string;
7089
+ description?: string;
7090
+ namespace?: string;
7091
+ host?: string;
7092
+ hostOwnerEmail?: string;
7093
+ acmeProviderAuthority?: string;
7094
+ tlsSecretName?: string;
7095
+ licenseKey?: string;
7096
+ };
7097
+ declare namespace Ambassador {
7098
+ const getBuilder: () => AmbassadorBuilder;
7099
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedAmbassadorBuilder;
7100
+ const create: (config: AmbassadorConfig) => LiveSystemComponent;
7101
+ }
7102
+ //#endregion
7103
+ //#region src/live_system/component/api_management/caas/traefik.d.ts
7104
+ /**
7105
+ * Returned by satisfy() — only exposes vendor-specific parameters.
7106
+ * Structural properties (id, version, displayName, description,
7107
+ * dependencies, links) are locked to the blueprint and cannot be overridden.
7108
+ */
7109
+ type SatisfiedTraefikBuilder = {
7110
+ withNamespace: (namespace: string) => SatisfiedTraefikBuilder;
7111
+ withHostname: (hostname: string) => SatisfiedTraefikBuilder;
7112
+ withLoadbalancerIp: (ip: string) => SatisfiedTraefikBuilder;
7113
+ withOidcClientId: (clientId: string) => SatisfiedTraefikBuilder;
7114
+ withOidcClientSecretId: (secretId: string) => SatisfiedTraefikBuilder;
7115
+ withForwardAuthSecretId: (secretId: string) => SatisfiedTraefikBuilder;
7116
+ withOidcIssuerUrl: (url: string) => SatisfiedTraefikBuilder;
7117
+ withEntryPoints: (entryPoints: unknown[]) => SatisfiedTraefikBuilder;
7118
+ withTlsCertificates: (certificates: unknown[]) => SatisfiedTraefikBuilder;
7119
+ withTlsSettings: (settings: Record<string, unknown>) => SatisfiedTraefikBuilder;
7120
+ withSecurityHeadersSettings: (settings: Record<string, unknown>) => SatisfiedTraefikBuilder;
7121
+ build: () => LiveSystemComponent;
7122
+ };
7123
+ type TraefikBuilder = {
7124
+ withId: (id: string) => TraefikBuilder;
7125
+ withVersion: (major: number, minor: number, patch: number) => TraefikBuilder;
7126
+ withDisplayName: (displayName: string) => TraefikBuilder;
7127
+ withDescription: (description: string) => TraefikBuilder;
7128
+ withNamespace: (namespace: string) => TraefikBuilder;
7129
+ withHostname: (hostname: string) => TraefikBuilder;
7130
+ withLoadbalancerIp: (ip: string) => TraefikBuilder;
7131
+ withOidcClientId: (clientId: string) => TraefikBuilder;
7132
+ withOidcClientSecretId: (secretId: string) => TraefikBuilder;
7133
+ withForwardAuthSecretId: (secretId: string) => TraefikBuilder;
7134
+ withOidcIssuerUrl: (url: string) => TraefikBuilder;
7135
+ withEntryPoints: (entryPoints: unknown[]) => TraefikBuilder;
7136
+ withTlsCertificates: (certificates: unknown[]) => TraefikBuilder;
7137
+ withTlsSettings: (settings: Record<string, unknown>) => TraefikBuilder;
7138
+ withSecurityHeadersSettings: (settings: Record<string, unknown>) => TraefikBuilder;
7139
+ build: () => LiveSystemComponent;
7140
+ };
7141
+ type TraefikConfig = {
7142
+ id: string;
7143
+ version: {
7144
+ major: number;
7145
+ minor: number;
7146
+ patch: number;
7147
+ };
7148
+ displayName: string;
7149
+ description?: string;
7150
+ namespace?: string;
7151
+ hostname?: string;
7152
+ loadbalancerIp?: string;
7153
+ oidcClientId?: string;
7154
+ oidcClientSecretId?: string;
7155
+ forwardAuthSecretId?: string;
7156
+ oidcIssuerUrl?: string;
7157
+ entryPoints?: unknown[];
7158
+ tlsCertificates?: unknown[];
7159
+ tlsSettings?: Record<string, unknown>;
7160
+ securityHeadersSettings?: Record<string, unknown>;
7161
+ };
7162
+ declare namespace Traefik {
7163
+ const getBuilder: () => TraefikBuilder;
7164
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedTraefikBuilder;
7165
+ const create: (config: TraefikConfig) => LiveSystemComponent;
7166
+ }
7167
+ //#endregion
7168
+ //#region src/live_system/component/api_management/saas/unmanaged.d.ts
7169
+ /**
7170
+ * Returned by satisfy() — no vendor-specific parameters.
7171
+ * Structural properties (id, version, displayName, description,
7172
+ * dependencies, links) are locked to the blueprint and cannot be overridden.
7173
+ */
7174
+ type SatisfiedApiManagementSaaSUnmanagedBuilder = {
7175
+ build: () => LiveSystemComponent;
7176
+ };
7177
+ type ApiManagementSaaSUnmanagedBuilder = {
7178
+ withId: (id: string) => ApiManagementSaaSUnmanagedBuilder;
7179
+ withVersion: (major: number, minor: number, patch: number) => ApiManagementSaaSUnmanagedBuilder;
7180
+ withDisplayName: (displayName: string) => ApiManagementSaaSUnmanagedBuilder;
7181
+ withDescription: (description: string) => ApiManagementSaaSUnmanagedBuilder;
7182
+ build: () => LiveSystemComponent;
7183
+ };
7184
+ type ApiManagementSaaSUnmanagedConfig = {
7185
+ id: string;
7186
+ version: {
7187
+ major: number;
7188
+ minor: number;
7189
+ patch: number;
7190
+ };
7191
+ displayName: string;
7192
+ description?: string;
7193
+ };
7194
+ declare namespace ApiManagementSaaSUnmanaged {
7195
+ const getBuilder: () => ApiManagementSaaSUnmanagedBuilder;
7196
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedApiManagementSaaSUnmanagedBuilder;
7197
+ const create: (config: ApiManagementSaaSUnmanagedConfig) => LiveSystemComponent;
7198
+ }
7199
+ //#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
+ //#region src/fractal/component/observability/saas/unmanaged.d.ts
7282
+ type ObservabilityUnmanagedComponent = {
7283
+ readonly component: BlueprintComponent;
7284
+ readonly components: ReadonlyArray<BlueprintComponent>;
7285
+ };
7286
+ type ObservabilityUnmanagedBuilder = {
7287
+ withId: (id: string) => ObservabilityUnmanagedBuilder;
7288
+ withVersion: (major: number, minor: number, patch: number) => ObservabilityUnmanagedBuilder;
7289
+ withDisplayName: (displayName: string) => ObservabilityUnmanagedBuilder;
7290
+ withDescription: (description: string) => ObservabilityUnmanagedBuilder;
7291
+ build: () => BlueprintComponent;
7292
+ };
7293
+ type ObservabilityUnmanagedConfig = {
7294
+ id: string;
7295
+ version: {
7296
+ major: number;
7297
+ minor: number;
7298
+ patch: number;
7299
+ };
7300
+ displayName: string;
7301
+ description?: string;
7302
+ };
7303
+ declare namespace ObservabilityUnmanaged {
7304
+ const getBuilder: () => ObservabilityUnmanagedBuilder;
7305
+ const create: (config: ObservabilityUnmanagedConfig) => ObservabilityUnmanagedComponent;
7306
+ }
7307
+ //#endregion
7308
+ //#region src/live_system/component/observability/caas/prometheus.d.ts
7309
+ /**
7310
+ * Returned by satisfy() — only exposes vendor-specific parameters.
7311
+ * Structural properties (id, version, displayName, description,
7312
+ * dependencies, links) are locked to the blueprint and cannot be overridden.
7313
+ */
7314
+ type SatisfiedPrometheusBuilder = {
7315
+ withNamespace: (namespace: string) => SatisfiedPrometheusBuilder;
7316
+ withApiGatewayUrl: (url: string) => SatisfiedPrometheusBuilder;
7317
+ build: () => LiveSystemComponent;
7318
+ };
7319
+ type PrometheusBuilder = {
7320
+ withId: (id: string) => PrometheusBuilder;
7321
+ withVersion: (major: number, minor: number, patch: number) => PrometheusBuilder;
7322
+ withDisplayName: (displayName: string) => PrometheusBuilder;
7323
+ withDescription: (description: string) => PrometheusBuilder;
7324
+ withNamespace: (namespace: string) => PrometheusBuilder;
7325
+ withApiGatewayUrl: (url: string) => PrometheusBuilder;
7326
+ build: () => LiveSystemComponent;
7327
+ };
7328
+ type PrometheusConfig = {
7329
+ id: string;
7330
+ version: {
7331
+ major: number;
7332
+ minor: number;
7333
+ patch: number;
7334
+ };
7335
+ displayName: string;
7336
+ description?: string;
7337
+ namespace?: string;
7338
+ apiGatewayUrl?: string;
7339
+ };
7340
+ declare namespace Prometheus {
7341
+ const getBuilder: () => PrometheusBuilder;
7342
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedPrometheusBuilder;
7343
+ const create: (config: PrometheusConfig) => LiveSystemComponent;
7344
+ }
7345
+ //#endregion
7346
+ //#region src/live_system/component/observability/caas/jaeger.d.ts
7347
+ /**
7348
+ * Returned by satisfy() — only exposes vendor-specific parameters.
7349
+ * Structural properties (id, version, displayName, description,
7350
+ * dependencies, links) are locked to the blueprint and cannot be overridden.
7351
+ */
7352
+ type SatisfiedJaegerBuilder = {
7353
+ withNamespace: (namespace: string) => SatisfiedJaegerBuilder;
7354
+ withStorage: (storage: string) => SatisfiedJaegerBuilder;
7355
+ withElasticInstances: (instances: number) => SatisfiedJaegerBuilder;
7356
+ withElasticVersion: (version: string) => SatisfiedJaegerBuilder;
7357
+ build: () => LiveSystemComponent;
7358
+ };
7359
+ type JaegerBuilder = {
7360
+ withId: (id: string) => JaegerBuilder;
7361
+ withVersion: (major: number, minor: number, patch: number) => JaegerBuilder;
7362
+ withDisplayName: (displayName: string) => JaegerBuilder;
7363
+ withDescription: (description: string) => JaegerBuilder;
7364
+ withNamespace: (namespace: string) => JaegerBuilder;
7365
+ withStorage: (storage: string) => JaegerBuilder;
7366
+ withElasticInstances: (instances: number) => JaegerBuilder;
7367
+ withElasticVersion: (version: string) => JaegerBuilder;
7368
+ build: () => LiveSystemComponent;
7369
+ };
7370
+ type JaegerConfig = {
7371
+ id: string;
7372
+ version: {
7373
+ major: number;
7374
+ minor: number;
7375
+ patch: number;
7376
+ };
7377
+ displayName: string;
7378
+ description?: string;
7379
+ namespace?: string;
7380
+ storage?: string;
7381
+ elasticInstances?: number;
7382
+ elasticVersion?: string;
7383
+ };
7384
+ declare namespace Jaeger {
7385
+ const getBuilder: () => JaegerBuilder;
7386
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedJaegerBuilder;
7387
+ const create: (config: JaegerConfig) => LiveSystemComponent;
7388
+ }
7389
+ //#endregion
7390
+ //#region src/live_system/component/observability/caas/elastic.d.ts
7391
+ /**
7392
+ * Returned by satisfy() — only exposes vendor-specific parameters.
7393
+ * Structural properties (id, version, displayName, description,
7394
+ * dependencies, links) are locked to the blueprint and cannot be overridden.
7395
+ */
7396
+ type SatisfiedObservabilityElasticBuilder = {
7397
+ withNamespace: (namespace: string) => SatisfiedObservabilityElasticBuilder;
7398
+ withElasticVersion: (version: string) => SatisfiedObservabilityElasticBuilder;
7399
+ withElasticInstances: (instances: number) => SatisfiedObservabilityElasticBuilder;
7400
+ withStorage: (storage: string) => SatisfiedObservabilityElasticBuilder;
7401
+ withIsApmRequired: (required: boolean) => SatisfiedObservabilityElasticBuilder;
7402
+ withIsKibanaRequired: (required: boolean) => SatisfiedObservabilityElasticBuilder;
7403
+ build: () => LiveSystemComponent;
7404
+ };
7405
+ type ObservabilityElasticBuilder = {
7406
+ withId: (id: string) => ObservabilityElasticBuilder;
7407
+ withVersion: (major: number, minor: number, patch: number) => ObservabilityElasticBuilder;
7408
+ withDisplayName: (displayName: string) => ObservabilityElasticBuilder;
7409
+ withDescription: (description: string) => ObservabilityElasticBuilder;
7410
+ withNamespace: (namespace: string) => ObservabilityElasticBuilder;
7411
+ withElasticVersion: (version: string) => ObservabilityElasticBuilder;
7412
+ withElasticInstances: (instances: number) => ObservabilityElasticBuilder;
7413
+ withStorage: (storage: string) => ObservabilityElasticBuilder;
7414
+ withIsApmRequired: (required: boolean) => ObservabilityElasticBuilder;
7415
+ withIsKibanaRequired: (required: boolean) => ObservabilityElasticBuilder;
7416
+ build: () => LiveSystemComponent;
7417
+ };
7418
+ type ObservabilityElasticConfig = {
7419
+ id: string;
7420
+ version: {
7421
+ major: number;
7422
+ minor: number;
7423
+ patch: number;
7424
+ };
7425
+ displayName: string;
7426
+ description?: string;
7427
+ namespace?: string;
7428
+ elasticVersion?: string;
7429
+ elasticInstances?: number;
7430
+ storage?: string;
7431
+ isApmRequired?: boolean;
7432
+ isKibanaRequired?: boolean;
7433
+ };
7434
+ declare namespace ObservabilityElastic {
7435
+ const getBuilder: () => ObservabilityElasticBuilder;
7436
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedObservabilityElasticBuilder;
7437
+ const create: (config: ObservabilityElasticConfig) => LiveSystemComponent;
7438
+ }
7439
+ //#endregion
7440
+ //#region src/live_system/component/observability/saas/unmanaged.d.ts
7441
+ /**
7442
+ * Returned by satisfy() — no vendor-specific parameters.
7443
+ * Structural properties (id, version, displayName, description,
7444
+ * dependencies, links) are locked to the blueprint and cannot be overridden.
7445
+ */
7446
+ type SatisfiedObservabilitySaaSUnmanagedBuilder = {
7447
+ build: () => LiveSystemComponent;
7448
+ };
7449
+ type ObservabilitySaaSUnmanagedBuilder = {
7450
+ withId: (id: string) => ObservabilitySaaSUnmanagedBuilder;
7451
+ withVersion: (major: number, minor: number, patch: number) => ObservabilitySaaSUnmanagedBuilder;
7452
+ withDisplayName: (displayName: string) => ObservabilitySaaSUnmanagedBuilder;
7453
+ withDescription: (description: string) => ObservabilitySaaSUnmanagedBuilder;
7454
+ build: () => LiveSystemComponent;
7455
+ };
7456
+ type ObservabilitySaaSUnmanagedConfig = {
7457
+ id: string;
7458
+ version: {
7459
+ major: number;
7460
+ minor: number;
7461
+ patch: number;
7462
+ };
7463
+ displayName: string;
7464
+ description?: string;
7465
+ };
7466
+ declare namespace ObservabilitySaaSUnmanaged {
7467
+ const getBuilder: () => ObservabilitySaaSUnmanagedBuilder;
7468
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedObservabilitySaaSUnmanagedBuilder;
7469
+ const create: (config: ObservabilitySaaSUnmanagedConfig) => LiveSystemComponent;
7470
+ }
7471
+ //#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
+ //#region src/fractal/component/security/saas/unmanaged.d.ts
7500
+ type SecurityUnmanagedComponent = {
7501
+ readonly component: BlueprintComponent;
7502
+ readonly components: ReadonlyArray<BlueprintComponent>;
7503
+ };
7504
+ type SecurityUnmanagedBuilder = {
7505
+ withId: (id: string) => SecurityUnmanagedBuilder;
7506
+ withVersion: (major: number, minor: number, patch: number) => SecurityUnmanagedBuilder;
7507
+ withDisplayName: (displayName: string) => SecurityUnmanagedBuilder;
7508
+ withDescription: (description: string) => SecurityUnmanagedBuilder;
7509
+ build: () => BlueprintComponent;
7510
+ };
7511
+ type SecurityUnmanagedConfig = {
7512
+ id: string;
7513
+ version: {
7514
+ major: number;
7515
+ minor: number;
7516
+ patch: number;
7517
+ };
7518
+ displayName: string;
7519
+ description?: string;
7520
+ };
7521
+ declare namespace SecurityUnmanaged {
7522
+ const getBuilder: () => SecurityUnmanagedBuilder;
7523
+ const create: (config: SecurityUnmanagedConfig) => SecurityUnmanagedComponent;
7524
+ }
7525
+ //#endregion
7526
+ //#region src/live_system/component/security/caas/ocelot.d.ts
7527
+ /**
7528
+ * Returned by satisfy() — only exposes vendor-specific parameters.
7529
+ * Structural properties (id, version, displayName, description,
7530
+ * dependencies, links) are locked to the blueprint and cannot be overridden.
7531
+ */
7532
+ type SatisfiedOcelotBuilder = {
7533
+ withNamespace: (namespace: string) => SatisfiedOcelotBuilder;
7534
+ withCookieMaxAgeSec: (seconds: number) => SatisfiedOcelotBuilder;
7535
+ withCorsOrigins: (origins: string) => SatisfiedOcelotBuilder;
7536
+ withHostOwnerEmail: (email: string) => SatisfiedOcelotBuilder;
7537
+ withHost: (host: string) => SatisfiedOcelotBuilder;
7538
+ build: () => LiveSystemComponent;
7539
+ };
7540
+ type OcelotBuilder = {
7541
+ withId: (id: string) => OcelotBuilder;
7542
+ withVersion: (major: number, minor: number, patch: number) => OcelotBuilder;
7543
+ withDisplayName: (displayName: string) => OcelotBuilder;
7544
+ withDescription: (description: string) => OcelotBuilder;
7545
+ withNamespace: (namespace: string) => OcelotBuilder;
7546
+ withCookieMaxAgeSec: (seconds: number) => OcelotBuilder;
7547
+ withCorsOrigins: (origins: string) => OcelotBuilder;
7548
+ withHostOwnerEmail: (email: string) => OcelotBuilder;
7549
+ withHost: (host: string) => OcelotBuilder;
7550
+ build: () => LiveSystemComponent;
7551
+ };
7552
+ type OcelotConfig = {
7553
+ id: string;
7554
+ version: {
7555
+ major: number;
7556
+ minor: number;
7557
+ patch: number;
7558
+ };
7559
+ displayName: string;
7560
+ description?: string;
7561
+ namespace?: string;
7562
+ cookieMaxAgeSec?: number;
7563
+ corsOrigins?: string;
7564
+ hostOwnerEmail?: string;
7565
+ host?: string;
7566
+ };
7567
+ declare namespace Ocelot {
7568
+ const getBuilder: () => OcelotBuilder;
7569
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedOcelotBuilder;
7570
+ const create: (config: OcelotConfig) => LiveSystemComponent;
7571
+ }
7572
+ //#endregion
7573
+ //#region src/live_system/component/security/saas/unmanaged.d.ts
7574
+ /**
7575
+ * Returned by satisfy() — no vendor-specific parameters.
7576
+ * Structural properties (id, version, displayName, description,
7577
+ * dependencies, links) are locked to the blueprint and cannot be overridden.
7578
+ */
7579
+ type SatisfiedSecuritySaaSUnmanagedBuilder = {
7580
+ build: () => LiveSystemComponent;
7581
+ };
7582
+ type SecuritySaaSUnmanagedBuilder = {
7583
+ withId: (id: string) => SecuritySaaSUnmanagedBuilder;
7584
+ withVersion: (major: number, minor: number, patch: number) => SecuritySaaSUnmanagedBuilder;
7585
+ withDisplayName: (displayName: string) => SecuritySaaSUnmanagedBuilder;
7586
+ withDescription: (description: string) => SecuritySaaSUnmanagedBuilder;
7587
+ build: () => LiveSystemComponent;
7588
+ };
7589
+ type SecuritySaaSUnmanagedConfig = {
7590
+ id: string;
7591
+ version: {
7592
+ major: number;
7593
+ minor: number;
7594
+ patch: number;
7595
+ };
7596
+ displayName: string;
7597
+ description?: string;
7598
+ };
7599
+ declare namespace SecuritySaaSUnmanaged {
7600
+ const getBuilder: () => SecuritySaaSUnmanagedBuilder;
7601
+ const satisfy: (blueprint: BlueprintComponent) => SatisfiedSecuritySaaSUnmanagedBuilder;
7602
+ const create: (config: SecuritySaaSUnmanagedConfig) => LiveSystemComponent;
7603
+ }
7604
+ //#endregion
7605
+ //#region src/index.d.ts
7606
+ declare const BoundedContext: typeof BoundedContext$1;
7607
+ type BoundedContext = BoundedContext$1;
7608
+ declare const Fractal: typeof Fractal$1;
7609
+ type Fractal = Fractal$1;
7610
+ declare const InfrastructureDomain: {
7611
+ readonly ApiManagement: "APIManagement";
7612
+ readonly BigData: "BigData";
7613
+ readonly NetworkAndCompute: "NetworkAndCompute";
7614
+ readonly CustomWorkloads: "CustomWorkloads";
7615
+ readonly Messaging: "Messaging";
7616
+ readonly Storage: "Storage";
7617
+ readonly Observability: "Observability";
7618
+ readonly Security: "Security";
7619
+ };
7620
+ type InfrastructureDomain = InfrastructureDomain$1;
7621
+ declare const KebabCaseString: typeof KebabCaseString$1;
7622
+ type KebabCaseString = KebabCaseString$1;
7623
+ declare const OwnerId: typeof OwnerId$1;
7624
+ type OwnerId = OwnerId$1;
7625
+ declare const OwnerType: typeof OwnerType$1;
7626
+ type OwnerType = OwnerType$1;
7627
+ declare const PascalCaseString: typeof PascalCaseString$1;
7628
+ type PascalCaseString = PascalCaseString$1;
7629
+ declare const ServiceAccountCredentials: typeof ServiceAccountCredentials$1;
7630
+ type ServiceAccountCredentials = ServiceAccountCredentials$1;
7631
+ declare const ServiceAccountId: typeof ServiceAccountId$1;
7632
+ type ServiceAccountId = ServiceAccountId$1;
7633
+ declare const ServiceDeliveryModel: {
7634
+ readonly IaaS: "IaaS";
7635
+ readonly CaaS: "CaaS";
7636
+ readonly PaaS: "PaaS";
7637
+ readonly FaaS: "FaaS";
7638
+ readonly SaaS: "SaaS";
7639
+ };
3373
7640
  type ServiceDeliveryModel = ServiceDeliveryModel$1;
3374
7641
  declare const Version: typeof Version$1;
3375
7642
  type Version = Version$1;
@@ -3377,5 +7644,6 @@ declare const Environment: typeof Environment$1;
3377
7644
  type Environment = Environment$1;
3378
7645
  declare const LiveSystem: typeof LiveSystem$1;
3379
7646
  type LiveSystem = LiveSystem$1;
7647
+ declare const Custom: typeof Custom$1;
3380
7648
  //#endregion
3381
- export { AwsEcsCluster, type AwsEcsClusterBuilder, type AwsEcsClusterConfig, AwsEcsService, type AwsEcsServiceBuilder, type AwsEcsServiceConfig, AwsEcsTaskDefinition, type AwsEcsTaskDefinitionBuilder, type AwsEcsTaskDefinitionConfig, AwsEksCluster, type AwsEksClusterBuilder, type AwsEksClusterConfig, AwsSecurityGroup, type AwsSecurityGroupBuilder, type AwsSecurityGroupConfig, AwsSubnet, type AwsSubnetBuilder, type AwsSubnetConfig, AwsVpc, type AwsVpcBuilder, type AwsVpcConfig, AzureAksCluster, type AzureAksClusterBuilder, type AzureAksClusterConfig, AzureContainerApp, type AzureContainerAppBuilder, type AzureContainerAppConfig, AzureContainerAppsEnvironment, type AzureContainerAppsEnvironmentBuilder, type AzureContainerAppsEnvironmentConfig, AzureContainerInstance, type AzureContainerInstanceBuilder, type AzureContainerInstanceConfig, AzureNsg, type AzureNsgBuilder, type AzureNsgConfig, AzureSubnet, type AzureSubnetBuilder, type AzureSubnetConfig, AzureVm, type AzureVmBuilder, type AzureVmConfig, AzureVnet, type AzureVnetBuilder, type AzureVnetConfig, BoundedContext, ContainerPlatform, type ContainerPlatformBuilder, type ContainerPlatformComponent, type ContainerPlatformConfig, Ec2Instance, type Ec2InstanceBuilder, type Ec2InstanceConfig, Environment, Fractal, GcpCloudRunService, type GcpCloudRunServiceBuilder, type GcpCloudRunServiceConfig, GcpFirewall, type GcpFirewallBuilder, type GcpFirewallConfig, GcpGkeCluster, type GcpGkeClusterBuilder, type GcpGkeClusterConfig, GcpSubnet, type GcpSubnetBuilder, type GcpSubnetConfig, GcpVm, type GcpVmBuilder, type GcpVmConfig, GcpVpc, type GcpVpcBuilder, type GcpVpcConfig, HetznerFirewall, type HetznerFirewallBuilder, type HetznerFirewallConfig, HetznerNetwork, type HetznerNetworkBuilder, type HetznerNetworkConfig, HetznerServer, type HetznerServerBuilder, type HetznerServerConfig, HetznerSubnet, type HetznerSubnetBuilder, type HetznerSubnetConfig, InfrastructureDomain, type IngressRule, KebabCaseString, LiveSystem, 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, OwnerId, OwnerType, PascalCaseString, type SatisfiedAwsEcsClusterBuilder, type SatisfiedAwsEcsServiceBuilder, type SatisfiedAwsEcsTaskDefinitionBuilder, type SatisfiedAwsEksClusterBuilder, type SatisfiedAwsSecurityGroupBuilder, type SatisfiedAwsSubnetBuilder, type SatisfiedAwsVpcBuilder, type SatisfiedAzureAksClusterBuilder, type SatisfiedAzureContainerAppBuilder, type SatisfiedAzureContainerAppsEnvironmentBuilder, type SatisfiedAzureContainerInstanceBuilder, type SatisfiedAzureNsgBuilder, type SatisfiedAzureSubnetBuilder, type SatisfiedAzureVmBuilder, type SatisfiedAzureVnetBuilder, type SatisfiedEc2Builder, type SatisfiedGcpCloudRunServiceBuilder, type SatisfiedGcpFirewallBuilder, type SatisfiedGcpGkeClusterBuilder, type SatisfiedGcpSubnetBuilder, type SatisfiedGcpVmBuilder, type SatisfiedGcpVpcBuilder, type SatisfiedHetznerFirewallBuilder, type SatisfiedHetznerNetworkBuilder, type SatisfiedHetznerServerBuilder, type SatisfiedHetznerSubnetBuilder, type SatisfiedOciContainerInstanceBuilder, type SatisfiedOciInstanceBuilder, type SatisfiedOciSecurityListBuilder, type SatisfiedOciSubnetBuilder, type SatisfiedOciVcnBuilder, SecurityGroup, type SecurityGroupBuilder, type SecurityGroupComponent, type SecurityGroupConfig, ServiceAccountCredentials, ServiceAccountId, ServiceDeliveryModel, Subnet, type SubnetBuilder, type SubnetComponent, type SubnetConfig, type SubnetResult, Version, VirtualMachine, type VirtualMachineBuilder, type VirtualMachineComponent, type VirtualMachineConfig, VirtualNetwork, type VirtualNetworkBuilder, type VirtualNetworkComponent, type VirtualNetworkConfig, type VirtualNetworkResult, type VmPortLink, Workload, type WorkloadBuilder, type WorkloadComponent, type WorkloadConfig, type WorkloadPortLink };
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 };