@fractal_cloud/sdk 1.5.0 → 1.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +148 -11
- package/dist/index.d.cts +371 -277
- package/dist/index.d.mts +371 -277
- package/dist/index.mjs +148 -11
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1913,6 +1913,62 @@ declare namespace CaaSApiGateway {
|
|
|
1913
1913
|
const create: (config: CaaSApiGatewayConfig) => CaaSApiGatewayComponent;
|
|
1914
1914
|
}
|
|
1915
1915
|
//#endregion
|
|
1916
|
+
//#region src/fractal/component/messaging/caas/entity.d.ts
|
|
1917
|
+
type CaaSMessagingEntityComponent = {
|
|
1918
|
+
readonly component: BlueprintComponent;
|
|
1919
|
+
readonly components: ReadonlyArray<BlueprintComponent>;
|
|
1920
|
+
};
|
|
1921
|
+
type CaaSMessagingEntityBuilder = {
|
|
1922
|
+
withId: (id: string) => CaaSMessagingEntityBuilder;
|
|
1923
|
+
withVersion: (major: number, minor: number, patch: number) => CaaSMessagingEntityBuilder;
|
|
1924
|
+
withDisplayName: (displayName: string) => CaaSMessagingEntityBuilder;
|
|
1925
|
+
withDescription: (description: string) => CaaSMessagingEntityBuilder;
|
|
1926
|
+
build: () => BlueprintComponent;
|
|
1927
|
+
};
|
|
1928
|
+
type CaaSMessagingEntityConfig = {
|
|
1929
|
+
id: string;
|
|
1930
|
+
version: {
|
|
1931
|
+
major: number;
|
|
1932
|
+
minor: number;
|
|
1933
|
+
patch: number;
|
|
1934
|
+
};
|
|
1935
|
+
displayName: string;
|
|
1936
|
+
description?: string;
|
|
1937
|
+
};
|
|
1938
|
+
declare namespace CaaSMessagingEntity {
|
|
1939
|
+
const getBuilder: () => CaaSMessagingEntityBuilder;
|
|
1940
|
+
const create: (config: CaaSMessagingEntityConfig) => CaaSMessagingEntityComponent;
|
|
1941
|
+
}
|
|
1942
|
+
//#endregion
|
|
1943
|
+
//#region src/fractal/component/messaging/paas/entity.d.ts
|
|
1944
|
+
type MessagingEntityComponent = {
|
|
1945
|
+
readonly component: BlueprintComponent;
|
|
1946
|
+
readonly components: ReadonlyArray<BlueprintComponent>;
|
|
1947
|
+
};
|
|
1948
|
+
type MessagingEntityBuilder = {
|
|
1949
|
+
withId: (id: string) => MessagingEntityBuilder;
|
|
1950
|
+
withVersion: (major: number, minor: number, patch: number) => MessagingEntityBuilder;
|
|
1951
|
+
withDisplayName: (displayName: string) => MessagingEntityBuilder;
|
|
1952
|
+
withDescription: (description: string) => MessagingEntityBuilder;
|
|
1953
|
+
withMessageRetentionHours: (hours: number) => MessagingEntityBuilder;
|
|
1954
|
+
build: () => BlueprintComponent;
|
|
1955
|
+
};
|
|
1956
|
+
type MessagingEntityConfig = {
|
|
1957
|
+
id: string;
|
|
1958
|
+
version: {
|
|
1959
|
+
major: number;
|
|
1960
|
+
minor: number;
|
|
1961
|
+
patch: number;
|
|
1962
|
+
};
|
|
1963
|
+
displayName: string;
|
|
1964
|
+
description?: string;
|
|
1965
|
+
messageRetentionHours?: number;
|
|
1966
|
+
};
|
|
1967
|
+
declare namespace MessagingEntity {
|
|
1968
|
+
const getBuilder: () => MessagingEntityBuilder;
|
|
1969
|
+
const create: (config: MessagingEntityConfig) => MessagingEntityComponent;
|
|
1970
|
+
}
|
|
1971
|
+
//#endregion
|
|
1916
1972
|
//#region src/fractal/component/custom_workloads/caas/workload.d.ts
|
|
1917
1973
|
/**
|
|
1918
1974
|
* Container env var. Either a literal value, or a reference to a key in a
|
|
@@ -1985,12 +2041,33 @@ type WorkloadPortLink = {
|
|
|
1985
2041
|
type WorkloadApiGatewayLink = {
|
|
1986
2042
|
target: CaaSApiGatewayComponent;
|
|
1987
2043
|
} & ApiGatewayLinkSettings;
|
|
2044
|
+
/**
|
|
2045
|
+
* Access mode for a Workload → Messaging entity link.
|
|
2046
|
+
* - `publish`: workload only produces messages.
|
|
2047
|
+
* - `subscribe`: workload only consumes messages.
|
|
2048
|
+
* - `publish-subscribe`: workload both produces and consumes.
|
|
2049
|
+
*/
|
|
2050
|
+
type MessagingAccessType = 'publish' | 'subscribe' | 'publish-subscribe';
|
|
2051
|
+
/**
|
|
2052
|
+
* Settings for a Workload → MessagingEntity link. The agent that reconciles the
|
|
2053
|
+
* messaging stack uses these to grant the workload the right IAM/ACL on the topic
|
|
2054
|
+
* (and to wire any consumer-side parameters like consumer group / starting position).
|
|
2055
|
+
*/
|
|
2056
|
+
type MessagingLinkSettings = {
|
|
2057
|
+
access: MessagingAccessType; /** Consumer group; only meaningful when `access` includes `subscribe`. */
|
|
2058
|
+
consumerGroup?: string; /** Subscriber starting position: `"start"`, `"end"`, or an ISO timestamp. */
|
|
2059
|
+
startingPosition?: string;
|
|
2060
|
+
};
|
|
2061
|
+
type WorkloadMessagingLink = {
|
|
2062
|
+
target: CaaSMessagingEntityComponent | MessagingEntityComponent;
|
|
2063
|
+
} & MessagingLinkSettings;
|
|
1988
2064
|
type WorkloadComponent = {
|
|
1989
2065
|
readonly component: BlueprintComponent;
|
|
1990
2066
|
readonly components: ReadonlyArray<BlueprintComponent>; /** Declares a traffic rule from this workload to another. The agent derives managed SG egress/ingress rules. */
|
|
1991
2067
|
linkToWorkload: (links: WorkloadPortLink[]) => WorkloadComponent; /** Declares SG membership. The agent assigns the workload to the given security group at launch. No settings required. */
|
|
1992
2068
|
linkToSecurityGroup: (sgs: SecurityGroupComponent[]) => WorkloadComponent; /** Declares "expose me through this API Gateway". Settings carry the routing contract (prefix, hostname, rewrite, timeoutMs, port, tlsSecretName). The gateway's agent derives a Mapping/Ingress/etc per link. */
|
|
1993
|
-
linkToApiGateway: (links: WorkloadApiGatewayLink[]) => WorkloadComponent;
|
|
2069
|
+
linkToApiGateway: (links: WorkloadApiGatewayLink[]) => WorkloadComponent; /** Declares "I publish to / subscribe from this messaging topic/queue". Settings carry the access mode and optional consumer-side parameters. The messaging agent uses these to provision IAM/ACLs and wire consumer config. */
|
|
2070
|
+
linkToMessagingEntity: (links: WorkloadMessagingLink[]) => WorkloadComponent;
|
|
1994
2071
|
};
|
|
1995
2072
|
type WorkloadBuilder = {
|
|
1996
2073
|
withId: (id: string) => WorkloadBuilder;
|
|
@@ -3359,6 +3436,197 @@ declare namespace OpenshiftVm {
|
|
|
3359
3436
|
const create: (config: OpenshiftVmConfig) => LiveSystemComponent;
|
|
3360
3437
|
}
|
|
3361
3438
|
//#endregion
|
|
3439
|
+
//#region src/fractal/component/messaging/caas/broker.d.ts
|
|
3440
|
+
type CaaSBrokerComponent = {
|
|
3441
|
+
readonly broker: BlueprintComponent;
|
|
3442
|
+
readonly entities: ReadonlyArray<CaaSMessagingEntityComponent>;
|
|
3443
|
+
withEntities: (entities: CaaSMessagingEntityComponent[]) => CaaSBrokerComponent;
|
|
3444
|
+
};
|
|
3445
|
+
type CaaSBrokerBuilder = {
|
|
3446
|
+
withId: (id: string) => CaaSBrokerBuilder;
|
|
3447
|
+
withVersion: (major: number, minor: number, patch: number) => CaaSBrokerBuilder;
|
|
3448
|
+
withDisplayName: (displayName: string) => CaaSBrokerBuilder;
|
|
3449
|
+
withDescription: (description: string) => CaaSBrokerBuilder;
|
|
3450
|
+
build: () => BlueprintComponent;
|
|
3451
|
+
};
|
|
3452
|
+
type CaaSBrokerConfig = {
|
|
3453
|
+
id: string;
|
|
3454
|
+
version: {
|
|
3455
|
+
major: number;
|
|
3456
|
+
minor: number;
|
|
3457
|
+
patch: number;
|
|
3458
|
+
};
|
|
3459
|
+
displayName: string;
|
|
3460
|
+
description?: string;
|
|
3461
|
+
};
|
|
3462
|
+
declare namespace CaaSBroker {
|
|
3463
|
+
const getBuilder: () => CaaSBrokerBuilder;
|
|
3464
|
+
const create: (config: CaaSBrokerConfig) => CaaSBrokerComponent;
|
|
3465
|
+
}
|
|
3466
|
+
//#endregion
|
|
3467
|
+
//#region src/fractal/component/storage/caas/search_entity.d.ts
|
|
3468
|
+
type SearchEntityComponent = {
|
|
3469
|
+
readonly component: BlueprintComponent;
|
|
3470
|
+
readonly components: ReadonlyArray<BlueprintComponent>;
|
|
3471
|
+
};
|
|
3472
|
+
type SearchEntityBuilder = {
|
|
3473
|
+
withId: (id: string) => SearchEntityBuilder;
|
|
3474
|
+
withVersion: (major: number, minor: number, patch: number) => SearchEntityBuilder;
|
|
3475
|
+
withDisplayName: (displayName: string) => SearchEntityBuilder;
|
|
3476
|
+
withDescription: (description: string) => SearchEntityBuilder;
|
|
3477
|
+
build: () => BlueprintComponent;
|
|
3478
|
+
};
|
|
3479
|
+
type SearchEntityConfig = {
|
|
3480
|
+
id: string;
|
|
3481
|
+
version: {
|
|
3482
|
+
major: number;
|
|
3483
|
+
minor: number;
|
|
3484
|
+
patch: number;
|
|
3485
|
+
};
|
|
3486
|
+
displayName: string;
|
|
3487
|
+
description?: string;
|
|
3488
|
+
};
|
|
3489
|
+
declare namespace SearchEntity {
|
|
3490
|
+
const getBuilder: () => SearchEntityBuilder;
|
|
3491
|
+
const create: (config: SearchEntityConfig) => SearchEntityComponent;
|
|
3492
|
+
}
|
|
3493
|
+
//#endregion
|
|
3494
|
+
//#region src/fractal/component/storage/caas/search.d.ts
|
|
3495
|
+
type SearchComponent = {
|
|
3496
|
+
readonly search: BlueprintComponent;
|
|
3497
|
+
readonly entities: ReadonlyArray<SearchEntityComponent>;
|
|
3498
|
+
withEntities: (entities: SearchEntityComponent[]) => SearchComponent;
|
|
3499
|
+
};
|
|
3500
|
+
type SearchBuilder = {
|
|
3501
|
+
withId: (id: string) => SearchBuilder;
|
|
3502
|
+
withVersion: (major: number, minor: number, patch: number) => SearchBuilder;
|
|
3503
|
+
withDisplayName: (displayName: string) => SearchBuilder;
|
|
3504
|
+
withDescription: (description: string) => SearchBuilder;
|
|
3505
|
+
build: () => BlueprintComponent;
|
|
3506
|
+
};
|
|
3507
|
+
type SearchConfig = {
|
|
3508
|
+
id: string;
|
|
3509
|
+
version: {
|
|
3510
|
+
major: number;
|
|
3511
|
+
minor: number;
|
|
3512
|
+
patch: number;
|
|
3513
|
+
};
|
|
3514
|
+
displayName: string;
|
|
3515
|
+
description?: string;
|
|
3516
|
+
};
|
|
3517
|
+
declare namespace Search {
|
|
3518
|
+
const getBuilder: () => SearchBuilder;
|
|
3519
|
+
const create: (config: SearchConfig) => SearchComponent;
|
|
3520
|
+
}
|
|
3521
|
+
//#endregion
|
|
3522
|
+
//#region src/fractal/component/observability/caas/monitoring.d.ts
|
|
3523
|
+
type MonitoringComponent = {
|
|
3524
|
+
readonly component: BlueprintComponent;
|
|
3525
|
+
readonly components: ReadonlyArray<BlueprintComponent>;
|
|
3526
|
+
};
|
|
3527
|
+
type MonitoringBuilder = {
|
|
3528
|
+
withId: (id: string) => MonitoringBuilder;
|
|
3529
|
+
withVersion: (major: number, minor: number, patch: number) => MonitoringBuilder;
|
|
3530
|
+
withDisplayName: (displayName: string) => MonitoringBuilder;
|
|
3531
|
+
withDescription: (description: string) => MonitoringBuilder;
|
|
3532
|
+
build: () => BlueprintComponent;
|
|
3533
|
+
};
|
|
3534
|
+
type MonitoringConfig = {
|
|
3535
|
+
id: string;
|
|
3536
|
+
version: {
|
|
3537
|
+
major: number;
|
|
3538
|
+
minor: number;
|
|
3539
|
+
patch: number;
|
|
3540
|
+
};
|
|
3541
|
+
displayName: string;
|
|
3542
|
+
description?: string;
|
|
3543
|
+
};
|
|
3544
|
+
declare namespace Monitoring {
|
|
3545
|
+
const getBuilder: () => MonitoringBuilder;
|
|
3546
|
+
const create: (config: MonitoringConfig) => MonitoringComponent;
|
|
3547
|
+
}
|
|
3548
|
+
//#endregion
|
|
3549
|
+
//#region src/fractal/component/observability/caas/tracing.d.ts
|
|
3550
|
+
type TracingComponent = {
|
|
3551
|
+
readonly component: BlueprintComponent;
|
|
3552
|
+
readonly components: ReadonlyArray<BlueprintComponent>;
|
|
3553
|
+
};
|
|
3554
|
+
type TracingBuilder = {
|
|
3555
|
+
withId: (id: string) => TracingBuilder;
|
|
3556
|
+
withVersion: (major: number, minor: number, patch: number) => TracingBuilder;
|
|
3557
|
+
withDisplayName: (displayName: string) => TracingBuilder;
|
|
3558
|
+
withDescription: (description: string) => TracingBuilder;
|
|
3559
|
+
build: () => BlueprintComponent;
|
|
3560
|
+
};
|
|
3561
|
+
type TracingConfig = {
|
|
3562
|
+
id: string;
|
|
3563
|
+
version: {
|
|
3564
|
+
major: number;
|
|
3565
|
+
minor: number;
|
|
3566
|
+
patch: number;
|
|
3567
|
+
};
|
|
3568
|
+
displayName: string;
|
|
3569
|
+
description?: string;
|
|
3570
|
+
};
|
|
3571
|
+
declare namespace Tracing {
|
|
3572
|
+
const getBuilder: () => TracingBuilder;
|
|
3573
|
+
const create: (config: TracingConfig) => TracingComponent;
|
|
3574
|
+
}
|
|
3575
|
+
//#endregion
|
|
3576
|
+
//#region src/fractal/component/observability/caas/logging.d.ts
|
|
3577
|
+
type LoggingComponent = {
|
|
3578
|
+
readonly component: BlueprintComponent;
|
|
3579
|
+
readonly components: ReadonlyArray<BlueprintComponent>;
|
|
3580
|
+
};
|
|
3581
|
+
type LoggingBuilder = {
|
|
3582
|
+
withId: (id: string) => LoggingBuilder;
|
|
3583
|
+
withVersion: (major: number, minor: number, patch: number) => LoggingBuilder;
|
|
3584
|
+
withDisplayName: (displayName: string) => LoggingBuilder;
|
|
3585
|
+
withDescription: (description: string) => LoggingBuilder;
|
|
3586
|
+
build: () => BlueprintComponent;
|
|
3587
|
+
};
|
|
3588
|
+
type LoggingConfig = {
|
|
3589
|
+
id: string;
|
|
3590
|
+
version: {
|
|
3591
|
+
major: number;
|
|
3592
|
+
minor: number;
|
|
3593
|
+
patch: number;
|
|
3594
|
+
};
|
|
3595
|
+
displayName: string;
|
|
3596
|
+
description?: string;
|
|
3597
|
+
};
|
|
3598
|
+
declare namespace Logging {
|
|
3599
|
+
const getBuilder: () => LoggingBuilder;
|
|
3600
|
+
const create: (config: LoggingConfig) => LoggingComponent;
|
|
3601
|
+
}
|
|
3602
|
+
//#endregion
|
|
3603
|
+
//#region src/fractal/component/security/caas/service_mesh.d.ts
|
|
3604
|
+
type ServiceMeshComponent = {
|
|
3605
|
+
readonly component: BlueprintComponent;
|
|
3606
|
+
readonly components: ReadonlyArray<BlueprintComponent>;
|
|
3607
|
+
};
|
|
3608
|
+
type ServiceMeshBuilder = {
|
|
3609
|
+
withId: (id: string) => ServiceMeshBuilder;
|
|
3610
|
+
withVersion: (major: number, minor: number, patch: number) => ServiceMeshBuilder;
|
|
3611
|
+
withDisplayName: (displayName: string) => ServiceMeshBuilder;
|
|
3612
|
+
withDescription: (description: string) => ServiceMeshBuilder;
|
|
3613
|
+
build: () => BlueprintComponent;
|
|
3614
|
+
};
|
|
3615
|
+
type ServiceMeshConfig = {
|
|
3616
|
+
id: string;
|
|
3617
|
+
version: {
|
|
3618
|
+
major: number;
|
|
3619
|
+
minor: number;
|
|
3620
|
+
patch: number;
|
|
3621
|
+
};
|
|
3622
|
+
displayName: string;
|
|
3623
|
+
description?: string;
|
|
3624
|
+
};
|
|
3625
|
+
declare namespace ServiceMesh {
|
|
3626
|
+
const getBuilder: () => ServiceMeshBuilder;
|
|
3627
|
+
const create: (config: ServiceMeshConfig) => ServiceMeshComponent;
|
|
3628
|
+
}
|
|
3629
|
+
//#endregion
|
|
3362
3630
|
//#region src/fractal/component/network_and_compute/paas/container_platform.d.ts
|
|
3363
3631
|
type NodePoolConfig = {
|
|
3364
3632
|
name: string;
|
|
@@ -3376,8 +3644,28 @@ type ContainerPlatformComponent = {
|
|
|
3376
3644
|
* Workload nodes with the platform dependency auto-wired into each component.
|
|
3377
3645
|
* Pass these to Subnet.withWorkloads() so the subnet dep is stacked on top.
|
|
3378
3646
|
*/
|
|
3379
|
-
readonly workloads: ReadonlyArray<WorkloadComponent>;
|
|
3647
|
+
readonly workloads: ReadonlyArray<WorkloadComponent>; /** API Gateway with the platform dependency auto-wired (at most one per cluster). */
|
|
3648
|
+
readonly apiGateway: CaaSApiGatewayComponent | undefined; /** Messaging brokers with the platform dep auto-wired; entities transitively depend via the broker. */
|
|
3649
|
+
readonly brokers: ReadonlyArray<CaaSBrokerComponent>; /** Search clusters with the platform dep auto-wired; entities transitively depend via the search. */
|
|
3650
|
+
readonly searches: ReadonlyArray<SearchComponent>; /** Monitoring stack with the platform dependency auto-wired (at most one per cluster). */
|
|
3651
|
+
readonly monitoring: MonitoringComponent | undefined; /** Tracing backend with the platform dependency auto-wired (at most one per cluster). */
|
|
3652
|
+
readonly tracing: TracingComponent | undefined; /** Logging pipeline with the platform dependency auto-wired (at most one per cluster). */
|
|
3653
|
+
readonly logging: LoggingComponent | undefined; /** Service mesh with the platform dependency auto-wired (at most one per cluster). */
|
|
3654
|
+
readonly serviceMesh: ServiceMeshComponent | undefined;
|
|
3655
|
+
/**
|
|
3656
|
+
* Flat list of every blueprint component owned by this container platform —
|
|
3657
|
+
* the platform itself plus all wired CaaS services and their child entities.
|
|
3658
|
+
* Spread these into Fractal.withComponents() for direct inclusion.
|
|
3659
|
+
*/
|
|
3660
|
+
readonly components: ReadonlyArray<BlueprintComponent>;
|
|
3380
3661
|
withWorkloads: (workloads: WorkloadComponent[]) => ContainerPlatformComponent;
|
|
3662
|
+
withApiGateway: (apiGateway: CaaSApiGatewayComponent) => ContainerPlatformComponent;
|
|
3663
|
+
withBrokers: (brokers: CaaSBrokerComponent[]) => ContainerPlatformComponent;
|
|
3664
|
+
withSearches: (searches: SearchComponent[]) => ContainerPlatformComponent;
|
|
3665
|
+
withMonitoring: (monitoring: MonitoringComponent) => ContainerPlatformComponent;
|
|
3666
|
+
withTracing: (tracing: TracingComponent) => ContainerPlatformComponent;
|
|
3667
|
+
withLogging: (logging: LoggingComponent) => ContainerPlatformComponent;
|
|
3668
|
+
withServiceMesh: (serviceMesh: ServiceMeshComponent) => ContainerPlatformComponent;
|
|
3381
3669
|
};
|
|
3382
3670
|
type ContainerPlatformBuilder = {
|
|
3383
3671
|
withId: (id: string) => ContainerPlatformBuilder;
|
|
@@ -4919,33 +5207,6 @@ declare namespace GraphDatabase {
|
|
|
4919
5207
|
const create: (config: GraphDatabaseConfig) => GraphDatabaseComponent;
|
|
4920
5208
|
}
|
|
4921
5209
|
//#endregion
|
|
4922
|
-
//#region src/fractal/component/storage/caas/search_entity.d.ts
|
|
4923
|
-
type SearchEntityComponent = {
|
|
4924
|
-
readonly component: BlueprintComponent;
|
|
4925
|
-
readonly components: ReadonlyArray<BlueprintComponent>;
|
|
4926
|
-
};
|
|
4927
|
-
type SearchEntityBuilder = {
|
|
4928
|
-
withId: (id: string) => SearchEntityBuilder;
|
|
4929
|
-
withVersion: (major: number, minor: number, patch: number) => SearchEntityBuilder;
|
|
4930
|
-
withDisplayName: (displayName: string) => SearchEntityBuilder;
|
|
4931
|
-
withDescription: (description: string) => SearchEntityBuilder;
|
|
4932
|
-
build: () => BlueprintComponent;
|
|
4933
|
-
};
|
|
4934
|
-
type SearchEntityConfig = {
|
|
4935
|
-
id: string;
|
|
4936
|
-
version: {
|
|
4937
|
-
major: number;
|
|
4938
|
-
minor: number;
|
|
4939
|
-
patch: number;
|
|
4940
|
-
};
|
|
4941
|
-
displayName: string;
|
|
4942
|
-
description?: string;
|
|
4943
|
-
};
|
|
4944
|
-
declare namespace SearchEntity {
|
|
4945
|
-
const getBuilder: () => SearchEntityBuilder;
|
|
4946
|
-
const create: (config: SearchEntityConfig) => SearchEntityComponent;
|
|
4947
|
-
}
|
|
4948
|
-
//#endregion
|
|
4949
5210
|
//#region src/fractal/component/storage/saas/unmanaged.d.ts
|
|
4950
5211
|
type UnmanagedComponent = {
|
|
4951
5212
|
readonly component: BlueprintComponent;
|
|
@@ -5115,34 +5376,6 @@ declare namespace GraphDbms {
|
|
|
5115
5376
|
const create: (config: GraphDbmsConfig) => GraphDbmsComponent;
|
|
5116
5377
|
}
|
|
5117
5378
|
//#endregion
|
|
5118
|
-
//#region src/fractal/component/storage/caas/search.d.ts
|
|
5119
|
-
type SearchComponent = {
|
|
5120
|
-
readonly search: BlueprintComponent;
|
|
5121
|
-
readonly entities: ReadonlyArray<SearchEntityComponent>;
|
|
5122
|
-
withEntities: (entities: SearchEntityComponent[]) => SearchComponent;
|
|
5123
|
-
};
|
|
5124
|
-
type SearchBuilder = {
|
|
5125
|
-
withId: (id: string) => SearchBuilder;
|
|
5126
|
-
withVersion: (major: number, minor: number, patch: number) => SearchBuilder;
|
|
5127
|
-
withDisplayName: (displayName: string) => SearchBuilder;
|
|
5128
|
-
withDescription: (description: string) => SearchBuilder;
|
|
5129
|
-
build: () => BlueprintComponent;
|
|
5130
|
-
};
|
|
5131
|
-
type SearchConfig = {
|
|
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 Search {
|
|
5142
|
-
const getBuilder: () => SearchBuilder;
|
|
5143
|
-
const create: (config: SearchConfig) => SearchComponent;
|
|
5144
|
-
}
|
|
5145
|
-
//#endregion
|
|
5146
5379
|
//#region src/live_system/component/storage/paas/aws_s3.d.ts
|
|
5147
5380
|
/**
|
|
5148
5381
|
* Returned by satisfy() — only exposes vendor-specific parameters.
|
|
@@ -6017,35 +6250,6 @@ declare namespace SaaSUnmanaged {
|
|
|
6017
6250
|
const create: (config: SaaSUnmanagedConfig) => LiveSystemComponent;
|
|
6018
6251
|
}
|
|
6019
6252
|
//#endregion
|
|
6020
|
-
//#region src/fractal/component/messaging/paas/entity.d.ts
|
|
6021
|
-
type MessagingEntityComponent = {
|
|
6022
|
-
readonly component: BlueprintComponent;
|
|
6023
|
-
readonly components: ReadonlyArray<BlueprintComponent>;
|
|
6024
|
-
};
|
|
6025
|
-
type MessagingEntityBuilder = {
|
|
6026
|
-
withId: (id: string) => MessagingEntityBuilder;
|
|
6027
|
-
withVersion: (major: number, minor: number, patch: number) => MessagingEntityBuilder;
|
|
6028
|
-
withDisplayName: (displayName: string) => MessagingEntityBuilder;
|
|
6029
|
-
withDescription: (description: string) => MessagingEntityBuilder;
|
|
6030
|
-
withMessageRetentionHours: (hours: number) => MessagingEntityBuilder;
|
|
6031
|
-
build: () => BlueprintComponent;
|
|
6032
|
-
};
|
|
6033
|
-
type MessagingEntityConfig = {
|
|
6034
|
-
id: string;
|
|
6035
|
-
version: {
|
|
6036
|
-
major: number;
|
|
6037
|
-
minor: number;
|
|
6038
|
-
patch: number;
|
|
6039
|
-
};
|
|
6040
|
-
displayName: string;
|
|
6041
|
-
description?: string;
|
|
6042
|
-
messageRetentionHours?: number;
|
|
6043
|
-
};
|
|
6044
|
-
declare namespace MessagingEntity {
|
|
6045
|
-
const getBuilder: () => MessagingEntityBuilder;
|
|
6046
|
-
const create: (config: MessagingEntityConfig) => MessagingEntityComponent;
|
|
6047
|
-
}
|
|
6048
|
-
//#endregion
|
|
6049
6253
|
//#region src/fractal/component/messaging/paas/broker.d.ts
|
|
6050
6254
|
type BrokerComponent = {
|
|
6051
6255
|
readonly broker: BlueprintComponent;
|
|
@@ -6074,61 +6278,6 @@ declare namespace Broker {
|
|
|
6074
6278
|
const create: (config: BrokerConfig) => BrokerComponent;
|
|
6075
6279
|
}
|
|
6076
6280
|
//#endregion
|
|
6077
|
-
//#region src/fractal/component/messaging/caas/entity.d.ts
|
|
6078
|
-
type CaaSMessagingEntityComponent = {
|
|
6079
|
-
readonly component: BlueprintComponent;
|
|
6080
|
-
readonly components: ReadonlyArray<BlueprintComponent>;
|
|
6081
|
-
};
|
|
6082
|
-
type CaaSMessagingEntityBuilder = {
|
|
6083
|
-
withId: (id: string) => CaaSMessagingEntityBuilder;
|
|
6084
|
-
withVersion: (major: number, minor: number, patch: number) => CaaSMessagingEntityBuilder;
|
|
6085
|
-
withDisplayName: (displayName: string) => CaaSMessagingEntityBuilder;
|
|
6086
|
-
withDescription: (description: string) => CaaSMessagingEntityBuilder;
|
|
6087
|
-
build: () => BlueprintComponent;
|
|
6088
|
-
};
|
|
6089
|
-
type CaaSMessagingEntityConfig = {
|
|
6090
|
-
id: string;
|
|
6091
|
-
version: {
|
|
6092
|
-
major: number;
|
|
6093
|
-
minor: number;
|
|
6094
|
-
patch: number;
|
|
6095
|
-
};
|
|
6096
|
-
displayName: string;
|
|
6097
|
-
description?: string;
|
|
6098
|
-
};
|
|
6099
|
-
declare namespace CaaSMessagingEntity {
|
|
6100
|
-
const getBuilder: () => CaaSMessagingEntityBuilder;
|
|
6101
|
-
const create: (config: CaaSMessagingEntityConfig) => CaaSMessagingEntityComponent;
|
|
6102
|
-
}
|
|
6103
|
-
//#endregion
|
|
6104
|
-
//#region src/fractal/component/messaging/caas/broker.d.ts
|
|
6105
|
-
type CaaSBrokerComponent = {
|
|
6106
|
-
readonly broker: BlueprintComponent;
|
|
6107
|
-
readonly entities: ReadonlyArray<CaaSMessagingEntityComponent>;
|
|
6108
|
-
withEntities: (entities: CaaSMessagingEntityComponent[]) => CaaSBrokerComponent;
|
|
6109
|
-
};
|
|
6110
|
-
type CaaSBrokerBuilder = {
|
|
6111
|
-
withId: (id: string) => CaaSBrokerBuilder;
|
|
6112
|
-
withVersion: (major: number, minor: number, patch: number) => CaaSBrokerBuilder;
|
|
6113
|
-
withDisplayName: (displayName: string) => CaaSBrokerBuilder;
|
|
6114
|
-
withDescription: (description: string) => CaaSBrokerBuilder;
|
|
6115
|
-
build: () => BlueprintComponent;
|
|
6116
|
-
};
|
|
6117
|
-
type CaaSBrokerConfig = {
|
|
6118
|
-
id: string;
|
|
6119
|
-
version: {
|
|
6120
|
-
major: number;
|
|
6121
|
-
minor: number;
|
|
6122
|
-
patch: number;
|
|
6123
|
-
};
|
|
6124
|
-
displayName: string;
|
|
6125
|
-
description?: string;
|
|
6126
|
-
};
|
|
6127
|
-
declare namespace CaaSBroker {
|
|
6128
|
-
const getBuilder: () => CaaSBrokerBuilder;
|
|
6129
|
-
const create: (config: CaaSBrokerConfig) => CaaSBrokerComponent;
|
|
6130
|
-
}
|
|
6131
|
-
//#endregion
|
|
6132
6281
|
//#region src/fractal/component/messaging/saas/unmanaged.d.ts
|
|
6133
6282
|
type MessagingUnmanagedComponent = {
|
|
6134
6283
|
readonly component: BlueprintComponent;
|
|
@@ -6639,10 +6788,90 @@ declare namespace ComputeCluster {
|
|
|
6639
6788
|
const create: (config: ComputeClusterConfig) => ComputeClusterComponent;
|
|
6640
6789
|
}
|
|
6641
6790
|
//#endregion
|
|
6791
|
+
//#region src/fractal/component/big_data/paas/datalake.d.ts
|
|
6792
|
+
type DatalakeComponent = {
|
|
6793
|
+
readonly component: BlueprintComponent;
|
|
6794
|
+
readonly components: ReadonlyArray<BlueprintComponent>;
|
|
6795
|
+
};
|
|
6796
|
+
type DatalakeBuilder = {
|
|
6797
|
+
withId: (id: string) => DatalakeBuilder;
|
|
6798
|
+
withVersion: (major: number, minor: number, patch: number) => DatalakeBuilder;
|
|
6799
|
+
withDisplayName: (displayName: string) => DatalakeBuilder;
|
|
6800
|
+
withDescription: (description: string) => DatalakeBuilder;
|
|
6801
|
+
build: () => BlueprintComponent;
|
|
6802
|
+
};
|
|
6803
|
+
type DatalakeConfig = {
|
|
6804
|
+
id: string;
|
|
6805
|
+
version: {
|
|
6806
|
+
major: number;
|
|
6807
|
+
minor: number;
|
|
6808
|
+
patch: number;
|
|
6809
|
+
};
|
|
6810
|
+
displayName: string;
|
|
6811
|
+
description?: string;
|
|
6812
|
+
};
|
|
6813
|
+
declare namespace Datalake {
|
|
6814
|
+
const getBuilder: () => DatalakeBuilder;
|
|
6815
|
+
const create: (config: DatalakeConfig) => DatalakeComponent;
|
|
6816
|
+
}
|
|
6817
|
+
//#endregion
|
|
6642
6818
|
//#region src/fractal/component/big_data/paas/data_processing_job.d.ts
|
|
6819
|
+
/**
|
|
6820
|
+
* Purpose of a DataProcessingJob → Datalake link.
|
|
6821
|
+
* - `raw`: ingestion zone for unprocessed inputs
|
|
6822
|
+
* - `curated`: processed / cleaned outputs
|
|
6823
|
+
* - `checkpoint`: streaming checkpoint location (Spark Structured Streaming, etc.)
|
|
6824
|
+
*/
|
|
6825
|
+
type DatalakePurpose = 'raw' | 'curated' | 'checkpoint';
|
|
6826
|
+
/**
|
|
6827
|
+
* Settings for a DataProcessingJob → Datalake link. The agent uses these to
|
|
6828
|
+
* inject the right URI into the job runtime (e.g. LAKE_RAW_URI, LAKE_CURATED_URI,
|
|
6829
|
+
* LAKE_CHECKPOINT_URI as env vars / Spark conf), composed as `<lake-uri>/<path>`
|
|
6830
|
+
* when `path` is set.
|
|
6831
|
+
*/
|
|
6832
|
+
type DatalakeLinkSettings = {
|
|
6833
|
+
purpose: DatalakePurpose; /** Optional subpath within the lake. Agent composes `<lake-uri>/<path>`. */
|
|
6834
|
+
path?: string;
|
|
6835
|
+
};
|
|
6836
|
+
type DataProcessingJobDatalakeLink = {
|
|
6837
|
+
target: DatalakeComponent;
|
|
6838
|
+
} & DatalakeLinkSettings;
|
|
6839
|
+
/**
|
|
6840
|
+
* Access mode for a DataProcessingJob → MessagingEntity link.
|
|
6841
|
+
* - `publish`: job only writes messages.
|
|
6842
|
+
* - `subscribe`: job only consumes messages.
|
|
6843
|
+
* - `publish-subscribe`: job both writes and consumes.
|
|
6844
|
+
*/
|
|
6845
|
+
type DataProcessingJobMessagingAccessType = 'publish' | 'subscribe' | 'publish-subscribe';
|
|
6846
|
+
/**
|
|
6847
|
+
* Settings for a DataProcessingJob → MessagingEntity link. The messaging
|
|
6848
|
+
* agent uses these to grant the job the right IAM/ACL on the topic and to
|
|
6849
|
+
* wire any consumer-side parameters (consumer group / starting position).
|
|
6850
|
+
*/
|
|
6851
|
+
type DataProcessingJobMessagingLinkSettings = {
|
|
6852
|
+
access: DataProcessingJobMessagingAccessType; /** Consumer group; only meaningful when `access` includes `subscribe`. */
|
|
6853
|
+
consumerGroup?: string; /** Subscriber starting position: `"start"`, `"end"`, or an ISO timestamp. */
|
|
6854
|
+
startingPosition?: string;
|
|
6855
|
+
};
|
|
6856
|
+
type DataProcessingJobMessagingLink = {
|
|
6857
|
+
target: MessagingEntityComponent | CaaSMessagingEntityComponent;
|
|
6858
|
+
} & DataProcessingJobMessagingLinkSettings;
|
|
6643
6859
|
type DataProcessingJobComponent = {
|
|
6644
6860
|
readonly component: BlueprintComponent;
|
|
6645
6861
|
readonly components: ReadonlyArray<BlueprintComponent>;
|
|
6862
|
+
/**
|
|
6863
|
+
* Declares "this job reads from / writes to this Datalake for the given purpose".
|
|
6864
|
+
* The agent injects the corresponding URI into the job runtime. Multiple links
|
|
6865
|
+
* are allowed and may target different Datalakes.
|
|
6866
|
+
*/
|
|
6867
|
+
linkToDatalake: (links: DataProcessingJobDatalakeLink[]) => DataProcessingJobComponent;
|
|
6868
|
+
/**
|
|
6869
|
+
* Declares "this job publishes to / subscribes from this messaging topic/queue".
|
|
6870
|
+
* Settings carry the access mode and optional consumer-side parameters
|
|
6871
|
+
* (consumer group, starting position). The messaging agent uses these to
|
|
6872
|
+
* provision IAM/ACLs and wire consumer config.
|
|
6873
|
+
*/
|
|
6874
|
+
linkToMessagingEntity: (links: DataProcessingJobMessagingLink[]) => DataProcessingJobComponent;
|
|
6646
6875
|
};
|
|
6647
6876
|
type DataProcessingJobBuilder = {
|
|
6648
6877
|
withId: (id: string) => DataProcessingJobBuilder;
|
|
@@ -6757,33 +6986,6 @@ declare namespace DistributedDataProcessing {
|
|
|
6757
6986
|
const create: (config: DistributedDataProcessingConfig) => DistributedDataProcessingComponent;
|
|
6758
6987
|
}
|
|
6759
6988
|
//#endregion
|
|
6760
|
-
//#region src/fractal/component/big_data/paas/datalake.d.ts
|
|
6761
|
-
type DatalakeComponent = {
|
|
6762
|
-
readonly component: BlueprintComponent;
|
|
6763
|
-
readonly components: ReadonlyArray<BlueprintComponent>;
|
|
6764
|
-
};
|
|
6765
|
-
type DatalakeBuilder = {
|
|
6766
|
-
withId: (id: string) => DatalakeBuilder;
|
|
6767
|
-
withVersion: (major: number, minor: number, patch: number) => DatalakeBuilder;
|
|
6768
|
-
withDisplayName: (displayName: string) => DatalakeBuilder;
|
|
6769
|
-
withDescription: (description: string) => DatalakeBuilder;
|
|
6770
|
-
build: () => BlueprintComponent;
|
|
6771
|
-
};
|
|
6772
|
-
type DatalakeConfig = {
|
|
6773
|
-
id: string;
|
|
6774
|
-
version: {
|
|
6775
|
-
major: number;
|
|
6776
|
-
minor: number;
|
|
6777
|
-
patch: number;
|
|
6778
|
-
};
|
|
6779
|
-
displayName: string;
|
|
6780
|
-
description?: string;
|
|
6781
|
-
};
|
|
6782
|
-
declare namespace Datalake {
|
|
6783
|
-
const getBuilder: () => DatalakeBuilder;
|
|
6784
|
-
const create: (config: DatalakeConfig) => DatalakeComponent;
|
|
6785
|
-
}
|
|
6786
|
-
//#endregion
|
|
6787
6989
|
//#region src/fractal/component/big_data/saas/unmanaged.d.ts
|
|
6788
6990
|
type BigDataUnmanagedComponent = {
|
|
6789
6991
|
readonly component: BlueprintComponent;
|
|
@@ -7967,87 +8169,6 @@ declare namespace ApiManagementSaaSUnmanaged {
|
|
|
7967
8169
|
const create: (config: ApiManagementSaaSUnmanagedConfig) => LiveSystemComponent;
|
|
7968
8170
|
}
|
|
7969
8171
|
//#endregion
|
|
7970
|
-
//#region src/fractal/component/observability/caas/monitoring.d.ts
|
|
7971
|
-
type MonitoringComponent = {
|
|
7972
|
-
readonly component: BlueprintComponent;
|
|
7973
|
-
readonly components: ReadonlyArray<BlueprintComponent>;
|
|
7974
|
-
};
|
|
7975
|
-
type MonitoringBuilder = {
|
|
7976
|
-
withId: (id: string) => MonitoringBuilder;
|
|
7977
|
-
withVersion: (major: number, minor: number, patch: number) => MonitoringBuilder;
|
|
7978
|
-
withDisplayName: (displayName: string) => MonitoringBuilder;
|
|
7979
|
-
withDescription: (description: string) => MonitoringBuilder;
|
|
7980
|
-
build: () => BlueprintComponent;
|
|
7981
|
-
};
|
|
7982
|
-
type MonitoringConfig = {
|
|
7983
|
-
id: string;
|
|
7984
|
-
version: {
|
|
7985
|
-
major: number;
|
|
7986
|
-
minor: number;
|
|
7987
|
-
patch: number;
|
|
7988
|
-
};
|
|
7989
|
-
displayName: string;
|
|
7990
|
-
description?: string;
|
|
7991
|
-
};
|
|
7992
|
-
declare namespace Monitoring {
|
|
7993
|
-
const getBuilder: () => MonitoringBuilder;
|
|
7994
|
-
const create: (config: MonitoringConfig) => MonitoringComponent;
|
|
7995
|
-
}
|
|
7996
|
-
//#endregion
|
|
7997
|
-
//#region src/fractal/component/observability/caas/tracing.d.ts
|
|
7998
|
-
type TracingComponent = {
|
|
7999
|
-
readonly component: BlueprintComponent;
|
|
8000
|
-
readonly components: ReadonlyArray<BlueprintComponent>;
|
|
8001
|
-
};
|
|
8002
|
-
type TracingBuilder = {
|
|
8003
|
-
withId: (id: string) => TracingBuilder;
|
|
8004
|
-
withVersion: (major: number, minor: number, patch: number) => TracingBuilder;
|
|
8005
|
-
withDisplayName: (displayName: string) => TracingBuilder;
|
|
8006
|
-
withDescription: (description: string) => TracingBuilder;
|
|
8007
|
-
build: () => BlueprintComponent;
|
|
8008
|
-
};
|
|
8009
|
-
type TracingConfig = {
|
|
8010
|
-
id: string;
|
|
8011
|
-
version: {
|
|
8012
|
-
major: number;
|
|
8013
|
-
minor: number;
|
|
8014
|
-
patch: number;
|
|
8015
|
-
};
|
|
8016
|
-
displayName: string;
|
|
8017
|
-
description?: string;
|
|
8018
|
-
};
|
|
8019
|
-
declare namespace Tracing {
|
|
8020
|
-
const getBuilder: () => TracingBuilder;
|
|
8021
|
-
const create: (config: TracingConfig) => TracingComponent;
|
|
8022
|
-
}
|
|
8023
|
-
//#endregion
|
|
8024
|
-
//#region src/fractal/component/observability/caas/logging.d.ts
|
|
8025
|
-
type LoggingComponent = {
|
|
8026
|
-
readonly component: BlueprintComponent;
|
|
8027
|
-
readonly components: ReadonlyArray<BlueprintComponent>;
|
|
8028
|
-
};
|
|
8029
|
-
type LoggingBuilder = {
|
|
8030
|
-
withId: (id: string) => LoggingBuilder;
|
|
8031
|
-
withVersion: (major: number, minor: number, patch: number) => LoggingBuilder;
|
|
8032
|
-
withDisplayName: (displayName: string) => LoggingBuilder;
|
|
8033
|
-
withDescription: (description: string) => LoggingBuilder;
|
|
8034
|
-
build: () => BlueprintComponent;
|
|
8035
|
-
};
|
|
8036
|
-
type LoggingConfig = {
|
|
8037
|
-
id: string;
|
|
8038
|
-
version: {
|
|
8039
|
-
major: number;
|
|
8040
|
-
minor: number;
|
|
8041
|
-
patch: number;
|
|
8042
|
-
};
|
|
8043
|
-
displayName: string;
|
|
8044
|
-
description?: string;
|
|
8045
|
-
};
|
|
8046
|
-
declare namespace Logging {
|
|
8047
|
-
const getBuilder: () => LoggingBuilder;
|
|
8048
|
-
const create: (config: LoggingConfig) => LoggingComponent;
|
|
8049
|
-
}
|
|
8050
|
-
//#endregion
|
|
8051
8172
|
//#region src/fractal/component/observability/saas/unmanaged.d.ts
|
|
8052
8173
|
type ObservabilityUnmanagedComponent = {
|
|
8053
8174
|
readonly component: BlueprintComponent;
|
|
@@ -8239,33 +8360,6 @@ declare namespace ObservabilitySaaSUnmanaged {
|
|
|
8239
8360
|
const create: (config: ObservabilitySaaSUnmanagedConfig) => LiveSystemComponent;
|
|
8240
8361
|
}
|
|
8241
8362
|
//#endregion
|
|
8242
|
-
//#region src/fractal/component/security/caas/service_mesh.d.ts
|
|
8243
|
-
type ServiceMeshComponent = {
|
|
8244
|
-
readonly component: BlueprintComponent;
|
|
8245
|
-
readonly components: ReadonlyArray<BlueprintComponent>;
|
|
8246
|
-
};
|
|
8247
|
-
type ServiceMeshBuilder = {
|
|
8248
|
-
withId: (id: string) => ServiceMeshBuilder;
|
|
8249
|
-
withVersion: (major: number, minor: number, patch: number) => ServiceMeshBuilder;
|
|
8250
|
-
withDisplayName: (displayName: string) => ServiceMeshBuilder;
|
|
8251
|
-
withDescription: (description: string) => ServiceMeshBuilder;
|
|
8252
|
-
build: () => BlueprintComponent;
|
|
8253
|
-
};
|
|
8254
|
-
type ServiceMeshConfig = {
|
|
8255
|
-
id: string;
|
|
8256
|
-
version: {
|
|
8257
|
-
major: number;
|
|
8258
|
-
minor: number;
|
|
8259
|
-
patch: number;
|
|
8260
|
-
};
|
|
8261
|
-
displayName: string;
|
|
8262
|
-
description?: string;
|
|
8263
|
-
};
|
|
8264
|
-
declare namespace ServiceMesh {
|
|
8265
|
-
const getBuilder: () => ServiceMeshBuilder;
|
|
8266
|
-
const create: (config: ServiceMeshConfig) => ServiceMeshComponent;
|
|
8267
|
-
}
|
|
8268
|
-
//#endregion
|
|
8269
8363
|
//#region src/fractal/component/security/saas/unmanaged.d.ts
|
|
8270
8364
|
type SecurityUnmanagedComponent = {
|
|
8271
8365
|
readonly component: BlueprintComponent;
|
|
@@ -8416,4 +8510,4 @@ declare const LiveSystem: typeof LiveSystem$1;
|
|
|
8416
8510
|
type LiveSystem = LiveSystem$1;
|
|
8417
8511
|
declare const Custom: typeof Custom$1;
|
|
8418
8512
|
//#endregion
|
|
8419
|
-
export { Ambassador, type AmbassadorBuilder, type AmbassadorConfig, ApiManagementSaaSUnmanaged, type ApiManagementSaaSUnmanagedBuilder, type ApiManagementSaaSUnmanagedConfig, ApiManagementUnmanaged, type ApiManagementUnmanagedBuilder, type ApiManagementUnmanagedComponent, type ApiManagementUnmanagedConfig, ArubaBlockStorage, type ArubaBlockStorageBuilder, type ArubaBlockStorageConfig, ArubaCloudServer, type ArubaCloudServerBuilder, type ArubaCloudServerConfig, ArubaContainerRegistry, type ArubaContainerRegistryBuilder, type ArubaContainerRegistryConfig, ArubaElasticIp, type ArubaElasticIpBuilder, type ArubaElasticIpConfig, ArubaKaaS, type ArubaKaaSBuilder, type ArubaKaaSConfig, ArubaMsSqlDbms, type ArubaMsSqlDbmsBuilder, type ArubaMsSqlDbmsConfig, ArubaMySqlDbms, type ArubaMySqlDbmsBuilder, type ArubaMySqlDbmsConfig, ArubaObjectStorageAccount, type ArubaObjectStorageAccountBuilder, type ArubaObjectStorageAccountConfig, ArubaSecurityGroup, type ArubaSecurityGroupBuilder, type ArubaSecurityGroupConfig, ArubaSshKeyPair, type ArubaSshKeyPairBuilder, type ArubaSshKeyPairConfig, ArubaSubnet, type ArubaSubnetBuilder, type ArubaSubnetConfig, ArubaVpc, type ArubaVpcBuilder, type ArubaVpcConfig, ArubaVpcPeering, type ArubaVpcPeeringBuilder, type ArubaVpcPeeringConfig, ArubaVpnTunnel, type ArubaVpnTunnelBuilder, type ArubaVpnTunnelConfig, AwsCloudFront, type AwsCloudFrontBuilder, type AwsCloudFrontConfig, AwsDatabricks, type AwsDatabricksBuilder, AwsDatabricksCluster, type AwsDatabricksClusterBuilder, type AwsDatabricksClusterConfig, type AwsDatabricksConfig, AwsDatabricksJob, type AwsDatabricksJobBuilder, type AwsDatabricksJobConfig, AwsDatabricksMlflow, type AwsDatabricksMlflowBuilder, type AwsDatabricksMlflowConfig, AwsEcsCluster, type AwsEcsClusterBuilder, type AwsEcsClusterConfig, AwsEcsService, type AwsEcsServiceBuilder, type AwsEcsServiceConfig, AwsEcsTaskDefinition, type AwsEcsTaskDefinitionBuilder, type AwsEcsTaskDefinitionComponent, type AwsEcsTaskDefinitionConfig, AwsEksCluster, type AwsEksClusterBuilder, type AwsEksClusterConfig, AwsLb, type AwsLbBuilder, type AwsLbConfig, AwsS3, type AwsS3Builder, type AwsS3Config, AwsS3Datalake, type AwsS3DatalakeBuilder, type AwsS3DatalakeConfig, AwsSecurityGroup, type AwsSecurityGroupBuilder, type AwsSecurityGroupConfig, AwsSubnet, type AwsSubnetBuilder, type AwsSubnetConfig, AwsVpc, type AwsVpcBuilder, type AwsVpcConfig, AzureAksCluster, type AzureAksClusterBuilder, type AzureAksClusterConfig, AzureApiManagement, type AzureApiManagementBuilder, type AzureApiManagementConfig, AzureBlobContainer, type AzureBlobContainerBuilder, type AzureBlobContainerConfig, AzureContainerApp, type AzureContainerAppBuilder, type AzureContainerAppConfig, AzureContainerAppsEnvironment, type AzureContainerAppsEnvironmentBuilder, type AzureContainerAppsEnvironmentConfig, AzureContainerInstance, type AzureContainerInstanceBuilder, type AzureContainerInstanceConfig, AzureCosmosDbAccount, type AzureCosmosDbAccountBuilder, type AzureCosmosDbAccountConfig, AzureCosmosDbCassandra, type AzureCosmosDbCassandraBuilder, type AzureCosmosDbCassandraConfig, AzureCosmosDbGremlinDatabase, type AzureCosmosDbGremlinDatabaseBuilder, type AzureCosmosDbGremlinDatabaseConfig, AzureCosmosDbMongoDatabase, type AzureCosmosDbMongoDatabaseBuilder, type AzureCosmosDbMongoDatabaseConfig, AzureCosmosDbPostgreSqlDatabase, type AzureCosmosDbPostgreSqlDatabaseBuilder, type AzureCosmosDbPostgreSqlDatabaseConfig, AzureCosmosDbTable, type AzureCosmosDbTableBuilder, type AzureCosmosDbTableConfig, AzureDatabricks, type AzureDatabricksBuilder, AzureDatabricksCluster, type AzureDatabricksClusterBuilder, type AzureDatabricksClusterConfig, type AzureDatabricksConfig, AzureDatabricksJob, type AzureDatabricksJobBuilder, type AzureDatabricksJobConfig, AzureDatabricksMlflow, type AzureDatabricksMlflowBuilder, type AzureDatabricksMlflowConfig, AzureDatalake, type AzureDatalakeBuilder, type AzureDatalakeConfig, AzureEventHub, type AzureEventHubBuilder, type AzureEventHubConfig, AzureEventHubNamespace, type AzureEventHubNamespaceBuilder, type AzureEventHubNamespaceConfig, AzureFileStorage, type AzureFileStorageBuilder, type AzureFileStorageConfig, AzureLb, type AzureLbBuilder, type AzureLbConfig, AzureNsg, type AzureNsgBuilder, type AzureNsgConfig, AzurePostgreSqlDatabase, type AzurePostgreSqlDatabaseBuilder, type AzurePostgreSqlDatabaseConfig, AzurePostgreSqlDbms, type AzurePostgreSqlDbmsBuilder, type AzurePostgreSqlDbmsConfig, AzureRelay, type AzureRelayBuilder, type AzureRelayConfig, AzureServiceBus, type AzureServiceBusBuilder, type AzureServiceBusConfig, AzureServiceBusQueue, type AzureServiceBusQueueBuilder, type AzureServiceBusQueueConfig, AzureServiceBusTopic, type AzureServiceBusTopicBuilder, type AzureServiceBusTopicConfig, AzureStorageAccount, type AzureStorageAccountBuilder, type AzureStorageAccountConfig, AzureSubnet, type AzureSubnetBuilder, type AzureSubnetConfig, AzureVm, type AzureVmBuilder, type AzureVmConfig, AzureVnet, type AzureVnetBuilder, type AzureVnetConfig, BigDataSaaSUnmanaged, type BigDataSaaSUnmanagedBuilder, type BigDataSaaSUnmanagedConfig, BigDataUnmanaged, type BigDataUnmanagedBuilder, type BigDataUnmanagedComponent, type BigDataUnmanagedConfig, BoundedContext, Broker, type BrokerBuilder, type BrokerComponent, type BrokerConfig, CaaSApiGateway, type CaaSApiGatewayBuilder, type CaaSApiGatewayComponent, type CaaSApiGatewayConfig, CaaSBroker, type CaaSBrokerBuilder, type CaaSBrokerComponent, type CaaSBrokerConfig, CaaSK8sWorkload, type CaaSK8sWorkloadBuilder, type CaaSK8sWorkloadConfig, CaaSMessagingEntity, type CaaSMessagingEntityBuilder, type CaaSMessagingEntityComponent, type CaaSMessagingEntityConfig, CaaSMinioTenant, type CaaSMinioTenantBuilder, type CaaSMinioTenantConfig, CaaSMlflow, type CaaSMlflowBuilder, type CaaSMlflowConfig, CaaSSparkCluster, type CaaSSparkClusterBuilder, type CaaSSparkClusterConfig, CaaSSparkJob, type CaaSSparkJobBuilder, type CaaSSparkJobConfig, CaaSSparkOperator, type CaaSSparkOperatorBuilder, type CaaSSparkOperatorConfig, ColumnOrientedDbms, type ColumnOrientedDbmsBuilder, type ColumnOrientedDbmsComponent, type ColumnOrientedDbmsConfig, ColumnOrientedEntity, type ColumnOrientedEntityBuilder, type ColumnOrientedEntityComponent, type ColumnOrientedEntityConfig, ComputeCluster, type ComputeClusterBuilder, type ComputeClusterComponent, type ComputeClusterConfig, ContainerPlatform, type ContainerPlatformBuilder, type ContainerPlatformComponent, type ContainerPlatformConfig, Custom, type CustomBlueprintBuilder, type CustomBlueprintConfig, type CustomBlueprintFactory, type CustomComponentConfig, type CustomOfferBuilder, type CustomOfferConfig, type CustomOfferFactory, type CustomSatisfiedBuilder, DataProcessingJob, type DataProcessingJobBuilder, type DataProcessingJobComponent, type DataProcessingJobConfig, Datalake, type DatalakeBuilder, type DatalakeComponent, type DatalakeConfig, DistributedDataProcessing, type DistributedDataProcessingBuilder, type DistributedDataProcessingComponent, type DistributedDataProcessingConfig, DocumentDatabase, type DocumentDatabaseBuilder, type DocumentDatabaseComponent, type DocumentDatabaseConfig, DocumentDbms, type DocumentDbmsBuilder, type DocumentDbmsComponent, type DocumentDbmsConfig, Ec2Instance, type Ec2InstanceBuilder, type Ec2InstanceConfig, Elastic, type ElasticBuilder, type ElasticConfig, Environment, FilesAndBlobs, type FilesAndBlobsBuilder, type FilesAndBlobsComponent, type FilesAndBlobsConfig, Fractal, type FrontendIpConfiguration, GcpApiGateway, type GcpApiGatewayBuilder, type GcpApiGatewayConfig, GcpBigTable, type GcpBigTableBuilder, type GcpBigTableConfig, GcpBigTableTable, type GcpBigTableTableBuilder, type GcpBigTableTableConfig, GcpCloudRunService, type GcpCloudRunServiceBuilder, type GcpCloudRunServiceConfig, GcpCloudStorage, type GcpCloudStorageBuilder, type GcpCloudStorageConfig, GcpDatabricks, type GcpDatabricksBuilder, GcpDatabricksCluster, type GcpDatabricksClusterBuilder, type GcpDatabricksClusterConfig, type GcpDatabricksConfig, GcpDatabricksJob, type GcpDatabricksJobBuilder, type GcpDatabricksJobConfig, GcpDatabricksMlflow, type GcpDatabricksMlflowBuilder, type GcpDatabricksMlflowConfig, GcpDatalake, type GcpDatalakeBuilder, type GcpDatalakeConfig, GcpFirestore, type GcpFirestoreBuilder, GcpFirestoreCollection, type GcpFirestoreCollectionBuilder, type GcpFirestoreCollectionConfig, type GcpFirestoreConfig, GcpFirewall, type GcpFirewallBuilder, type GcpFirewallConfig, GcpGkeCluster, type GcpGkeClusterBuilder, type GcpGkeClusterConfig, GcpGlb, type GcpGlbBuilder, type GcpGlbConfig, GcpPostgreSqlDatabase, type GcpPostgreSqlDatabaseBuilder, type GcpPostgreSqlDatabaseConfig, GcpPostgreSqlDbms, type GcpPostgreSqlDbmsBuilder, type GcpPostgreSqlDbmsConfig, GcpPubSub, type GcpPubSubBuilder, type GcpPubSubConfig, GcpPubSubSubscription, type GcpPubSubSubscriptionBuilder, type GcpPubSubSubscriptionConfig, GcpPubSubTopic, type GcpPubSubTopicBuilder, type GcpPubSubTopicConfig, GcpSubnet, type GcpSubnetBuilder, type GcpSubnetConfig, GcpVm, type GcpVmBuilder, type GcpVmConfig, GcpVpc, type GcpVpcBuilder, type GcpVpcConfig, GraphDatabase, type GraphDatabaseBuilder, type GraphDatabaseComponent, type GraphDatabaseConfig, GraphDbms, type GraphDbmsBuilder, type GraphDbmsComponent, type GraphDbmsConfig, HetznerFirewall, type HetznerFirewallBuilder, type HetznerFirewallConfig, HetznerNetwork, type HetznerNetworkBuilder, type HetznerNetworkConfig, HetznerServer, type HetznerServerBuilder, type HetznerServerConfig, HetznerSubnet, type HetznerSubnetBuilder, type HetznerSubnetConfig, IndexPattern, type IndexPatternBuilder, type IndexPatternConfig, InfrastructureDomain, type IngressRule, Jaeger, type JaegerBuilder, type JaegerConfig, Kafka, type KafkaBuilder, type KafkaConfig, KafkaTopic, type KafkaTopicBuilder, type KafkaTopicConfig, KebabCaseString, KeyValueDbms, type KeyValueDbmsBuilder, type KeyValueDbmsComponent, type KeyValueDbmsConfig, KeyValueEntity, type KeyValueEntityBuilder, type KeyValueEntityComponent, type KeyValueEntityConfig, LiveSystem, LoadBalancer, type LoadBalancerBuilder, type LoadBalancerComponent, type LoadBalancerConfig, Logging, type LoggingBuilder, type LoggingComponent, type LoggingConfig, MessagingEntity, type MessagingEntityBuilder, type MessagingEntityComponent, type MessagingEntityConfig, MessagingSaaSUnmanaged, type MessagingSaaSUnmanagedBuilder, type MessagingSaaSUnmanagedConfig, MessagingUnmanaged, type MessagingUnmanagedBuilder, type MessagingUnmanagedComponent, type MessagingUnmanagedConfig, MlExperiment, type MlExperimentBuilder, type MlExperimentComponent, type MlExperimentConfig, Monitoring, type MonitoringBuilder, type MonitoringComponent, type MonitoringConfig, type NodePoolConfig, ObservabilityElastic, type ObservabilityElasticBuilder, type ObservabilityElasticConfig, ObservabilitySaaSUnmanaged, type ObservabilitySaaSUnmanagedBuilder, type ObservabilitySaaSUnmanagedConfig, ObservabilityUnmanaged, type ObservabilityUnmanagedBuilder, type ObservabilityUnmanagedComponent, type ObservabilityUnmanagedConfig, Ocelot, type OcelotBuilder, type OcelotConfig, OciContainerInstance, type OciContainerInstanceBuilder, type OciContainerInstanceConfig, OciInstance, type OciInstanceBuilder, type OciInstanceConfig, OciSecurityList, type OciSecurityListBuilder, type OciSecurityListConfig, OciSubnet, type OciSubnetBuilder, type OciSubnetConfig, OciVcn, type OciVcnBuilder, type OciVcnConfig, OpenshiftPersistentVolume, type OpenshiftPersistentVolumeBuilder, type OpenshiftPersistentVolumeConfig, OpenshiftSecurityGroup, type OpenshiftSecurityGroupBuilder, type OpenshiftSecurityGroupConfig, OpenshiftService, type OpenshiftServiceBuilder, type OpenshiftServiceConfig, OpenshiftVm, type OpenshiftVmBuilder, type OpenshiftVmConfig, OpenshiftWorkload, type OpenshiftWorkloadBuilder, type OpenshiftWorkloadConfig, OwnerId, OwnerType, PaaSApiGateway, type PaaSApiGatewayBuilder, type PaaSApiGatewayComponent, type PaaSApiGatewayConfig, PascalCaseString, Prometheus, type PrometheusBuilder, type PrometheusConfig, RelationalDatabase, type RelationalDatabaseBuilder, type RelationalDatabaseComponent, type RelationalDatabaseConfig, RelationalDbms, type RelationalDbmsBuilder, type RelationalDbmsComponent, type RelationalDbmsConfig, SaaSUnmanaged, type SaaSUnmanagedBuilder, type SaaSUnmanagedConfig, type SatisfiedAmbassadorBuilder, type SatisfiedApiManagementSaaSUnmanagedBuilder, type SatisfiedArubaCloudServerBuilder, type SatisfiedArubaKaaSBuilder, type SatisfiedArubaMsSqlDbmsBuilder, type SatisfiedArubaMySqlDbmsBuilder, type SatisfiedArubaObjectStorageAccountBuilder, type SatisfiedArubaSecurityGroupBuilder, type SatisfiedArubaSubnetBuilder, type SatisfiedArubaVpcBuilder, type SatisfiedAwsCloudFrontBuilder, type SatisfiedAwsDatabricksBuilder, type SatisfiedAwsDatabricksClusterBuilder, type SatisfiedAwsDatabricksJobBuilder, type SatisfiedAwsDatabricksMlflowBuilder, type SatisfiedAwsEcsClusterBuilder, type SatisfiedAwsEcsServiceBuilder, type SatisfiedAwsEcsTaskDefinitionBuilder, type SatisfiedAwsEksClusterBuilder, type SatisfiedAwsLbBuilder, type SatisfiedAwsS3Builder, type SatisfiedAwsS3DatalakeBuilder, type SatisfiedAwsSecurityGroupBuilder, type SatisfiedAwsSubnetBuilder, type SatisfiedAwsVpcBuilder, type SatisfiedAzureAksClusterBuilder, type SatisfiedAzureApiManagementBuilder, type SatisfiedAzureBlobContainerBuilder, type SatisfiedAzureContainerAppBuilder, type SatisfiedAzureContainerAppsEnvironmentBuilder, type SatisfiedAzureContainerInstanceBuilder, type SatisfiedAzureCosmosDbAccountBuilder, type SatisfiedAzureCosmosDbCassandraBuilder, type SatisfiedAzureCosmosDbGremlinDatabaseBuilder, type SatisfiedAzureCosmosDbMongoDatabaseBuilder, type SatisfiedAzureCosmosDbPostgreSqlDatabaseBuilder, type SatisfiedAzureCosmosDbTableBuilder, type SatisfiedAzureDatabricksBuilder, type SatisfiedAzureDatabricksClusterBuilder, type SatisfiedAzureDatabricksJobBuilder, type SatisfiedAzureDatabricksMlflowBuilder, type SatisfiedAzureDatalakeBuilder, type SatisfiedAzureEventHubBuilder, type SatisfiedAzureEventHubNamespaceBuilder, type SatisfiedAzureFileStorageBuilder, type SatisfiedAzureLbBuilder, type SatisfiedAzureNsgBuilder, type SatisfiedAzurePostgreSqlDatabaseBuilder, type SatisfiedAzurePostgreSqlDbmsBuilder, type SatisfiedAzureRelayBuilder, type SatisfiedAzureServiceBusBuilder, type SatisfiedAzureServiceBusQueueBuilder, type SatisfiedAzureServiceBusTopicBuilder, type SatisfiedAzureStorageAccountBuilder, type SatisfiedAzureSubnetBuilder, type SatisfiedAzureVmBuilder, type SatisfiedAzureVnetBuilder, type SatisfiedBigDataSaaSUnmanagedBuilder, type SatisfiedCaaSK8sWorkloadBuilder, type SatisfiedCaaSMinioTenantBuilder, type SatisfiedCaaSMlflowBuilder, type SatisfiedCaaSSparkClusterBuilder, type SatisfiedCaaSSparkJobBuilder, type SatisfiedCaaSSparkOperatorBuilder, type SatisfiedEc2Builder, type SatisfiedElasticBuilder, type SatisfiedGcpApiGatewayBuilder, type SatisfiedGcpBigTableBuilder, type SatisfiedGcpBigTableTableBuilder, type SatisfiedGcpCloudRunServiceBuilder, type SatisfiedGcpCloudStorageBuilder, type SatisfiedGcpDatabricksBuilder, type SatisfiedGcpDatabricksClusterBuilder, type SatisfiedGcpDatabricksJobBuilder, type SatisfiedGcpDatabricksMlflowBuilder, type SatisfiedGcpDatalakeBuilder, type SatisfiedGcpFirestoreBuilder, type SatisfiedGcpFirestoreCollectionBuilder, type SatisfiedGcpFirewallBuilder, type SatisfiedGcpGkeClusterBuilder, type SatisfiedGcpGlbBuilder, type SatisfiedGcpPostgreSqlDatabaseBuilder, type SatisfiedGcpPostgreSqlDbmsBuilder, type SatisfiedGcpPubSubBuilder, type SatisfiedGcpPubSubSubscriptionBuilder, type SatisfiedGcpPubSubTopicBuilder, type SatisfiedGcpSubnetBuilder, type SatisfiedGcpVmBuilder, type SatisfiedGcpVpcBuilder, type SatisfiedHetznerFirewallBuilder, type SatisfiedHetznerNetworkBuilder, type SatisfiedHetznerServerBuilder, type SatisfiedHetznerSubnetBuilder, type SatisfiedIndexPatternBuilder, type SatisfiedJaegerBuilder, type SatisfiedKafkaBuilder, type SatisfiedKafkaTopicBuilder, type SatisfiedMessagingSaaSUnmanagedBuilder, type SatisfiedObservabilityElasticBuilder, type SatisfiedObservabilitySaaSUnmanagedBuilder, type SatisfiedOcelotBuilder, type SatisfiedOciContainerInstanceBuilder, type SatisfiedOciInstanceBuilder, type SatisfiedOciSecurityListBuilder, type SatisfiedOciSubnetBuilder, type SatisfiedOciVcnBuilder, type SatisfiedOpenshiftPersistentVolumeBuilder, type SatisfiedOpenshiftSecurityGroupBuilder, type SatisfiedOpenshiftServiceBuilder, type SatisfiedOpenshiftVmBuilder, type SatisfiedOpenshiftWorkloadBuilder, type SatisfiedPrometheusBuilder, type SatisfiedSaaSUnmanagedBuilder, type SatisfiedSecuritySaaSUnmanagedBuilder, type SatisfiedTraefikBuilder, type SatisfiedVspherePortGroupBuilder, type SatisfiedVsphereVlanBuilder, type SatisfiedVsphereVmBuilder, Search, type SearchBuilder, type SearchComponent, type SearchConfig, SearchEntity, type SearchEntityBuilder, type SearchEntityComponent, type SearchEntityConfig, SecurityGroup, type SecurityGroupBuilder, type SecurityGroupComponent, type SecurityGroupConfig, SecuritySaaSUnmanaged, type SecuritySaaSUnmanagedBuilder, type SecuritySaaSUnmanagedConfig, SecurityUnmanaged, type SecurityUnmanagedBuilder, type SecurityUnmanagedComponent, type SecurityUnmanagedConfig, ServiceAccountCredentials, ServiceAccountId, ServiceDeliveryModel, ServiceMesh, type ServiceMeshBuilder, type ServiceMeshComponent, type ServiceMeshConfig, Subnet, type SubnetBuilder, type SubnetComponent, type SubnetConfig, type SubnetResult, Tracing, type TracingBuilder, type TracingComponent, type TracingConfig, Traefik, type TraefikBuilder, type TraefikConfig, Unmanaged, type UnmanagedBuilder, type UnmanagedComponent, type UnmanagedConfig, Version, VirtualMachine, type VirtualMachineBuilder, type VirtualMachineComponent, type VirtualMachineConfig, VirtualNetwork, type VirtualNetworkBuilder, type VirtualNetworkComponent, type VirtualNetworkConfig, type VirtualNetworkResult, type VmPortLink, VspherePortGroup, type VspherePortGroupBuilder, type VspherePortGroupConfig, VsphereVlan, type VsphereVlanBuilder, type VsphereVlanConfig, VsphereVm, type VsphereVmBuilder, type VsphereVmConfig, Workload, type WorkloadBuilder, type WorkloadComponent, type WorkloadConfig, type WorkloadPortLink };
|
|
8513
|
+
export { Ambassador, type AmbassadorBuilder, type AmbassadorConfig, type ApiGatewayLinkSettings, ApiManagementSaaSUnmanaged, type ApiManagementSaaSUnmanagedBuilder, type ApiManagementSaaSUnmanagedConfig, ApiManagementUnmanaged, type ApiManagementUnmanagedBuilder, type ApiManagementUnmanagedComponent, type ApiManagementUnmanagedConfig, ArubaBlockStorage, type ArubaBlockStorageBuilder, type ArubaBlockStorageConfig, ArubaCloudServer, type ArubaCloudServerBuilder, type ArubaCloudServerConfig, ArubaContainerRegistry, type ArubaContainerRegistryBuilder, type ArubaContainerRegistryConfig, ArubaElasticIp, type ArubaElasticIpBuilder, type ArubaElasticIpConfig, ArubaKaaS, type ArubaKaaSBuilder, type ArubaKaaSConfig, ArubaMsSqlDbms, type ArubaMsSqlDbmsBuilder, type ArubaMsSqlDbmsConfig, ArubaMySqlDbms, type ArubaMySqlDbmsBuilder, type ArubaMySqlDbmsConfig, ArubaObjectStorageAccount, type ArubaObjectStorageAccountBuilder, type ArubaObjectStorageAccountConfig, ArubaSecurityGroup, type ArubaSecurityGroupBuilder, type ArubaSecurityGroupConfig, ArubaSshKeyPair, type ArubaSshKeyPairBuilder, type ArubaSshKeyPairConfig, ArubaSubnet, type ArubaSubnetBuilder, type ArubaSubnetConfig, ArubaVpc, type ArubaVpcBuilder, type ArubaVpcConfig, ArubaVpcPeering, type ArubaVpcPeeringBuilder, type ArubaVpcPeeringConfig, ArubaVpnTunnel, type ArubaVpnTunnelBuilder, type ArubaVpnTunnelConfig, AwsCloudFront, type AwsCloudFrontBuilder, type AwsCloudFrontConfig, AwsDatabricks, type AwsDatabricksBuilder, AwsDatabricksCluster, type AwsDatabricksClusterBuilder, type AwsDatabricksClusterConfig, type AwsDatabricksConfig, AwsDatabricksJob, type AwsDatabricksJobBuilder, type AwsDatabricksJobConfig, AwsDatabricksMlflow, type AwsDatabricksMlflowBuilder, type AwsDatabricksMlflowConfig, AwsEcsCluster, type AwsEcsClusterBuilder, type AwsEcsClusterConfig, AwsEcsService, type AwsEcsServiceBuilder, type AwsEcsServiceConfig, AwsEcsTaskDefinition, type AwsEcsTaskDefinitionBuilder, type AwsEcsTaskDefinitionComponent, type AwsEcsTaskDefinitionConfig, AwsEksCluster, type AwsEksClusterBuilder, type AwsEksClusterConfig, AwsLb, type AwsLbBuilder, type AwsLbConfig, AwsS3, type AwsS3Builder, type AwsS3Config, AwsS3Datalake, type AwsS3DatalakeBuilder, type AwsS3DatalakeConfig, AwsSecurityGroup, type AwsSecurityGroupBuilder, type AwsSecurityGroupConfig, AwsSubnet, type AwsSubnetBuilder, type AwsSubnetConfig, AwsVpc, type AwsVpcBuilder, type AwsVpcConfig, AzureAksCluster, type AzureAksClusterBuilder, type AzureAksClusterConfig, AzureApiManagement, type AzureApiManagementBuilder, type AzureApiManagementConfig, AzureBlobContainer, type AzureBlobContainerBuilder, type AzureBlobContainerConfig, AzureContainerApp, type AzureContainerAppBuilder, type AzureContainerAppConfig, AzureContainerAppsEnvironment, type AzureContainerAppsEnvironmentBuilder, type AzureContainerAppsEnvironmentConfig, AzureContainerInstance, type AzureContainerInstanceBuilder, type AzureContainerInstanceConfig, AzureCosmosDbAccount, type AzureCosmosDbAccountBuilder, type AzureCosmosDbAccountConfig, AzureCosmosDbCassandra, type AzureCosmosDbCassandraBuilder, type AzureCosmosDbCassandraConfig, AzureCosmosDbGremlinDatabase, type AzureCosmosDbGremlinDatabaseBuilder, type AzureCosmosDbGremlinDatabaseConfig, AzureCosmosDbMongoDatabase, type AzureCosmosDbMongoDatabaseBuilder, type AzureCosmosDbMongoDatabaseConfig, AzureCosmosDbPostgreSqlDatabase, type AzureCosmosDbPostgreSqlDatabaseBuilder, type AzureCosmosDbPostgreSqlDatabaseConfig, AzureCosmosDbTable, type AzureCosmosDbTableBuilder, type AzureCosmosDbTableConfig, AzureDatabricks, type AzureDatabricksBuilder, AzureDatabricksCluster, type AzureDatabricksClusterBuilder, type AzureDatabricksClusterConfig, type AzureDatabricksConfig, AzureDatabricksJob, type AzureDatabricksJobBuilder, type AzureDatabricksJobConfig, AzureDatabricksMlflow, type AzureDatabricksMlflowBuilder, type AzureDatabricksMlflowConfig, AzureDatalake, type AzureDatalakeBuilder, type AzureDatalakeConfig, AzureEventHub, type AzureEventHubBuilder, type AzureEventHubConfig, AzureEventHubNamespace, type AzureEventHubNamespaceBuilder, type AzureEventHubNamespaceConfig, AzureFileStorage, type AzureFileStorageBuilder, type AzureFileStorageConfig, AzureLb, type AzureLbBuilder, type AzureLbConfig, AzureNsg, type AzureNsgBuilder, type AzureNsgConfig, AzurePostgreSqlDatabase, type AzurePostgreSqlDatabaseBuilder, type AzurePostgreSqlDatabaseConfig, AzurePostgreSqlDbms, type AzurePostgreSqlDbmsBuilder, type AzurePostgreSqlDbmsConfig, AzureRelay, type AzureRelayBuilder, type AzureRelayConfig, AzureServiceBus, type AzureServiceBusBuilder, type AzureServiceBusConfig, AzureServiceBusQueue, type AzureServiceBusQueueBuilder, type AzureServiceBusQueueConfig, AzureServiceBusTopic, type AzureServiceBusTopicBuilder, type AzureServiceBusTopicConfig, AzureStorageAccount, type AzureStorageAccountBuilder, type AzureStorageAccountConfig, AzureSubnet, type AzureSubnetBuilder, type AzureSubnetConfig, AzureVm, type AzureVmBuilder, type AzureVmConfig, AzureVnet, type AzureVnetBuilder, type AzureVnetConfig, BigDataSaaSUnmanaged, type BigDataSaaSUnmanagedBuilder, type BigDataSaaSUnmanagedConfig, BigDataUnmanaged, type BigDataUnmanagedBuilder, type BigDataUnmanagedComponent, type BigDataUnmanagedConfig, BoundedContext, Broker, type BrokerBuilder, type BrokerComponent, type BrokerConfig, CaaSApiGateway, type CaaSApiGatewayBuilder, type CaaSApiGatewayComponent, type CaaSApiGatewayConfig, CaaSBroker, type CaaSBrokerBuilder, type CaaSBrokerComponent, type CaaSBrokerConfig, CaaSK8sWorkload, type CaaSK8sWorkloadBuilder, type CaaSK8sWorkloadConfig, CaaSMessagingEntity, type CaaSMessagingEntityBuilder, type CaaSMessagingEntityComponent, type CaaSMessagingEntityConfig, CaaSMinioTenant, type CaaSMinioTenantBuilder, type CaaSMinioTenantConfig, CaaSMlflow, type CaaSMlflowBuilder, type CaaSMlflowConfig, CaaSSparkCluster, type CaaSSparkClusterBuilder, type CaaSSparkClusterConfig, CaaSSparkJob, type CaaSSparkJobBuilder, type CaaSSparkJobConfig, CaaSSparkOperator, type CaaSSparkOperatorBuilder, type CaaSSparkOperatorConfig, ColumnOrientedDbms, type ColumnOrientedDbmsBuilder, type ColumnOrientedDbmsComponent, type ColumnOrientedDbmsConfig, ColumnOrientedEntity, type ColumnOrientedEntityBuilder, type ColumnOrientedEntityComponent, type ColumnOrientedEntityConfig, ComputeCluster, type ComputeClusterBuilder, type ComputeClusterComponent, type ComputeClusterConfig, ContainerPlatform, type ContainerPlatformBuilder, type ContainerPlatformComponent, type ContainerPlatformConfig, Custom, type CustomBlueprintBuilder, type CustomBlueprintConfig, type CustomBlueprintFactory, type CustomComponentConfig, type CustomOfferBuilder, type CustomOfferConfig, type CustomOfferFactory, type CustomSatisfiedBuilder, DataProcessingJob, type DataProcessingJobBuilder, type DataProcessingJobComponent, type DataProcessingJobConfig, type DataProcessingJobDatalakeLink, type DataProcessingJobMessagingAccessType, type DataProcessingJobMessagingLink, type DataProcessingJobMessagingLinkSettings, Datalake, type DatalakeBuilder, type DatalakeComponent, type DatalakeConfig, type DatalakeLinkSettings, type DatalakePurpose, DistributedDataProcessing, type DistributedDataProcessingBuilder, type DistributedDataProcessingComponent, type DistributedDataProcessingConfig, DocumentDatabase, type DocumentDatabaseBuilder, type DocumentDatabaseComponent, type DocumentDatabaseConfig, DocumentDbms, type DocumentDbmsBuilder, type DocumentDbmsComponent, type DocumentDbmsConfig, Ec2Instance, type Ec2InstanceBuilder, type Ec2InstanceConfig, Elastic, type ElasticBuilder, type ElasticConfig, Environment, FilesAndBlobs, type FilesAndBlobsBuilder, type FilesAndBlobsComponent, type FilesAndBlobsConfig, Fractal, type FrontendIpConfiguration, GcpApiGateway, type GcpApiGatewayBuilder, type GcpApiGatewayConfig, GcpBigTable, type GcpBigTableBuilder, type GcpBigTableConfig, GcpBigTableTable, type GcpBigTableTableBuilder, type GcpBigTableTableConfig, GcpCloudRunService, type GcpCloudRunServiceBuilder, type GcpCloudRunServiceConfig, GcpCloudStorage, type GcpCloudStorageBuilder, type GcpCloudStorageConfig, GcpDatabricks, type GcpDatabricksBuilder, GcpDatabricksCluster, type GcpDatabricksClusterBuilder, type GcpDatabricksClusterConfig, type GcpDatabricksConfig, GcpDatabricksJob, type GcpDatabricksJobBuilder, type GcpDatabricksJobConfig, GcpDatabricksMlflow, type GcpDatabricksMlflowBuilder, type GcpDatabricksMlflowConfig, GcpDatalake, type GcpDatalakeBuilder, type GcpDatalakeConfig, GcpFirestore, type GcpFirestoreBuilder, GcpFirestoreCollection, type GcpFirestoreCollectionBuilder, type GcpFirestoreCollectionConfig, type GcpFirestoreConfig, GcpFirewall, type GcpFirewallBuilder, type GcpFirewallConfig, GcpGkeCluster, type GcpGkeClusterBuilder, type GcpGkeClusterConfig, GcpGlb, type GcpGlbBuilder, type GcpGlbConfig, GcpPostgreSqlDatabase, type GcpPostgreSqlDatabaseBuilder, type GcpPostgreSqlDatabaseConfig, GcpPostgreSqlDbms, type GcpPostgreSqlDbmsBuilder, type GcpPostgreSqlDbmsConfig, GcpPubSub, type GcpPubSubBuilder, type GcpPubSubConfig, GcpPubSubSubscription, type GcpPubSubSubscriptionBuilder, type GcpPubSubSubscriptionConfig, GcpPubSubTopic, type GcpPubSubTopicBuilder, type GcpPubSubTopicConfig, GcpSubnet, type GcpSubnetBuilder, type GcpSubnetConfig, GcpVm, type GcpVmBuilder, type GcpVmConfig, GcpVpc, type GcpVpcBuilder, type GcpVpcConfig, GraphDatabase, type GraphDatabaseBuilder, type GraphDatabaseComponent, type GraphDatabaseConfig, GraphDbms, type GraphDbmsBuilder, type GraphDbmsComponent, type GraphDbmsConfig, HetznerFirewall, type HetznerFirewallBuilder, type HetznerFirewallConfig, HetznerNetwork, type HetznerNetworkBuilder, type HetznerNetworkConfig, HetznerServer, type HetznerServerBuilder, type HetznerServerConfig, HetznerSubnet, type HetznerSubnetBuilder, type HetznerSubnetConfig, IndexPattern, type IndexPatternBuilder, type IndexPatternConfig, InfrastructureDomain, type IngressRule, Jaeger, type JaegerBuilder, type JaegerConfig, Kafka, type KafkaBuilder, type KafkaConfig, KafkaTopic, type KafkaTopicBuilder, type KafkaTopicConfig, KebabCaseString, KeyValueDbms, type KeyValueDbmsBuilder, type KeyValueDbmsComponent, type KeyValueDbmsConfig, KeyValueEntity, type KeyValueEntityBuilder, type KeyValueEntityComponent, type KeyValueEntityConfig, LiveSystem, LoadBalancer, type LoadBalancerBuilder, type LoadBalancerComponent, type LoadBalancerConfig, Logging, type LoggingBuilder, type LoggingComponent, type LoggingConfig, type MessagingAccessType, MessagingEntity, type MessagingEntityBuilder, type MessagingEntityComponent, type MessagingEntityConfig, type MessagingLinkSettings, MessagingSaaSUnmanaged, type MessagingSaaSUnmanagedBuilder, type MessagingSaaSUnmanagedConfig, MessagingUnmanaged, type MessagingUnmanagedBuilder, type MessagingUnmanagedComponent, type MessagingUnmanagedConfig, MlExperiment, type MlExperimentBuilder, type MlExperimentComponent, type MlExperimentConfig, Monitoring, type MonitoringBuilder, type MonitoringComponent, type MonitoringConfig, type NodePoolConfig, ObservabilityElastic, type ObservabilityElasticBuilder, type ObservabilityElasticConfig, ObservabilitySaaSUnmanaged, type ObservabilitySaaSUnmanagedBuilder, type ObservabilitySaaSUnmanagedConfig, ObservabilityUnmanaged, type ObservabilityUnmanagedBuilder, type ObservabilityUnmanagedComponent, type ObservabilityUnmanagedConfig, Ocelot, type OcelotBuilder, type OcelotConfig, OciContainerInstance, type OciContainerInstanceBuilder, type OciContainerInstanceConfig, OciInstance, type OciInstanceBuilder, type OciInstanceConfig, OciSecurityList, type OciSecurityListBuilder, type OciSecurityListConfig, OciSubnet, type OciSubnetBuilder, type OciSubnetConfig, OciVcn, type OciVcnBuilder, type OciVcnConfig, OpenshiftPersistentVolume, type OpenshiftPersistentVolumeBuilder, type OpenshiftPersistentVolumeConfig, OpenshiftSecurityGroup, type OpenshiftSecurityGroupBuilder, type OpenshiftSecurityGroupConfig, OpenshiftService, type OpenshiftServiceBuilder, type OpenshiftServiceConfig, OpenshiftVm, type OpenshiftVmBuilder, type OpenshiftVmConfig, OpenshiftWorkload, type OpenshiftWorkloadBuilder, type OpenshiftWorkloadConfig, OwnerId, OwnerType, PaaSApiGateway, type PaaSApiGatewayBuilder, type PaaSApiGatewayComponent, type PaaSApiGatewayConfig, PascalCaseString, Prometheus, type PrometheusBuilder, type PrometheusConfig, RelationalDatabase, type RelationalDatabaseBuilder, type RelationalDatabaseComponent, type RelationalDatabaseConfig, RelationalDbms, type RelationalDbmsBuilder, type RelationalDbmsComponent, type RelationalDbmsConfig, SaaSUnmanaged, type SaaSUnmanagedBuilder, type SaaSUnmanagedConfig, type SatisfiedAmbassadorBuilder, type SatisfiedApiManagementSaaSUnmanagedBuilder, type SatisfiedArubaCloudServerBuilder, type SatisfiedArubaKaaSBuilder, type SatisfiedArubaMsSqlDbmsBuilder, type SatisfiedArubaMySqlDbmsBuilder, type SatisfiedArubaObjectStorageAccountBuilder, type SatisfiedArubaSecurityGroupBuilder, type SatisfiedArubaSubnetBuilder, type SatisfiedArubaVpcBuilder, type SatisfiedAwsCloudFrontBuilder, type SatisfiedAwsDatabricksBuilder, type SatisfiedAwsDatabricksClusterBuilder, type SatisfiedAwsDatabricksJobBuilder, type SatisfiedAwsDatabricksMlflowBuilder, type SatisfiedAwsEcsClusterBuilder, type SatisfiedAwsEcsServiceBuilder, type SatisfiedAwsEcsTaskDefinitionBuilder, type SatisfiedAwsEksClusterBuilder, type SatisfiedAwsLbBuilder, type SatisfiedAwsS3Builder, type SatisfiedAwsS3DatalakeBuilder, type SatisfiedAwsSecurityGroupBuilder, type SatisfiedAwsSubnetBuilder, type SatisfiedAwsVpcBuilder, type SatisfiedAzureAksClusterBuilder, type SatisfiedAzureApiManagementBuilder, type SatisfiedAzureBlobContainerBuilder, type SatisfiedAzureContainerAppBuilder, type SatisfiedAzureContainerAppsEnvironmentBuilder, type SatisfiedAzureContainerInstanceBuilder, type SatisfiedAzureCosmosDbAccountBuilder, type SatisfiedAzureCosmosDbCassandraBuilder, type SatisfiedAzureCosmosDbGremlinDatabaseBuilder, type SatisfiedAzureCosmosDbMongoDatabaseBuilder, type SatisfiedAzureCosmosDbPostgreSqlDatabaseBuilder, type SatisfiedAzureCosmosDbTableBuilder, type SatisfiedAzureDatabricksBuilder, type SatisfiedAzureDatabricksClusterBuilder, type SatisfiedAzureDatabricksJobBuilder, type SatisfiedAzureDatabricksMlflowBuilder, type SatisfiedAzureDatalakeBuilder, type SatisfiedAzureEventHubBuilder, type SatisfiedAzureEventHubNamespaceBuilder, type SatisfiedAzureFileStorageBuilder, type SatisfiedAzureLbBuilder, type SatisfiedAzureNsgBuilder, type SatisfiedAzurePostgreSqlDatabaseBuilder, type SatisfiedAzurePostgreSqlDbmsBuilder, type SatisfiedAzureRelayBuilder, type SatisfiedAzureServiceBusBuilder, type SatisfiedAzureServiceBusQueueBuilder, type SatisfiedAzureServiceBusTopicBuilder, type SatisfiedAzureStorageAccountBuilder, type SatisfiedAzureSubnetBuilder, type SatisfiedAzureVmBuilder, type SatisfiedAzureVnetBuilder, type SatisfiedBigDataSaaSUnmanagedBuilder, type SatisfiedCaaSK8sWorkloadBuilder, type SatisfiedCaaSMinioTenantBuilder, type SatisfiedCaaSMlflowBuilder, type SatisfiedCaaSSparkClusterBuilder, type SatisfiedCaaSSparkJobBuilder, type SatisfiedCaaSSparkOperatorBuilder, type SatisfiedEc2Builder, type SatisfiedElasticBuilder, type SatisfiedGcpApiGatewayBuilder, type SatisfiedGcpBigTableBuilder, type SatisfiedGcpBigTableTableBuilder, type SatisfiedGcpCloudRunServiceBuilder, type SatisfiedGcpCloudStorageBuilder, type SatisfiedGcpDatabricksBuilder, type SatisfiedGcpDatabricksClusterBuilder, type SatisfiedGcpDatabricksJobBuilder, type SatisfiedGcpDatabricksMlflowBuilder, type SatisfiedGcpDatalakeBuilder, type SatisfiedGcpFirestoreBuilder, type SatisfiedGcpFirestoreCollectionBuilder, type SatisfiedGcpFirewallBuilder, type SatisfiedGcpGkeClusterBuilder, type SatisfiedGcpGlbBuilder, type SatisfiedGcpPostgreSqlDatabaseBuilder, type SatisfiedGcpPostgreSqlDbmsBuilder, type SatisfiedGcpPubSubBuilder, type SatisfiedGcpPubSubSubscriptionBuilder, type SatisfiedGcpPubSubTopicBuilder, type SatisfiedGcpSubnetBuilder, type SatisfiedGcpVmBuilder, type SatisfiedGcpVpcBuilder, type SatisfiedHetznerFirewallBuilder, type SatisfiedHetznerNetworkBuilder, type SatisfiedHetznerServerBuilder, type SatisfiedHetznerSubnetBuilder, type SatisfiedIndexPatternBuilder, type SatisfiedJaegerBuilder, type SatisfiedKafkaBuilder, type SatisfiedKafkaTopicBuilder, type SatisfiedMessagingSaaSUnmanagedBuilder, type SatisfiedObservabilityElasticBuilder, type SatisfiedObservabilitySaaSUnmanagedBuilder, type SatisfiedOcelotBuilder, type SatisfiedOciContainerInstanceBuilder, type SatisfiedOciInstanceBuilder, type SatisfiedOciSecurityListBuilder, type SatisfiedOciSubnetBuilder, type SatisfiedOciVcnBuilder, type SatisfiedOpenshiftPersistentVolumeBuilder, type SatisfiedOpenshiftSecurityGroupBuilder, type SatisfiedOpenshiftServiceBuilder, type SatisfiedOpenshiftVmBuilder, type SatisfiedOpenshiftWorkloadBuilder, type SatisfiedPrometheusBuilder, type SatisfiedSaaSUnmanagedBuilder, type SatisfiedSecuritySaaSUnmanagedBuilder, type SatisfiedTraefikBuilder, type SatisfiedVspherePortGroupBuilder, type SatisfiedVsphereVlanBuilder, type SatisfiedVsphereVmBuilder, Search, type SearchBuilder, type SearchComponent, type SearchConfig, SearchEntity, type SearchEntityBuilder, type SearchEntityComponent, type SearchEntityConfig, SecurityGroup, type SecurityGroupBuilder, type SecurityGroupComponent, type SecurityGroupConfig, SecuritySaaSUnmanaged, type SecuritySaaSUnmanagedBuilder, type SecuritySaaSUnmanagedConfig, SecurityUnmanaged, type SecurityUnmanagedBuilder, type SecurityUnmanagedComponent, type SecurityUnmanagedConfig, ServiceAccountCredentials, ServiceAccountId, ServiceDeliveryModel, ServiceMesh, type ServiceMeshBuilder, type ServiceMeshComponent, type ServiceMeshConfig, Subnet, type SubnetBuilder, type SubnetComponent, type SubnetConfig, type SubnetResult, Tracing, type TracingBuilder, type TracingComponent, type TracingConfig, Traefik, type TraefikBuilder, type TraefikConfig, Unmanaged, type UnmanagedBuilder, type UnmanagedComponent, type UnmanagedConfig, Version, VirtualMachine, type VirtualMachineBuilder, type VirtualMachineComponent, type VirtualMachineConfig, VirtualNetwork, type VirtualNetworkBuilder, type VirtualNetworkComponent, type VirtualNetworkConfig, type VirtualNetworkResult, type VmPortLink, VspherePortGroup, type VspherePortGroupBuilder, type VspherePortGroupConfig, VsphereVlan, type VsphereVlanBuilder, type VsphereVlanConfig, VsphereVm, type VsphereVmBuilder, type VsphereVmConfig, Workload, type WorkloadApiGatewayLink, type WorkloadBuilder, type WorkloadComponent, type WorkloadConfig, type WorkloadMessagingLink, type WorkloadPortLink };
|