@cdktf-providers/astronomer-astro 1.0.8

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.
Files changed (69) hide show
  1. package/LICENSE +355 -0
  2. package/README.md +19 -0
  3. package/dist/alert/index.d.ts +566 -0
  4. package/dist/alert/index.js +1489 -0
  5. package/dist/api-token/index.d.ts +199 -0
  6. package/dist/api-token/index.js +503 -0
  7. package/dist/cluster/index.d.ts +305 -0
  8. package/dist/cluster/index.js +755 -0
  9. package/dist/data-astro-alert/index.d.ts +277 -0
  10. package/dist/data-astro-alert/index.js +762 -0
  11. package/dist/data-astro-alerts/index.d.ts +232 -0
  12. package/dist/data-astro-alerts/index.js +600 -0
  13. package/dist/data-astro-api-token/index.d.ts +135 -0
  14. package/dist/data-astro-api-token/index.js +353 -0
  15. package/dist/data-astro-api-tokens/index.d.ts +196 -0
  16. package/dist/data-astro-api-tokens/index.js +502 -0
  17. package/dist/data-astro-cluster/index.d.ts +211 -0
  18. package/dist/data-astro-cluster/index.js +535 -0
  19. package/dist/data-astro-cluster-options/index.d.ts +255 -0
  20. package/dist/data-astro-cluster-options/index.js +640 -0
  21. package/dist/data-astro-clusters/index.d.ts +263 -0
  22. package/dist/data-astro-clusters/index.js +661 -0
  23. package/dist/data-astro-deployment/index.d.ts +355 -0
  24. package/dist/data-astro-deployment/index.js +1009 -0
  25. package/dist/data-astro-deployment-options/index.d.ts +475 -0
  26. package/dist/data-astro-deployment-options/index.js +1274 -0
  27. package/dist/data-astro-deployments/index.d.ts +416 -0
  28. package/dist/data-astro-deployments/index.js +1158 -0
  29. package/dist/data-astro-notification-channel/index.d.ts +122 -0
  30. package/dist/data-astro-notification-channel/index.js +345 -0
  31. package/dist/data-astro-notification-channels/index.d.ts +201 -0
  32. package/dist/data-astro-notification-channels/index.js +540 -0
  33. package/dist/data-astro-organization/index.d.ts +87 -0
  34. package/dist/data-astro-organization/index.js +251 -0
  35. package/dist/data-astro-team/index.d.ts +204 -0
  36. package/dist/data-astro-team/index.js +507 -0
  37. package/dist/data-astro-teams/index.d.ts +247 -0
  38. package/dist/data-astro-teams/index.js +610 -0
  39. package/dist/data-astro-user/index.d.ts +122 -0
  40. package/dist/data-astro-user/index.js +274 -0
  41. package/dist/data-astro-users/index.d.ts +174 -0
  42. package/dist/data-astro-users/index.js +400 -0
  43. package/dist/data-astro-workspace/index.d.ts +94 -0
  44. package/dist/data-astro-workspace/index.js +250 -0
  45. package/dist/data-astro-workspaces/index.d.ts +146 -0
  46. package/dist/data-astro-workspaces/index.js +376 -0
  47. package/dist/deployment/index.d.ts +813 -0
  48. package/dist/deployment/index.js +2083 -0
  49. package/dist/hybrid-cluster-workspace-authorization/index.d.ts +53 -0
  50. package/dist/hybrid-cluster-workspace-authorization/index.js +111 -0
  51. package/dist/index.d.ts +31 -0
  52. package/dist/index.js +32 -0
  53. package/dist/lazy-index.d.ts +0 -0
  54. package/dist/lazy-index.js +32 -0
  55. package/dist/notification-channel/index.d.ts +235 -0
  56. package/dist/notification-channel/index.js +608 -0
  57. package/dist/provider/index.d.ts +75 -0
  58. package/dist/provider/index.js +151 -0
  59. package/dist/team/index.d.ts +251 -0
  60. package/dist/team/index.js +622 -0
  61. package/dist/team-roles/index.d.ts +180 -0
  62. package/dist/team-roles/index.js +414 -0
  63. package/dist/user-invite/index.d.ts +99 -0
  64. package/dist/user-invite/index.js +262 -0
  65. package/dist/user-roles/index.d.ts +180 -0
  66. package/dist/user-roles/index.js +414 -0
  67. package/dist/workspace/index.d.ts +109 -0
  68. package/dist/workspace/index.js +282 -0
  69. package/package.json +51 -0
