@veltrixsecops/app-sdk 3.2.0 → 3.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/byol/index.cjs +3802 -0
- package/dist/byol/index.cjs.map +1 -0
- package/dist/byol/index.d.cts +578 -0
- package/dist/byol/index.d.ts +578 -0
- package/dist/byol/index.js +2587 -0
- package/dist/byol/index.js.map +1 -0
- package/dist/chunk-3WK4EVQ3.js +842 -0
- package/dist/chunk-3WK4EVQ3.js.map +1 -0
- package/dist/{chunk-EOOEHZGC.js → chunk-HIL6RIDG.js} +107 -3
- package/dist/chunk-HIL6RIDG.js.map +1 -0
- package/dist/{chunk-VWFTOFTI.js → chunk-Y6XBNZGR.js} +8 -2
- package/dist/chunk-Y6XBNZGR.js.map +1 -0
- package/dist/client/index.cjs +112 -2
- package/dist/client/index.cjs.map +1 -1
- package/dist/client/index.d.cts +118 -6
- package/dist/client/index.d.ts +118 -6
- package/dist/client/index.js +13 -1
- package/dist/connections/index.cjs +1787 -0
- package/dist/connections/index.cjs.map +1 -0
- package/dist/connections/index.d.cts +78 -0
- package/dist/connections/index.d.ts +78 -0
- package/dist/connections/index.js +754 -0
- package/dist/connections/index.js.map +1 -0
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.d.cts +2 -2
- package/dist/hooks/index.d.ts +2 -2
- package/dist/hooks/index.js +1 -1
- package/dist/index.cjs +7 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/opentofu/index.cjs +138 -0
- package/dist/opentofu/index.cjs.map +1 -0
- package/dist/opentofu/index.d.cts +131 -0
- package/dist/opentofu/index.d.ts +131 -0
- package/dist/opentofu/index.js +109 -0
- package/dist/opentofu/index.js.map +1 -0
- package/dist/pipeline/index.cjs +7 -0
- package/dist/pipeline/index.cjs.map +1 -1
- package/dist/pipeline/index.d.cts +9 -2
- package/dist/pipeline/index.d.ts +9 -2
- package/dist/pipeline/index.js +3 -1
- package/dist/pipeline-beeT8dje.d.cts +408 -0
- package/dist/pipeline-beeT8dje.d.ts +408 -0
- package/dist/ui/index.cjs +136 -0
- package/dist/ui/index.cjs.map +1 -1
- package/dist/ui/index.d.cts +109 -1
- package/dist/ui/index.d.ts +109 -1
- package/dist/ui/index.js +35 -677
- package/dist/ui/index.js.map +1 -1
- package/dist/{use-app-context-OQlcmq7t.d.cts → use-app-context-Byv_fam0.d.cts} +206 -4
- package/dist/{use-app-context-OQlcmq7t.d.ts → use-app-context-Byv_fam0.d.ts} +206 -4
- package/opentofu/README.md +114 -0
- package/opentofu/modules/aws/main.tf +1008 -0
- package/opentofu/modules/aws/outputs.tf +90 -0
- package/opentofu/modules/aws/variables.tf +437 -0
- package/opentofu/modules/aws/versions.tf +23 -0
- package/opentofu/modules/azure/main.tf +920 -0
- package/opentofu/modules/azure/outputs.tf +72 -0
- package/opentofu/modules/azure/variables.tf +498 -0
- package/opentofu/modules/azure/versions.tf +27 -0
- package/opentofu/modules/gcp/main.tf +645 -0
- package/opentofu/modules/gcp/outputs.tf +73 -0
- package/opentofu/modules/gcp/variables.tf +428 -0
- package/opentofu/modules/gcp/versions.tf +27 -0
- package/opentofu/modules/hetzner/main.tf +432 -0
- package/opentofu/modules/hetzner/outputs.tf +72 -0
- package/opentofu/modules/hetzner/variables.tf +423 -0
- package/opentofu/modules/hetzner/versions.tf +26 -0
- package/package.json +33 -1
- package/dist/chunk-EOOEHZGC.js.map +0 -1
- package/dist/chunk-VWFTOFTI.js.map +0 -1
- package/dist/pipeline-A-gSsPRR.d.cts +0 -189
- package/dist/pipeline-A-gSsPRR.d.ts +0 -189
|
@@ -1,189 +0,0 @@
|
|
|
1
|
-
interface ValidationError {
|
|
2
|
-
field: string;
|
|
3
|
-
message: string;
|
|
4
|
-
code: string;
|
|
5
|
-
}
|
|
6
|
-
interface ValidationWarning {
|
|
7
|
-
field: string;
|
|
8
|
-
message: string;
|
|
9
|
-
code: string;
|
|
10
|
-
}
|
|
11
|
-
interface ValidationResult {
|
|
12
|
-
valid: boolean;
|
|
13
|
-
errors: ValidationError[];
|
|
14
|
-
warnings: ValidationWarning[];
|
|
15
|
-
}
|
|
16
|
-
interface DeployResult {
|
|
17
|
-
success: boolean;
|
|
18
|
-
message: string;
|
|
19
|
-
artifacts?: Record<string, unknown>;
|
|
20
|
-
rollbackData?: unknown;
|
|
21
|
-
}
|
|
22
|
-
interface RollbackResult {
|
|
23
|
-
success: boolean;
|
|
24
|
-
message: string;
|
|
25
|
-
}
|
|
26
|
-
interface HealthCheck {
|
|
27
|
-
name: string;
|
|
28
|
-
passed: boolean;
|
|
29
|
-
message: string;
|
|
30
|
-
latencyMs?: number;
|
|
31
|
-
}
|
|
32
|
-
interface HealthCheckResult {
|
|
33
|
-
healthy: boolean;
|
|
34
|
-
score: number;
|
|
35
|
-
checks: HealthCheck[];
|
|
36
|
-
}
|
|
37
|
-
interface DriftDiff {
|
|
38
|
-
field: string;
|
|
39
|
-
expected: unknown;
|
|
40
|
-
actual: unknown;
|
|
41
|
-
severity: 'info' | 'warning' | 'critical';
|
|
42
|
-
}
|
|
43
|
-
interface DriftResult {
|
|
44
|
-
hasDrift: boolean;
|
|
45
|
-
diffs: DriftDiff[];
|
|
46
|
-
}
|
|
47
|
-
interface ComponentConfigStatus {
|
|
48
|
-
componentId: string;
|
|
49
|
-
hostname: string;
|
|
50
|
-
deployed: boolean;
|
|
51
|
-
version?: string;
|
|
52
|
-
lastDeployedAt?: string;
|
|
53
|
-
healthy?: boolean;
|
|
54
|
-
healthScore?: number;
|
|
55
|
-
}
|
|
56
|
-
interface ConfigStatus {
|
|
57
|
-
deployed: boolean;
|
|
58
|
-
version: string;
|
|
59
|
-
lastDeployedAt: string;
|
|
60
|
-
componentStatuses: ComponentConfigStatus[];
|
|
61
|
-
}
|
|
62
|
-
interface CanvasSectionSnapshot {
|
|
63
|
-
name: string;
|
|
64
|
-
fields: Record<string, unknown>;
|
|
65
|
-
}
|
|
66
|
-
interface CanvasSnapshot {
|
|
67
|
-
id: string;
|
|
68
|
-
canvasId: string;
|
|
69
|
-
version: number;
|
|
70
|
-
name: string;
|
|
71
|
-
toolType: string;
|
|
72
|
-
entityType: string;
|
|
73
|
-
sections: CanvasSectionSnapshot[];
|
|
74
|
-
snapshot: Record<string, unknown>;
|
|
75
|
-
}
|
|
76
|
-
type DeploymentStrategy = 'DIRECT' | 'CANARY' | 'BLUE_GREEN' | 'ROLLING';
|
|
77
|
-
interface EnvironmentRef {
|
|
78
|
-
id: string;
|
|
79
|
-
name: string;
|
|
80
|
-
}
|
|
81
|
-
interface UserRef {
|
|
82
|
-
id: string;
|
|
83
|
-
email: string;
|
|
84
|
-
name: string | null;
|
|
85
|
-
}
|
|
86
|
-
interface ComponentRef {
|
|
87
|
-
id: string;
|
|
88
|
-
hostname: string;
|
|
89
|
-
port: string;
|
|
90
|
-
type: string[];
|
|
91
|
-
toolId: string;
|
|
92
|
-
}
|
|
93
|
-
interface CredentialRef {
|
|
94
|
-
id: string;
|
|
95
|
-
name: string;
|
|
96
|
-
username: string;
|
|
97
|
-
password: string;
|
|
98
|
-
apiToken: string | null;
|
|
99
|
-
certificate: string | null;
|
|
100
|
-
}
|
|
101
|
-
interface ConnectivityRef {
|
|
102
|
-
id: string;
|
|
103
|
-
status: string;
|
|
104
|
-
sshCommand: string | null;
|
|
105
|
-
httpsUrl: string | null;
|
|
106
|
-
tailscaleDeviceIP: string | null;
|
|
107
|
-
}
|
|
108
|
-
/** Provider-aware connectivity passed to handlers when a ConnectivityProvider is configured */
|
|
109
|
-
interface ConnectivityProviderRef {
|
|
110
|
-
id: string;
|
|
111
|
-
providerType: string;
|
|
112
|
-
name: string;
|
|
113
|
-
status: string;
|
|
114
|
-
config: Record<string, unknown>;
|
|
115
|
-
}
|
|
116
|
-
/** Summary of a deployment record, returned by PlatformDataApi */
|
|
117
|
-
interface DeploymentSummary {
|
|
118
|
-
id: string;
|
|
119
|
-
canvasId: string;
|
|
120
|
-
status: string;
|
|
121
|
-
healthScore: number | null;
|
|
122
|
-
startedAt: string;
|
|
123
|
-
completedAt: string | null;
|
|
124
|
-
environment: EnvironmentRef;
|
|
125
|
-
}
|
|
126
|
-
/**
|
|
127
|
-
* Tenant-scoped, read-only access to platform data, provided on every
|
|
128
|
-
* handler context as `ctx.platform`. Apps must use this instead of
|
|
129
|
-
* querying the platform database directly — it is the only supported
|
|
130
|
-
* way to read platform records from an app.
|
|
131
|
-
*/
|
|
132
|
-
interface PlatformDataApi {
|
|
133
|
-
/** Latest deployment for a canvas, optionally filtered by status (e.g. 'SUCCEEDED'). */
|
|
134
|
-
getLatestDeployment(canvasId: string, opts?: {
|
|
135
|
-
status?: string;
|
|
136
|
-
}): Promise<DeploymentSummary | null>;
|
|
137
|
-
/** Components for the current customer, optionally filtered by component types. */
|
|
138
|
-
listComponents(filter?: {
|
|
139
|
-
types?: string[];
|
|
140
|
-
}): Promise<ComponentRef[]>;
|
|
141
|
-
}
|
|
142
|
-
interface PipelineContext {
|
|
143
|
-
appId: string;
|
|
144
|
-
customerId: string;
|
|
145
|
-
configTypeId: string;
|
|
146
|
-
canvas: CanvasSnapshot;
|
|
147
|
-
environment: EnvironmentRef;
|
|
148
|
-
user: UserRef;
|
|
149
|
-
settings: Record<string, unknown>;
|
|
150
|
-
platform: PlatformDataApi;
|
|
151
|
-
}
|
|
152
|
-
interface DeployContext extends PipelineContext {
|
|
153
|
-
component: ComponentRef;
|
|
154
|
-
credential: CredentialRef | null;
|
|
155
|
-
connectivity: ConnectivityRef | null;
|
|
156
|
-
connectivityProvider: ConnectivityProviderRef | null;
|
|
157
|
-
previousConfig: CanvasSnapshot | null;
|
|
158
|
-
strategy: DeploymentStrategy;
|
|
159
|
-
canaryPercent?: number;
|
|
160
|
-
}
|
|
161
|
-
interface RollbackContext extends PipelineContext {
|
|
162
|
-
component: ComponentRef;
|
|
163
|
-
credential: CredentialRef | null;
|
|
164
|
-
connectivity: ConnectivityRef | null;
|
|
165
|
-
connectivityProvider: ConnectivityProviderRef | null;
|
|
166
|
-
rollbackData: unknown;
|
|
167
|
-
targetVersion: CanvasSnapshot;
|
|
168
|
-
}
|
|
169
|
-
interface HealthCheckContext extends PipelineContext {
|
|
170
|
-
component: ComponentRef;
|
|
171
|
-
credential: CredentialRef | null;
|
|
172
|
-
connectivity: ConnectivityRef | null;
|
|
173
|
-
connectivityProvider: ConnectivityProviderRef | null;
|
|
174
|
-
}
|
|
175
|
-
interface DriftContext extends PipelineContext {
|
|
176
|
-
component: ComponentRef;
|
|
177
|
-
credential: CredentialRef | null;
|
|
178
|
-
connectivity: ConnectivityRef | null;
|
|
179
|
-
connectivityProvider: ConnectivityProviderRef | null;
|
|
180
|
-
deployedConfig: CanvasSnapshot;
|
|
181
|
-
}
|
|
182
|
-
type ValidateHandler = (ctx: PipelineContext) => Promise<ValidationResult>;
|
|
183
|
-
type DeployHandler = (ctx: DeployContext) => Promise<DeployResult>;
|
|
184
|
-
type RollbackHandler = (ctx: RollbackContext) => Promise<RollbackResult>;
|
|
185
|
-
type HealthCheckHandler = (ctx: HealthCheckContext) => Promise<HealthCheckResult>;
|
|
186
|
-
type DriftDetectHandler = (ctx: DriftContext) => Promise<DriftResult>;
|
|
187
|
-
type GetStatusHandler = (ctx: PipelineContext) => Promise<ConfigStatus>;
|
|
188
|
-
|
|
189
|
-
export type { CanvasSectionSnapshot as C, DeployContext as D, EnvironmentRef as E, GetStatusHandler as G, HealthCheck as H, PipelineContext as P, RollbackContext as R, UserRef as U, ValidateHandler as V, CanvasSnapshot as a, ComponentConfigStatus as b, ComponentRef as c, ConfigStatus as d, ConnectivityRef as e, CredentialRef as f, DeployHandler as g, DeployResult as h, DeploymentStrategy as i, DeploymentSummary as j, DriftContext as k, DriftDetectHandler as l, DriftDiff as m, DriftResult as n, HealthCheckContext as o, HealthCheckHandler as p, HealthCheckResult as q, PlatformDataApi as r, RollbackHandler as s, RollbackResult as t, ValidationError as u, ValidationResult as v, ValidationWarning as w };
|
|
@@ -1,189 +0,0 @@
|
|
|
1
|
-
interface ValidationError {
|
|
2
|
-
field: string;
|
|
3
|
-
message: string;
|
|
4
|
-
code: string;
|
|
5
|
-
}
|
|
6
|
-
interface ValidationWarning {
|
|
7
|
-
field: string;
|
|
8
|
-
message: string;
|
|
9
|
-
code: string;
|
|
10
|
-
}
|
|
11
|
-
interface ValidationResult {
|
|
12
|
-
valid: boolean;
|
|
13
|
-
errors: ValidationError[];
|
|
14
|
-
warnings: ValidationWarning[];
|
|
15
|
-
}
|
|
16
|
-
interface DeployResult {
|
|
17
|
-
success: boolean;
|
|
18
|
-
message: string;
|
|
19
|
-
artifacts?: Record<string, unknown>;
|
|
20
|
-
rollbackData?: unknown;
|
|
21
|
-
}
|
|
22
|
-
interface RollbackResult {
|
|
23
|
-
success: boolean;
|
|
24
|
-
message: string;
|
|
25
|
-
}
|
|
26
|
-
interface HealthCheck {
|
|
27
|
-
name: string;
|
|
28
|
-
passed: boolean;
|
|
29
|
-
message: string;
|
|
30
|
-
latencyMs?: number;
|
|
31
|
-
}
|
|
32
|
-
interface HealthCheckResult {
|
|
33
|
-
healthy: boolean;
|
|
34
|
-
score: number;
|
|
35
|
-
checks: HealthCheck[];
|
|
36
|
-
}
|
|
37
|
-
interface DriftDiff {
|
|
38
|
-
field: string;
|
|
39
|
-
expected: unknown;
|
|
40
|
-
actual: unknown;
|
|
41
|
-
severity: 'info' | 'warning' | 'critical';
|
|
42
|
-
}
|
|
43
|
-
interface DriftResult {
|
|
44
|
-
hasDrift: boolean;
|
|
45
|
-
diffs: DriftDiff[];
|
|
46
|
-
}
|
|
47
|
-
interface ComponentConfigStatus {
|
|
48
|
-
componentId: string;
|
|
49
|
-
hostname: string;
|
|
50
|
-
deployed: boolean;
|
|
51
|
-
version?: string;
|
|
52
|
-
lastDeployedAt?: string;
|
|
53
|
-
healthy?: boolean;
|
|
54
|
-
healthScore?: number;
|
|
55
|
-
}
|
|
56
|
-
interface ConfigStatus {
|
|
57
|
-
deployed: boolean;
|
|
58
|
-
version: string;
|
|
59
|
-
lastDeployedAt: string;
|
|
60
|
-
componentStatuses: ComponentConfigStatus[];
|
|
61
|
-
}
|
|
62
|
-
interface CanvasSectionSnapshot {
|
|
63
|
-
name: string;
|
|
64
|
-
fields: Record<string, unknown>;
|
|
65
|
-
}
|
|
66
|
-
interface CanvasSnapshot {
|
|
67
|
-
id: string;
|
|
68
|
-
canvasId: string;
|
|
69
|
-
version: number;
|
|
70
|
-
name: string;
|
|
71
|
-
toolType: string;
|
|
72
|
-
entityType: string;
|
|
73
|
-
sections: CanvasSectionSnapshot[];
|
|
74
|
-
snapshot: Record<string, unknown>;
|
|
75
|
-
}
|
|
76
|
-
type DeploymentStrategy = 'DIRECT' | 'CANARY' | 'BLUE_GREEN' | 'ROLLING';
|
|
77
|
-
interface EnvironmentRef {
|
|
78
|
-
id: string;
|
|
79
|
-
name: string;
|
|
80
|
-
}
|
|
81
|
-
interface UserRef {
|
|
82
|
-
id: string;
|
|
83
|
-
email: string;
|
|
84
|
-
name: string | null;
|
|
85
|
-
}
|
|
86
|
-
interface ComponentRef {
|
|
87
|
-
id: string;
|
|
88
|
-
hostname: string;
|
|
89
|
-
port: string;
|
|
90
|
-
type: string[];
|
|
91
|
-
toolId: string;
|
|
92
|
-
}
|
|
93
|
-
interface CredentialRef {
|
|
94
|
-
id: string;
|
|
95
|
-
name: string;
|
|
96
|
-
username: string;
|
|
97
|
-
password: string;
|
|
98
|
-
apiToken: string | null;
|
|
99
|
-
certificate: string | null;
|
|
100
|
-
}
|
|
101
|
-
interface ConnectivityRef {
|
|
102
|
-
id: string;
|
|
103
|
-
status: string;
|
|
104
|
-
sshCommand: string | null;
|
|
105
|
-
httpsUrl: string | null;
|
|
106
|
-
tailscaleDeviceIP: string | null;
|
|
107
|
-
}
|
|
108
|
-
/** Provider-aware connectivity passed to handlers when a ConnectivityProvider is configured */
|
|
109
|
-
interface ConnectivityProviderRef {
|
|
110
|
-
id: string;
|
|
111
|
-
providerType: string;
|
|
112
|
-
name: string;
|
|
113
|
-
status: string;
|
|
114
|
-
config: Record<string, unknown>;
|
|
115
|
-
}
|
|
116
|
-
/** Summary of a deployment record, returned by PlatformDataApi */
|
|
117
|
-
interface DeploymentSummary {
|
|
118
|
-
id: string;
|
|
119
|
-
canvasId: string;
|
|
120
|
-
status: string;
|
|
121
|
-
healthScore: number | null;
|
|
122
|
-
startedAt: string;
|
|
123
|
-
completedAt: string | null;
|
|
124
|
-
environment: EnvironmentRef;
|
|
125
|
-
}
|
|
126
|
-
/**
|
|
127
|
-
* Tenant-scoped, read-only access to platform data, provided on every
|
|
128
|
-
* handler context as `ctx.platform`. Apps must use this instead of
|
|
129
|
-
* querying the platform database directly — it is the only supported
|
|
130
|
-
* way to read platform records from an app.
|
|
131
|
-
*/
|
|
132
|
-
interface PlatformDataApi {
|
|
133
|
-
/** Latest deployment for a canvas, optionally filtered by status (e.g. 'SUCCEEDED'). */
|
|
134
|
-
getLatestDeployment(canvasId: string, opts?: {
|
|
135
|
-
status?: string;
|
|
136
|
-
}): Promise<DeploymentSummary | null>;
|
|
137
|
-
/** Components for the current customer, optionally filtered by component types. */
|
|
138
|
-
listComponents(filter?: {
|
|
139
|
-
types?: string[];
|
|
140
|
-
}): Promise<ComponentRef[]>;
|
|
141
|
-
}
|
|
142
|
-
interface PipelineContext {
|
|
143
|
-
appId: string;
|
|
144
|
-
customerId: string;
|
|
145
|
-
configTypeId: string;
|
|
146
|
-
canvas: CanvasSnapshot;
|
|
147
|
-
environment: EnvironmentRef;
|
|
148
|
-
user: UserRef;
|
|
149
|
-
settings: Record<string, unknown>;
|
|
150
|
-
platform: PlatformDataApi;
|
|
151
|
-
}
|
|
152
|
-
interface DeployContext extends PipelineContext {
|
|
153
|
-
component: ComponentRef;
|
|
154
|
-
credential: CredentialRef | null;
|
|
155
|
-
connectivity: ConnectivityRef | null;
|
|
156
|
-
connectivityProvider: ConnectivityProviderRef | null;
|
|
157
|
-
previousConfig: CanvasSnapshot | null;
|
|
158
|
-
strategy: DeploymentStrategy;
|
|
159
|
-
canaryPercent?: number;
|
|
160
|
-
}
|
|
161
|
-
interface RollbackContext extends PipelineContext {
|
|
162
|
-
component: ComponentRef;
|
|
163
|
-
credential: CredentialRef | null;
|
|
164
|
-
connectivity: ConnectivityRef | null;
|
|
165
|
-
connectivityProvider: ConnectivityProviderRef | null;
|
|
166
|
-
rollbackData: unknown;
|
|
167
|
-
targetVersion: CanvasSnapshot;
|
|
168
|
-
}
|
|
169
|
-
interface HealthCheckContext extends PipelineContext {
|
|
170
|
-
component: ComponentRef;
|
|
171
|
-
credential: CredentialRef | null;
|
|
172
|
-
connectivity: ConnectivityRef | null;
|
|
173
|
-
connectivityProvider: ConnectivityProviderRef | null;
|
|
174
|
-
}
|
|
175
|
-
interface DriftContext extends PipelineContext {
|
|
176
|
-
component: ComponentRef;
|
|
177
|
-
credential: CredentialRef | null;
|
|
178
|
-
connectivity: ConnectivityRef | null;
|
|
179
|
-
connectivityProvider: ConnectivityProviderRef | null;
|
|
180
|
-
deployedConfig: CanvasSnapshot;
|
|
181
|
-
}
|
|
182
|
-
type ValidateHandler = (ctx: PipelineContext) => Promise<ValidationResult>;
|
|
183
|
-
type DeployHandler = (ctx: DeployContext) => Promise<DeployResult>;
|
|
184
|
-
type RollbackHandler = (ctx: RollbackContext) => Promise<RollbackResult>;
|
|
185
|
-
type HealthCheckHandler = (ctx: HealthCheckContext) => Promise<HealthCheckResult>;
|
|
186
|
-
type DriftDetectHandler = (ctx: DriftContext) => Promise<DriftResult>;
|
|
187
|
-
type GetStatusHandler = (ctx: PipelineContext) => Promise<ConfigStatus>;
|
|
188
|
-
|
|
189
|
-
export type { CanvasSectionSnapshot as C, DeployContext as D, EnvironmentRef as E, GetStatusHandler as G, HealthCheck as H, PipelineContext as P, RollbackContext as R, UserRef as U, ValidateHandler as V, CanvasSnapshot as a, ComponentConfigStatus as b, ComponentRef as c, ConfigStatus as d, ConnectivityRef as e, CredentialRef as f, DeployHandler as g, DeployResult as h, DeploymentStrategy as i, DeploymentSummary as j, DriftContext as k, DriftDetectHandler as l, DriftDiff as m, DriftResult as n, HealthCheckContext as o, HealthCheckHandler as p, HealthCheckResult as q, PlatformDataApi as r, RollbackHandler as s, RollbackResult as t, ValidationError as u, ValidationResult as v, ValidationWarning as w };
|