@@ -0,0 +1,416 @@
1
+ import { Construct } from 'constructs';
2
+ import * as cdktf from 'cdktf';
3
+ export interface DataAstroDeploymentsConfig extends cdktf.TerraformMetaArguments {
4
+ /**
5
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/data-sources/deployments#deployment_ids DataAstroDeployments#deployment_ids}
6
+ */
7
+ readonly deploymentIds?: string[];
8
+ /**
9
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/data-sources/deployments#names DataAstroDeployments#names}
10
+ */
11
+ readonly names?: string[];
12
+ /**
13
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/data-sources/deployments#workspace_ids DataAstroDeployments#workspace_ids}
14
+ */
15
+ readonly workspaceIds?: string[];
16
+ }
17
+ export interface DataAstroDeploymentsDeploymentsCreatedBy {
18
+ }
19
+ export declare function dataAstroDeploymentsDeploymentsCreatedByToTerraform(struct?: DataAstroDeploymentsDeploymentsCreatedBy): any;
20
+ export declare function dataAstroDeploymentsDeploymentsCreatedByToHclTerraform(struct?: DataAstroDeploymentsDeploymentsCreatedBy): any;
21
+ export declare class DataAstroDeploymentsDeploymentsCreatedByOutputReference extends cdktf.ComplexObject {
22
+ private isEmptyObject;
23
+ /**
24
+ * @param terraformResource The parent resource
25
+ * @param terraformAttribute The attribute on the parent resource this class is referencing
26
+ */
27
+ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
28
+ get internalValue(): DataAstroDeploymentsDeploymentsCreatedBy | undefined;
29
+ set internalValue(value: DataAstroDeploymentsDeploymentsCreatedBy | undefined);
30
+ get apiTokenName(): any;
31
+ get avatarUrl(): any;
32
+ get fullName(): any;
33
+ get id(): any;
34
+ get subjectType(): any;
35
+ get username(): any;
36
+ }
37
+ export interface DataAstroDeploymentsDeploymentsEnvironmentVariables {
38
+ }
39
+ export declare function dataAstroDeploymentsDeploymentsEnvironmentVariablesToTerraform(struct?: DataAstroDeploymentsDeploymentsEnvironmentVariables): any;
40
+ export declare function dataAstroDeploymentsDeploymentsEnvironmentVariablesToHclTerraform(struct?: DataAstroDeploymentsDeploymentsEnvironmentVariables): any;
41
+ export declare class DataAstroDeploymentsDeploymentsEnvironmentVariablesOutputReference extends cdktf.ComplexObject {
42
+ private isEmptyObject;
43
+ /**
44
+ * @param terraformResource The parent resource
45
+ * @param terraformAttribute The attribute on the parent resource this class is referencing
46
+ * @param complexObjectIndex the index of this item in the list
47
+ * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
48
+ */
49
+ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
50
+ get internalValue(): DataAstroDeploymentsDeploymentsEnvironmentVariables | undefined;
51
+ set internalValue(value: DataAstroDeploymentsDeploymentsEnvironmentVariables | undefined);
52
+ get isSecret(): any;
53
+ get key(): any;
54
+ get updatedAt(): any;
55
+ get value(): any;
56
+ }
57
+ export declare class DataAstroDeploymentsDeploymentsEnvironmentVariablesList extends cdktf.ComplexList {
58
+ protected terraformResource: cdktf.IInterpolatingParent;
59
+ protected terraformAttribute: string;
60
+ protected wrapsSet: boolean;
61
+ /**
62
+ * @param terraformResource The parent resource
63
+ * @param terraformAttribute The attribute on the parent resource this class is referencing
64
+ * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
65
+ */
66
+ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
67
+ /**
68
+ * @param index the index of the item to return
69
+ */
70
+ get(index: number): DataAstroDeploymentsDeploymentsEnvironmentVariablesOutputReference;
71
+ }
72
+ export interface DataAstroDeploymentsDeploymentsRemoteExecution {
73
+ }
74
+ export declare function dataAstroDeploymentsDeploymentsRemoteExecutionToTerraform(struct?: DataAstroDeploymentsDeploymentsRemoteExecution): any;
75
+ export declare function dataAstroDeploymentsDeploymentsRemoteExecutionToHclTerraform(struct?: DataAstroDeploymentsDeploymentsRemoteExecution): any;
76
+ export declare class DataAstroDeploymentsDeploymentsRemoteExecutionOutputReference extends cdktf.ComplexObject {
77
+ private isEmptyObject;
78
+ /**
79
+ * @param terraformResource The parent resource
80
+ * @param terraformAttribute The attribute on the parent resource this class is referencing
81
+ */
82
+ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
83
+ get internalValue(): DataAstroDeploymentsDeploymentsRemoteExecution | undefined;
84
+ set internalValue(value: DataAstroDeploymentsDeploymentsRemoteExecution | undefined);
85
+ get allowedIpAddressRanges(): any;
86
+ get enabled(): any;
87
+ get remoteApiUrl(): any;
88
+ get taskLogBucket(): any;
89
+ get taskLogUrlPattern(): any;
90
+ }
91
+ export interface DataAstroDeploymentsDeploymentsScalingSpecHibernationSpecOverride {
92
+ }
93
+ export declare function dataAstroDeploymentsDeploymentsScalingSpecHibernationSpecOverrideToTerraform(struct?: DataAstroDeploymentsDeploymentsScalingSpecHibernationSpecOverride): any;
94
+ export declare function dataAstroDeploymentsDeploymentsScalingSpecHibernationSpecOverrideToHclTerraform(struct?: DataAstroDeploymentsDeploymentsScalingSpecHibernationSpecOverride): any;
95
+ export declare class DataAstroDeploymentsDeploymentsScalingSpecHibernationSpecOverrideOutputReference extends cdktf.ComplexObject {
96
+ private isEmptyObject;
97
+ /**
98
+ * @param terraformResource The parent resource
99
+ * @param terraformAttribute The attribute on the parent resource this class is referencing
100
+ */
101
+ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
102
+ get internalValue(): DataAstroDeploymentsDeploymentsScalingSpecHibernationSpecOverride | undefined;
103
+ set internalValue(value: DataAstroDeploymentsDeploymentsScalingSpecHibernationSpecOverride | undefined);
104
+ get isActive(): any;
105
+ get isHibernating(): any;
106
+ get overrideUntil(): any;
107
+ }
108
+ export interface DataAstroDeploymentsDeploymentsScalingSpecHibernationSpecSchedules {
109
+ }
110
+ export declare function dataAstroDeploymentsDeploymentsScalingSpecHibernationSpecSchedulesToTerraform(struct?: DataAstroDeploymentsDeploymentsScalingSpecHibernationSpecSchedules): any;
111
+ export declare function dataAstroDeploymentsDeploymentsScalingSpecHibernationSpecSchedulesToHclTerraform(struct?: DataAstroDeploymentsDeploymentsScalingSpecHibernationSpecSchedules): any;
112
+ export declare class DataAstroDeploymentsDeploymentsScalingSpecHibernationSpecSchedulesOutputReference extends cdktf.ComplexObject {
113
+ private isEmptyObject;
114
+ /**
115
+ * @param terraformResource The parent resource
116
+ * @param terraformAttribute The attribute on the parent resource this class is referencing
117
+ * @param complexObjectIndex the index of this item in the list
118
+ * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
119
+ */
120
+ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
121
+ get internalValue(): DataAstroDeploymentsDeploymentsScalingSpecHibernationSpecSchedules | undefined;
122
+ set internalValue(value: DataAstroDeploymentsDeploymentsScalingSpecHibernationSpecSchedules | undefined);
123
+ get description(): any;
124
+ get hibernateAtCron(): any;
125
+ get isEnabled(): any;
126
+ get wakeAtCron(): any;
127
+ }
128
+ export declare class DataAstroDeploymentsDeploymentsScalingSpecHibernationSpecSchedulesList extends cdktf.ComplexList {
129
+ protected terraformResource: cdktf.IInterpolatingParent;
130
+ protected terraformAttribute: string;
131
+ protected wrapsSet: boolean;
132
+ /**
133
+ * @param terraformResource The parent resource
134
+ * @param terraformAttribute The attribute on the parent resource this class is referencing
135
+ * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
136
+ */
137
+ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
138
+ /**
139
+ * @param index the index of the item to return
140
+ */
141
+ get(index: number): DataAstroDeploymentsDeploymentsScalingSpecHibernationSpecSchedulesOutputReference;
142
+ }
143
+ export interface DataAstroDeploymentsDeploymentsScalingSpecHibernationSpec {
144
+ }
145
+ export declare function dataAstroDeploymentsDeploymentsScalingSpecHibernationSpecToTerraform(struct?: DataAstroDeploymentsDeploymentsScalingSpecHibernationSpec): any;
146
+ export declare function dataAstroDeploymentsDeploymentsScalingSpecHibernationSpecToHclTerraform(struct?: DataAstroDeploymentsDeploymentsScalingSpecHibernationSpec): any;
147
+ export declare class DataAstroDeploymentsDeploymentsScalingSpecHibernationSpecOutputReference extends cdktf.ComplexObject {
148
+ private isEmptyObject;
149
+ /**
150
+ * @param terraformResource The parent resource
151
+ * @param terraformAttribute The attribute on the parent resource this class is referencing
152
+ */
153
+ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
154
+ get internalValue(): DataAstroDeploymentsDeploymentsScalingSpecHibernationSpec | undefined;
155
+ set internalValue(value: DataAstroDeploymentsDeploymentsScalingSpecHibernationSpec | undefined);
156
+ private _override;
157
+ get override(): DataAstroDeploymentsDeploymentsScalingSpecHibernationSpecOverrideOutputReference;
158
+ private _schedules;
159
+ get schedules(): DataAstroDeploymentsDeploymentsScalingSpecHibernationSpecSchedulesList;
160
+ }
161
+ export interface DataAstroDeploymentsDeploymentsScalingSpec {
162
+ }
163
+ export declare function dataAstroDeploymentsDeploymentsScalingSpecToTerraform(struct?: DataAstroDeploymentsDeploymentsScalingSpec): any;
164
+ export declare function dataAstroDeploymentsDeploymentsScalingSpecToHclTerraform(struct?: DataAstroDeploymentsDeploymentsScalingSpec): any;
165
+ export declare class DataAstroDeploymentsDeploymentsScalingSpecOutputReference extends cdktf.ComplexObject {
166
+ private isEmptyObject;
167
+ /**
168
+ * @param terraformResource The parent resource
169
+ * @param terraformAttribute The attribute on the parent resource this class is referencing
170
+ */
171
+ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
172
+ get internalValue(): DataAstroDeploymentsDeploymentsScalingSpec | undefined;
173
+ set internalValue(value: DataAstroDeploymentsDeploymentsScalingSpec | undefined);
174
+ private _hibernationSpec;
175
+ get hibernationSpec(): DataAstroDeploymentsDeploymentsScalingSpecHibernationSpecOutputReference;
176
+ }
177
+ export interface DataAstroDeploymentsDeploymentsScalingStatusHibernationStatus {
178
+ }
179
+ export declare function dataAstroDeploymentsDeploymentsScalingStatusHibernationStatusToTerraform(struct?: DataAstroDeploymentsDeploymentsScalingStatusHibernationStatus): any;
180
+ export declare function dataAstroDeploymentsDeploymentsScalingStatusHibernationStatusToHclTerraform(struct?: DataAstroDeploymentsDeploymentsScalingStatusHibernationStatus): any;
181
+ export declare class DataAstroDeploymentsDeploymentsScalingStatusHibernationStatusOutputReference extends cdktf.ComplexObject {
182
+ private isEmptyObject;
183
+ /**
184
+ * @param terraformResource The parent resource
185
+ * @param terraformAttribute The attribute on the parent resource this class is referencing
186
+ */
187
+ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
188
+ get internalValue(): DataAstroDeploymentsDeploymentsScalingStatusHibernationStatus | undefined;
189
+ set internalValue(value: DataAstroDeploymentsDeploymentsScalingStatusHibernationStatus | undefined);
190
+ get isHibernating(): any;
191
+ get nextEventAt(): any;
192
+ get nextEventType(): any;
193
+ get reason(): any;
194
+ }
195
+ export interface DataAstroDeploymentsDeploymentsScalingStatus {
196
+ }
197
+ export declare function dataAstroDeploymentsDeploymentsScalingStatusToTerraform(struct?: DataAstroDeploymentsDeploymentsScalingStatus): any;
198
+ export declare function dataAstroDeploymentsDeploymentsScalingStatusToHclTerraform(struct?: DataAstroDeploymentsDeploymentsScalingStatus): any;
199
+ export declare class DataAstroDeploymentsDeploymentsScalingStatusOutputReference extends cdktf.ComplexObject {
200
+ private isEmptyObject;
201
+ /**
202
+ * @param terraformResource The parent resource
203
+ * @param terraformAttribute The attribute on the parent resource this class is referencing
204
+ */
205
+ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
206
+ get internalValue(): DataAstroDeploymentsDeploymentsScalingStatus | undefined;
207
+ set internalValue(value: DataAstroDeploymentsDeploymentsScalingStatus | undefined);
208
+ private _hibernationStatus;
209
+ get hibernationStatus(): DataAstroDeploymentsDeploymentsScalingStatusHibernationStatusOutputReference;
210
+ }
211
+ export interface DataAstroDeploymentsDeploymentsUpdatedBy {
212
+ }
213
+ export declare function dataAstroDeploymentsDeploymentsUpdatedByToTerraform(struct?: DataAstroDeploymentsDeploymentsUpdatedBy): any;
214
+ export declare function dataAstroDeploymentsDeploymentsUpdatedByToHclTerraform(struct?: DataAstroDeploymentsDeploymentsUpdatedBy): any;
215
+ export declare class DataAstroDeploymentsDeploymentsUpdatedByOutputReference extends cdktf.ComplexObject {
216
+ private isEmptyObject;
217
+ /**
218
+ * @param terraformResource The parent resource
219
+ * @param terraformAttribute The attribute on the parent resource this class is referencing
220
+ */
221
+ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
222
+ get internalValue(): DataAstroDeploymentsDeploymentsUpdatedBy | undefined;
223
+ set internalValue(value: DataAstroDeploymentsDeploymentsUpdatedBy | undefined);
224
+ get apiTokenName(): any;
225
+ get avatarUrl(): any;
226
+ get fullName(): any;
227
+ get id(): any;
228
+ get subjectType(): any;
229
+ get username(): any;
230
+ }
231
+ export interface DataAstroDeploymentsDeploymentsWorkerQueues {
232
+ }
233
+ export declare function dataAstroDeploymentsDeploymentsWorkerQueuesToTerraform(struct?: DataAstroDeploymentsDeploymentsWorkerQueues): any;
234
+ export declare function dataAstroDeploymentsDeploymentsWorkerQueuesToHclTerraform(struct?: DataAstroDeploymentsDeploymentsWorkerQueues): any;
235
+ export declare class DataAstroDeploymentsDeploymentsWorkerQueuesOutputReference extends cdktf.ComplexObject {
236
+ private isEmptyObject;
237
+ /**
238
+ * @param terraformResource The parent resource
239
+ * @param terraformAttribute The attribute on the parent resource this class is referencing
240
+ * @param complexObjectIndex the index of this item in the list
241
+ * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
242
+ */
243
+ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
244
+ get internalValue(): DataAstroDeploymentsDeploymentsWorkerQueues | undefined;
245
+ set internalValue(value: DataAstroDeploymentsDeploymentsWorkerQueues | undefined);
246
+ get astroMachine(): any;
247
+ get id(): any;
248
+ get isDefault(): any;
249
+ get maxWorkerCount(): any;
250
+ get minWorkerCount(): any;
251
+ get name(): any;
252
+ get nodePoolId(): any;
253
+ get podCpu(): any;
254
+ get podMemory(): any;
255
+ get workerConcurrency(): any;
256
+ }
257
+ export declare class DataAstroDeploymentsDeploymentsWorkerQueuesList extends cdktf.ComplexList {
258
+ protected terraformResource: cdktf.IInterpolatingParent;
259
+ protected terraformAttribute: string;
260
+ protected wrapsSet: boolean;
261
+ /**
262
+ * @param terraformResource The parent resource
263
+ * @param terraformAttribute The attribute on the parent resource this class is referencing
264
+ * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
265
+ */
266
+ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
267
+ /**
268
+ * @param index the index of the item to return
269
+ */
270
+ get(index: number): DataAstroDeploymentsDeploymentsWorkerQueuesOutputReference;
271
+ }
272
+ export interface DataAstroDeploymentsDeployments {
273
+ /**
274
+ * Deployment identifier
275
+ *
276
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/data-sources/deployments#id DataAstroDeployments#id}
277
+ *
278
+ * Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.
279
+ * If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
280
+ */
281
+ readonly id: string;
282
+ }
283
+ export declare function dataAstroDeploymentsDeploymentsToTerraform(struct?: DataAstroDeploymentsDeployments): any;
284
+ export declare function dataAstroDeploymentsDeploymentsToHclTerraform(struct?: DataAstroDeploymentsDeployments): any;
285
+ export declare class DataAstroDeploymentsDeploymentsOutputReference extends cdktf.ComplexObject {
286
+ private isEmptyObject;
287
+ /**
288
+ * @param terraformResource The parent resource
289
+ * @param terraformAttribute The attribute on the parent resource this class is referencing
290
+ * @param complexObjectIndex the index of this item in the list
291
+ * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
292
+ */
293
+ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
294
+ get internalValue(): DataAstroDeploymentsDeployments | undefined;
295
+ set internalValue(value: DataAstroDeploymentsDeployments | undefined);
296
+ get airflowVersion(): any;
297
+ get astroRuntimeVersion(): any;
298
+ get cloudProvider(): any;
299
+ get clusterId(): any;
300
+ get contactEmails(): any;
301
+ get createdAt(): any;
302
+ private _createdBy;
303
+ get createdBy(): DataAstroDeploymentsDeploymentsCreatedByOutputReference;
304
+ get dagTarballVersion(): any;
305
+ get defaultTaskPodCpu(): any;
306
+ get defaultTaskPodMemory(): any;
307
+ get description(): any;
308
+ get desiredDagTarballVersion(): any;
309
+ private _environmentVariables;
310
+ get environmentVariables(): DataAstroDeploymentsDeploymentsEnvironmentVariablesList;
311
+ get executor(): any;
312
+ get externalIps(): any;
313
+ private _id?;
314
+ get id(): string;
315
+ set id(value: string);
316
+ get idInput(): string;
317
+ get imageRepository(): any;
318
+ get imageTag(): any;
319
+ get imageVersion(): any;
320
+ get isCicdEnforced(): any;
321
+ get isDagDeployEnabled(): any;
322
+ get isDevelopmentMode(): any;
323
+ get isHighAvailability(): any;
324
+ get name(): any;
325
+ get namespace(): any;
326
+ get oidcIssuerUrl(): any;
327
+ get region(): any;
328
+ private _remoteExecution;
329
+ get remoteExecution(): DataAstroDeploymentsDeploymentsRemoteExecutionOutputReference;
330
+ get resourceQuotaCpu(): any;
331
+ get resourceQuotaMemory(): any;
332
+ private _scalingSpec;
333
+ get scalingSpec(): DataAstroDeploymentsDeploymentsScalingSpecOutputReference;
334
+ private _scalingStatus;
335
+ get scalingStatus(): DataAstroDeploymentsDeploymentsScalingStatusOutputReference;
336
+ get schedulerAu(): any;
337
+ get schedulerCpu(): any;
338
+ get schedulerMemory(): any;
339
+ get schedulerReplicas(): any;
340
+ get schedulerSize(): any;
341
+ get status(): any;
342
+ get statusReason(): any;
343
+ get taskPodNodePoolId(): any;
344
+ get type(): any;
345
+ get updatedAt(): any;
346
+ private _updatedBy;
347
+ get updatedBy(): DataAstroDeploymentsDeploymentsUpdatedByOutputReference;
348
+ get webserverAirflowApiUrl(): any;
349
+ get webserverIngressHostname(): any;
350
+ get webserverUrl(): any;
351
+ private _workerQueues;
352
+ get workerQueues(): DataAstroDeploymentsDeploymentsWorkerQueuesList;
353
+ get workloadIdentity(): any;
354
+ get workspaceId(): any;
355
+ }
356
+ export declare class DataAstroDeploymentsDeploymentsList extends cdktf.ComplexList {
357
+ protected terraformResource: cdktf.IInterpolatingParent;
358
+ protected terraformAttribute: string;
359
+ protected wrapsSet: boolean;
360
+ internalValue?: DataAstroDeploymentsDeployments[] | cdktf.IResolvable;
361
+ /**
362
+ * @param terraformResource The parent resource
363
+ * @param terraformAttribute The attribute on the parent resource this class is referencing
364
+ * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
365
+ */
366
+ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
367
+ /**
368
+ * @param index the index of the item to return
369
+ */
370
+ get(index: number): DataAstroDeploymentsDeploymentsOutputReference;
371
+ }
372
+ /**
373
+ * Represents a {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/data-sources/deployments astro_deployments}
374
+ */
375
+ export declare class DataAstroDeployments extends cdktf.TerraformDataSource {
376
+ static readonly tfResourceType = "astro_deployments";
377
+ /**
378
+ * Generates CDKTF code for importing a DataAstroDeployments resource upon running "cdktf plan <stack-name>"
379
+ * @param scope The scope in which to define this construct
380
+ * @param importToId The construct id used in the generated config for the DataAstroDeployments to import
381
+ * @param importFromId The id of the existing DataAstroDeployments that should be imported. Refer to the {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/data-sources/deployments#import import section} in the documentation of this resource for the id to use
382
+ * @param provider? Optional instance of the provider where the DataAstroDeployments to import is found
383
+ */
384
+ static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any;
385
+ /**
386
+ * Create a new {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/data-sources/deployments astro_deployments} Data Source
387
+ *
388
+ * @param scope The scope in which to define this construct
389
+ * @param id The scoped construct ID. Must be unique amongst siblings in the same scope
390
+ * @param options DataAstroDeploymentsConfig = {}
391
+ */
392
+ constructor(scope: Construct, id: string, config?: DataAstroDeploymentsConfig);
393
+ private _deploymentIds?;
394
+ get deploymentIds(): string[];
395
+ set deploymentIds(value: string[]);
396
+ resetDeploymentIds(): void;
397
+ get deploymentIdsInput(): string[];
398
+ private _deployments;
399
+ get deployments(): DataAstroDeploymentsDeploymentsList;
400
+ private _names?;
401
+ get names(): string[];
402
+ set names(value: string[]);
403
+ resetNames(): void;
404
+ get namesInput(): string[];
405
+ private _workspaceIds?;
406
+ get workspaceIds(): string[];
407
+ set workspaceIds(value: string[]);
408
+ resetWorkspaceIds(): void;
409
+ get workspaceIdsInput(): string[];
410
+ protected synthesizeAttributes(): {
411
+ [name: string]: any;
412
+ };
413
+ protected synthesizeHclAttributes(): {
414
+ [name: string]: any;
415
+ };
416
+ }