@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,475 @@
1
+ import { Construct } from 'constructs';
2
+ import * as cdktf from 'cdktf';
3
+ export interface DataAstroDeploymentOptionsConfig extends cdktf.TerraformMetaArguments {
4
+ /**
5
+ * Cloud provider
6
+ *
7
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/data-sources/deployment_options#cloud_provider DataAstroDeploymentOptions#cloud_provider}
8
+ */
9
+ readonly cloudProvider?: string;
10
+ /**
11
+ * Deployment ID
12
+ *
13
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/data-sources/deployment_options#deployment_id DataAstroDeploymentOptions#deployment_id}
14
+ */
15
+ readonly deploymentId?: string;
16
+ /**
17
+ * Deployment type
18
+ *
19
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/data-sources/deployment_options#deployment_type DataAstroDeploymentOptions#deployment_type}
20
+ */
21
+ readonly deploymentType?: string;
22
+ /**
23
+ * Executor. Valid values: CELERY, KUBERNETES, ASTRO.
24
+ *
25
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/data-sources/deployment_options#executor DataAstroDeploymentOptions#executor}
26
+ */
27
+ readonly executor?: string;
28
+ }
29
+ export interface DataAstroDeploymentOptionsResourceQuotasDefaultPodSizeCpu {
30
+ }
31
+ export declare function dataAstroDeploymentOptionsResourceQuotasDefaultPodSizeCpuToTerraform(struct?: DataAstroDeploymentOptionsResourceQuotasDefaultPodSizeCpu): any;
32
+ export declare function dataAstroDeploymentOptionsResourceQuotasDefaultPodSizeCpuToHclTerraform(struct?: DataAstroDeploymentOptionsResourceQuotasDefaultPodSizeCpu): any;
33
+ export declare class DataAstroDeploymentOptionsResourceQuotasDefaultPodSizeCpuOutputReference extends cdktf.ComplexObject {
34
+ private isEmptyObject;
35
+ /**
36
+ * @param terraformResource The parent resource
37
+ * @param terraformAttribute The attribute on the parent resource this class is referencing
38
+ */
39
+ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
40
+ get internalValue(): DataAstroDeploymentOptionsResourceQuotasDefaultPodSizeCpu | undefined;
41
+ set internalValue(value: DataAstroDeploymentOptionsResourceQuotasDefaultPodSizeCpu | undefined);
42
+ get ceiling(): any;
43
+ get default(): any;
44
+ get floor(): any;
45
+ }
46
+ export interface DataAstroDeploymentOptionsResourceQuotasDefaultPodSizeMemory {
47
+ }
48
+ export declare function dataAstroDeploymentOptionsResourceQuotasDefaultPodSizeMemoryToTerraform(struct?: DataAstroDeploymentOptionsResourceQuotasDefaultPodSizeMemory): any;
49
+ export declare function dataAstroDeploymentOptionsResourceQuotasDefaultPodSizeMemoryToHclTerraform(struct?: DataAstroDeploymentOptionsResourceQuotasDefaultPodSizeMemory): any;
50
+ export declare class DataAstroDeploymentOptionsResourceQuotasDefaultPodSizeMemoryOutputReference extends cdktf.ComplexObject {
51
+ private isEmptyObject;
52
+ /**
53
+ * @param terraformResource The parent resource
54
+ * @param terraformAttribute The attribute on the parent resource this class is referencing
55
+ */
56
+ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
57
+ get internalValue(): DataAstroDeploymentOptionsResourceQuotasDefaultPodSizeMemory | undefined;
58
+ set internalValue(value: DataAstroDeploymentOptionsResourceQuotasDefaultPodSizeMemory | undefined);
59
+ get ceiling(): any;
60
+ get default(): any;
61
+ get floor(): any;
62
+ }
63
+ export interface DataAstroDeploymentOptionsResourceQuotasDefaultPodSize {
64
+ }
65
+ export declare function dataAstroDeploymentOptionsResourceQuotasDefaultPodSizeToTerraform(struct?: DataAstroDeploymentOptionsResourceQuotasDefaultPodSize): any;
66
+ export declare function dataAstroDeploymentOptionsResourceQuotasDefaultPodSizeToHclTerraform(struct?: DataAstroDeploymentOptionsResourceQuotasDefaultPodSize): any;
67
+ export declare class DataAstroDeploymentOptionsResourceQuotasDefaultPodSizeOutputReference extends cdktf.ComplexObject {
68
+ private isEmptyObject;
69
+ /**
70
+ * @param terraformResource The parent resource
71
+ * @param terraformAttribute The attribute on the parent resource this class is referencing
72
+ */
73
+ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
74
+ get internalValue(): DataAstroDeploymentOptionsResourceQuotasDefaultPodSize | undefined;
75
+ set internalValue(value: DataAstroDeploymentOptionsResourceQuotasDefaultPodSize | undefined);
76
+ private _cpu;
77
+ get cpu(): DataAstroDeploymentOptionsResourceQuotasDefaultPodSizeCpuOutputReference;
78
+ private _memory;
79
+ get memory(): DataAstroDeploymentOptionsResourceQuotasDefaultPodSizeMemoryOutputReference;
80
+ }
81
+ export interface DataAstroDeploymentOptionsResourceQuotasResourceQuotaCpu {
82
+ }
83
+ export declare function dataAstroDeploymentOptionsResourceQuotasResourceQuotaCpuToTerraform(struct?: DataAstroDeploymentOptionsResourceQuotasResourceQuotaCpu): any;
84
+ export declare function dataAstroDeploymentOptionsResourceQuotasResourceQuotaCpuToHclTerraform(struct?: DataAstroDeploymentOptionsResourceQuotasResourceQuotaCpu): any;
85
+ export declare class DataAstroDeploymentOptionsResourceQuotasResourceQuotaCpuOutputReference extends cdktf.ComplexObject {
86
+ private isEmptyObject;
87
+ /**
88
+ * @param terraformResource The parent resource
89
+ * @param terraformAttribute The attribute on the parent resource this class is referencing
90
+ */
91
+ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
92
+ get internalValue(): DataAstroDeploymentOptionsResourceQuotasResourceQuotaCpu | undefined;
93
+ set internalValue(value: DataAstroDeploymentOptionsResourceQuotasResourceQuotaCpu | undefined);
94
+ get ceiling(): any;
95
+ get default(): any;
96
+ get floor(): any;
97
+ }
98
+ export interface DataAstroDeploymentOptionsResourceQuotasResourceQuotaMemory {
99
+ }
100
+ export declare function dataAstroDeploymentOptionsResourceQuotasResourceQuotaMemoryToTerraform(struct?: DataAstroDeploymentOptionsResourceQuotasResourceQuotaMemory): any;
101
+ export declare function dataAstroDeploymentOptionsResourceQuotasResourceQuotaMemoryToHclTerraform(struct?: DataAstroDeploymentOptionsResourceQuotasResourceQuotaMemory): any;
102
+ export declare class DataAstroDeploymentOptionsResourceQuotasResourceQuotaMemoryOutputReference extends cdktf.ComplexObject {
103
+ private isEmptyObject;
104
+ /**
105
+ * @param terraformResource The parent resource
106
+ * @param terraformAttribute The attribute on the parent resource this class is referencing
107
+ */
108
+ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
109
+ get internalValue(): DataAstroDeploymentOptionsResourceQuotasResourceQuotaMemory | undefined;
110
+ set internalValue(value: DataAstroDeploymentOptionsResourceQuotasResourceQuotaMemory | undefined);
111
+ get ceiling(): any;
112
+ get default(): any;
113
+ get floor(): any;
114
+ }
115
+ export interface DataAstroDeploymentOptionsResourceQuotasResourceQuota {
116
+ }
117
+ export declare function dataAstroDeploymentOptionsResourceQuotasResourceQuotaToTerraform(struct?: DataAstroDeploymentOptionsResourceQuotasResourceQuota): any;
118
+ export declare function dataAstroDeploymentOptionsResourceQuotasResourceQuotaToHclTerraform(struct?: DataAstroDeploymentOptionsResourceQuotasResourceQuota): any;
119
+ export declare class DataAstroDeploymentOptionsResourceQuotasResourceQuotaOutputReference extends cdktf.ComplexObject {
120
+ private isEmptyObject;
121
+ /**
122
+ * @param terraformResource The parent resource
123
+ * @param terraformAttribute The attribute on the parent resource this class is referencing
124
+ */
125
+ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
126
+ get internalValue(): DataAstroDeploymentOptionsResourceQuotasResourceQuota | undefined;
127
+ set internalValue(value: DataAstroDeploymentOptionsResourceQuotasResourceQuota | undefined);
128
+ private _cpu;
129
+ get cpu(): DataAstroDeploymentOptionsResourceQuotasResourceQuotaCpuOutputReference;
130
+ private _memory;
131
+ get memory(): DataAstroDeploymentOptionsResourceQuotasResourceQuotaMemoryOutputReference;
132
+ }
133
+ export interface DataAstroDeploymentOptionsResourceQuotas {
134
+ }
135
+ export declare function dataAstroDeploymentOptionsResourceQuotasToTerraform(struct?: DataAstroDeploymentOptionsResourceQuotas): any;
136
+ export declare function dataAstroDeploymentOptionsResourceQuotasToHclTerraform(struct?: DataAstroDeploymentOptionsResourceQuotas): any;
137
+ export declare class DataAstroDeploymentOptionsResourceQuotasOutputReference extends cdktf.ComplexObject {
138
+ private isEmptyObject;
139
+ /**
140
+ * @param terraformResource The parent resource
141
+ * @param terraformAttribute The attribute on the parent resource this class is referencing
142
+ */
143
+ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
144
+ get internalValue(): DataAstroDeploymentOptionsResourceQuotas | undefined;
145
+ set internalValue(value: DataAstroDeploymentOptionsResourceQuotas | undefined);
146
+ private _defaultPodSize;
147
+ get defaultPodSize(): DataAstroDeploymentOptionsResourceQuotasDefaultPodSizeOutputReference;
148
+ private _resourceQuota;
149
+ get resourceQuota(): DataAstroDeploymentOptionsResourceQuotasResourceQuotaOutputReference;
150
+ }
151
+ export interface DataAstroDeploymentOptionsRuntimeReleases {
152
+ }
153
+ export declare function dataAstroDeploymentOptionsRuntimeReleasesToTerraform(struct?: DataAstroDeploymentOptionsRuntimeReleases): any;
154
+ export declare function dataAstroDeploymentOptionsRuntimeReleasesToHclTerraform(struct?: DataAstroDeploymentOptionsRuntimeReleases): any;
155
+ export declare class DataAstroDeploymentOptionsRuntimeReleasesOutputReference extends cdktf.ComplexObject {
156
+ private isEmptyObject;
157
+ /**
158
+ * @param terraformResource The parent resource
159
+ * @param terraformAttribute The attribute on the parent resource this class is referencing
160
+ * @param complexObjectIndex the index of this item in the list
161
+ * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
162
+ */
163
+ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
164
+ get internalValue(): DataAstroDeploymentOptionsRuntimeReleases | undefined;
165
+ set internalValue(value: DataAstroDeploymentOptionsRuntimeReleases | undefined);
166
+ get airflowDatabaseMigration(): any;
167
+ get airflowVersion(): any;
168
+ get channel(): any;
169
+ get releaseDate(): any;
170
+ get stellarDatabaseMigration(): any;
171
+ get version(): any;
172
+ }
173
+ export declare class DataAstroDeploymentOptionsRuntimeReleasesList extends cdktf.ComplexList {
174
+ protected terraformResource: cdktf.IInterpolatingParent;
175
+ protected terraformAttribute: string;
176
+ protected wrapsSet: boolean;
177
+ /**
178
+ * @param terraformResource The parent resource
179
+ * @param terraformAttribute The attribute on the parent resource this class is referencing
180
+ * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
181
+ */
182
+ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
183
+ /**
184
+ * @param index the index of the item to return
185
+ */
186
+ get(index: number): DataAstroDeploymentOptionsRuntimeReleasesOutputReference;
187
+ }
188
+ export interface DataAstroDeploymentOptionsSchedulerMachinesSpec {
189
+ }
190
+ export declare function dataAstroDeploymentOptionsSchedulerMachinesSpecToTerraform(struct?: DataAstroDeploymentOptionsSchedulerMachinesSpec): any;
191
+ export declare function dataAstroDeploymentOptionsSchedulerMachinesSpecToHclTerraform(struct?: DataAstroDeploymentOptionsSchedulerMachinesSpec): any;
192
+ export declare class DataAstroDeploymentOptionsSchedulerMachinesSpecOutputReference extends cdktf.ComplexObject {
193
+ private isEmptyObject;
194
+ /**
195
+ * @param terraformResource The parent resource
196
+ * @param terraformAttribute The attribute on the parent resource this class is referencing
197
+ */
198
+ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
199
+ get internalValue(): DataAstroDeploymentOptionsSchedulerMachinesSpec | undefined;
200
+ set internalValue(value: DataAstroDeploymentOptionsSchedulerMachinesSpec | undefined);
201
+ get concurrency(): any;
202
+ get cpu(): any;
203
+ get ephemeralStorage(): any;
204
+ get memory(): any;
205
+ }
206
+ export interface DataAstroDeploymentOptionsSchedulerMachines {
207
+ }
208
+ export declare function dataAstroDeploymentOptionsSchedulerMachinesToTerraform(struct?: DataAstroDeploymentOptionsSchedulerMachines): any;
209
+ export declare function dataAstroDeploymentOptionsSchedulerMachinesToHclTerraform(struct?: DataAstroDeploymentOptionsSchedulerMachines): any;
210
+ export declare class DataAstroDeploymentOptionsSchedulerMachinesOutputReference extends cdktf.ComplexObject {
211
+ private isEmptyObject;
212
+ /**
213
+ * @param terraformResource The parent resource
214
+ * @param terraformAttribute The attribute on the parent resource this class is referencing
215
+ * @param complexObjectIndex the index of this item in the list
216
+ * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
217
+ */
218
+ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
219
+ get internalValue(): DataAstroDeploymentOptionsSchedulerMachines | undefined;
220
+ set internalValue(value: DataAstroDeploymentOptionsSchedulerMachines | undefined);
221
+ get name(): any;
222
+ private _spec;
223
+ get spec(): DataAstroDeploymentOptionsSchedulerMachinesSpecOutputReference;
224
+ }
225
+ export declare class DataAstroDeploymentOptionsSchedulerMachinesList extends cdktf.ComplexList {
226
+ protected terraformResource: cdktf.IInterpolatingParent;
227
+ protected terraformAttribute: string;
228
+ protected wrapsSet: boolean;
229
+ /**
230
+ * @param terraformResource The parent resource
231
+ * @param terraformAttribute The attribute on the parent resource this class is referencing
232
+ * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
233
+ */
234
+ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
235
+ /**
236
+ * @param index the index of the item to return
237
+ */
238
+ get(index: number): DataAstroDeploymentOptionsSchedulerMachinesOutputReference;
239
+ }
240
+ export interface DataAstroDeploymentOptionsWorkerMachinesConcurrency {
241
+ }
242
+ export declare function dataAstroDeploymentOptionsWorkerMachinesConcurrencyToTerraform(struct?: DataAstroDeploymentOptionsWorkerMachinesConcurrency): any;
243
+ export declare function dataAstroDeploymentOptionsWorkerMachinesConcurrencyToHclTerraform(struct?: DataAstroDeploymentOptionsWorkerMachinesConcurrency): any;
244
+ export declare class DataAstroDeploymentOptionsWorkerMachinesConcurrencyOutputReference extends cdktf.ComplexObject {
245
+ private isEmptyObject;
246
+ /**
247
+ * @param terraformResource The parent resource
248
+ * @param terraformAttribute The attribute on the parent resource this class is referencing
249
+ */
250
+ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
251
+ get internalValue(): DataAstroDeploymentOptionsWorkerMachinesConcurrency | undefined;
252
+ set internalValue(value: DataAstroDeploymentOptionsWorkerMachinesConcurrency | undefined);
253
+ get ceiling(): any;
254
+ get default(): any;
255
+ get floor(): any;
256
+ }
257
+ export interface DataAstroDeploymentOptionsWorkerMachinesSpec {
258
+ }
259
+ export declare function dataAstroDeploymentOptionsWorkerMachinesSpecToTerraform(struct?: DataAstroDeploymentOptionsWorkerMachinesSpec): any;
260
+ export declare function dataAstroDeploymentOptionsWorkerMachinesSpecToHclTerraform(struct?: DataAstroDeploymentOptionsWorkerMachinesSpec): any;
261
+ export declare class DataAstroDeploymentOptionsWorkerMachinesSpecOutputReference extends cdktf.ComplexObject {
262
+ private isEmptyObject;
263
+ /**
264
+ * @param terraformResource The parent resource
265
+ * @param terraformAttribute The attribute on the parent resource this class is referencing
266
+ */
267
+ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
268
+ get internalValue(): DataAstroDeploymentOptionsWorkerMachinesSpec | undefined;
269
+ set internalValue(value: DataAstroDeploymentOptionsWorkerMachinesSpec | undefined);
270
+ get concurrency(): any;
271
+ get cpu(): any;
272
+ get ephemeralStorage(): any;
273
+ get memory(): any;
274
+ }
275
+ export interface DataAstroDeploymentOptionsWorkerMachines {
276
+ }
277
+ export declare function dataAstroDeploymentOptionsWorkerMachinesToTerraform(struct?: DataAstroDeploymentOptionsWorkerMachines): any;
278
+ export declare function dataAstroDeploymentOptionsWorkerMachinesToHclTerraform(struct?: DataAstroDeploymentOptionsWorkerMachines): any;
279
+ export declare class DataAstroDeploymentOptionsWorkerMachinesOutputReference extends cdktf.ComplexObject {
280
+ private isEmptyObject;
281
+ /**
282
+ * @param terraformResource The parent resource
283
+ * @param terraformAttribute The attribute on the parent resource this class is referencing
284
+ * @param complexObjectIndex the index of this item in the list
285
+ * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
286
+ */
287
+ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
288
+ get internalValue(): DataAstroDeploymentOptionsWorkerMachines | undefined;
289
+ set internalValue(value: DataAstroDeploymentOptionsWorkerMachines | undefined);
290
+ private _concurrency;
291
+ get concurrency(): DataAstroDeploymentOptionsWorkerMachinesConcurrencyOutputReference;
292
+ get name(): any;
293
+ private _spec;
294
+ get spec(): DataAstroDeploymentOptionsWorkerMachinesSpecOutputReference;
295
+ }
296
+ export declare class DataAstroDeploymentOptionsWorkerMachinesList extends cdktf.ComplexList {
297
+ protected terraformResource: cdktf.IInterpolatingParent;
298
+ protected terraformAttribute: string;
299
+ protected wrapsSet: boolean;
300
+ /**
301
+ * @param terraformResource The parent resource
302
+ * @param terraformAttribute The attribute on the parent resource this class is referencing
303
+ * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
304
+ */
305
+ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
306
+ /**
307
+ * @param index the index of the item to return
308
+ */
309
+ get(index: number): DataAstroDeploymentOptionsWorkerMachinesOutputReference;
310
+ }
311
+ export interface DataAstroDeploymentOptionsWorkerQueuesMaxWorkers {
312
+ }
313
+ export declare function dataAstroDeploymentOptionsWorkerQueuesMaxWorkersToTerraform(struct?: DataAstroDeploymentOptionsWorkerQueuesMaxWorkers): any;
314
+ export declare function dataAstroDeploymentOptionsWorkerQueuesMaxWorkersToHclTerraform(struct?: DataAstroDeploymentOptionsWorkerQueuesMaxWorkers): any;
315
+ export declare class DataAstroDeploymentOptionsWorkerQueuesMaxWorkersOutputReference extends cdktf.ComplexObject {
316
+ private isEmptyObject;
317
+ /**
318
+ * @param terraformResource The parent resource
319
+ * @param terraformAttribute The attribute on the parent resource this class is referencing
320
+ */
321
+ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
322
+ get internalValue(): DataAstroDeploymentOptionsWorkerQueuesMaxWorkers | undefined;
323
+ set internalValue(value: DataAstroDeploymentOptionsWorkerQueuesMaxWorkers | undefined);
324
+ get ceiling(): any;
325
+ get default(): any;
326
+ get floor(): any;
327
+ }
328
+ export interface DataAstroDeploymentOptionsWorkerQueuesMinWorkers {
329
+ }
330
+ export declare function dataAstroDeploymentOptionsWorkerQueuesMinWorkersToTerraform(struct?: DataAstroDeploymentOptionsWorkerQueuesMinWorkers): any;
331
+ export declare function dataAstroDeploymentOptionsWorkerQueuesMinWorkersToHclTerraform(struct?: DataAstroDeploymentOptionsWorkerQueuesMinWorkers): any;
332
+ export declare class DataAstroDeploymentOptionsWorkerQueuesMinWorkersOutputReference extends cdktf.ComplexObject {
333
+ private isEmptyObject;
334
+ /**
335
+ * @param terraformResource The parent resource
336
+ * @param terraformAttribute The attribute on the parent resource this class is referencing
337
+ */
338
+ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
339
+ get internalValue(): DataAstroDeploymentOptionsWorkerQueuesMinWorkers | undefined;
340
+ set internalValue(value: DataAstroDeploymentOptionsWorkerQueuesMinWorkers | undefined);
341
+ get ceiling(): any;
342
+ get default(): any;
343
+ get floor(): any;
344
+ }
345
+ export interface DataAstroDeploymentOptionsWorkerQueuesWorkerConcurrency {
346
+ }
347
+ export declare function dataAstroDeploymentOptionsWorkerQueuesWorkerConcurrencyToTerraform(struct?: DataAstroDeploymentOptionsWorkerQueuesWorkerConcurrency): any;
348
+ export declare function dataAstroDeploymentOptionsWorkerQueuesWorkerConcurrencyToHclTerraform(struct?: DataAstroDeploymentOptionsWorkerQueuesWorkerConcurrency): any;
349
+ export declare class DataAstroDeploymentOptionsWorkerQueuesWorkerConcurrencyOutputReference extends cdktf.ComplexObject {
350
+ private isEmptyObject;
351
+ /**
352
+ * @param terraformResource The parent resource
353
+ * @param terraformAttribute The attribute on the parent resource this class is referencing
354
+ */
355
+ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
356
+ get internalValue(): DataAstroDeploymentOptionsWorkerQueuesWorkerConcurrency | undefined;
357
+ set internalValue(value: DataAstroDeploymentOptionsWorkerQueuesWorkerConcurrency | undefined);
358
+ get ceiling(): any;
359
+ get default(): any;
360
+ get floor(): any;
361
+ }
362
+ export interface DataAstroDeploymentOptionsWorkerQueues {
363
+ }
364
+ export declare function dataAstroDeploymentOptionsWorkerQueuesToTerraform(struct?: DataAstroDeploymentOptionsWorkerQueues): any;
365
+ export declare function dataAstroDeploymentOptionsWorkerQueuesToHclTerraform(struct?: DataAstroDeploymentOptionsWorkerQueues): any;
366
+ export declare class DataAstroDeploymentOptionsWorkerQueuesOutputReference extends cdktf.ComplexObject {
367
+ private isEmptyObject;
368
+ /**
369
+ * @param terraformResource The parent resource
370
+ * @param terraformAttribute The attribute on the parent resource this class is referencing
371
+ */
372
+ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
373
+ get internalValue(): DataAstroDeploymentOptionsWorkerQueues | undefined;
374
+ set internalValue(value: DataAstroDeploymentOptionsWorkerQueues | undefined);
375
+ private _maxWorkers;
376
+ get maxWorkers(): DataAstroDeploymentOptionsWorkerQueuesMaxWorkersOutputReference;
377
+ private _minWorkers;
378
+ get minWorkers(): DataAstroDeploymentOptionsWorkerQueuesMinWorkersOutputReference;
379
+ private _workerConcurrency;
380
+ get workerConcurrency(): DataAstroDeploymentOptionsWorkerQueuesWorkerConcurrencyOutputReference;
381
+ }
382
+ export interface DataAstroDeploymentOptionsWorkloadIdentityOptions {
383
+ }
384
+ export declare function dataAstroDeploymentOptionsWorkloadIdentityOptionsToTerraform(struct?: DataAstroDeploymentOptionsWorkloadIdentityOptions): any;
385
+ export declare function dataAstroDeploymentOptionsWorkloadIdentityOptionsToHclTerraform(struct?: DataAstroDeploymentOptionsWorkloadIdentityOptions): any;
386
+ export declare class DataAstroDeploymentOptionsWorkloadIdentityOptionsOutputReference extends cdktf.ComplexObject {
387
+ private isEmptyObject;
388
+ /**
389
+ * @param terraformResource The parent resource
390
+ * @param terraformAttribute The attribute on the parent resource this class is referencing
391
+ * @param complexObjectIndex the index of this item in the list
392
+ * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
393
+ */
394
+ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
395
+ get internalValue(): DataAstroDeploymentOptionsWorkloadIdentityOptions | undefined;
396
+ set internalValue(value: DataAstroDeploymentOptionsWorkloadIdentityOptions | undefined);
397
+ get label(): any;
398
+ get role(): any;
399
+ }
400
+ export declare class DataAstroDeploymentOptionsWorkloadIdentityOptionsList extends cdktf.ComplexList {
401
+ protected terraformResource: cdktf.IInterpolatingParent;
402
+ protected terraformAttribute: string;
403
+ protected wrapsSet: boolean;
404
+ /**
405
+ * @param terraformResource The parent resource
406
+ * @param terraformAttribute The attribute on the parent resource this class is referencing
407
+ * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
408
+ */
409
+ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
410
+ /**
411
+ * @param index the index of the item to return
412
+ */
413
+ get(index: number): DataAstroDeploymentOptionsWorkloadIdentityOptionsOutputReference;
414
+ }
415
+ /**
416
+ * Represents a {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/data-sources/deployment_options astro_deployment_options}
417
+ */
418
+ export declare class DataAstroDeploymentOptions extends cdktf.TerraformDataSource {
419
+ static readonly tfResourceType = "astro_deployment_options";
420
+ /**
421
+ * Generates CDKTF code for importing a DataAstroDeploymentOptions resource upon running "cdktf plan <stack-name>"
422
+ * @param scope The scope in which to define this construct
423
+ * @param importToId The construct id used in the generated config for the DataAstroDeploymentOptions to import
424
+ * @param importFromId The id of the existing DataAstroDeploymentOptions that should be imported. Refer to the {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/data-sources/deployment_options#import import section} in the documentation of this resource for the id to use
425
+ * @param provider? Optional instance of the provider where the DataAstroDeploymentOptions to import is found
426
+ */
427
+ static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any;
428
+ /**
429
+ * Create a new {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/data-sources/deployment_options astro_deployment_options} Data Source
430
+ *
431
+ * @param scope The scope in which to define this construct
432
+ * @param id The scoped construct ID. Must be unique amongst siblings in the same scope
433
+ * @param options DataAstroDeploymentOptionsConfig = {}
434
+ */
435
+ constructor(scope: Construct, id: string, config?: DataAstroDeploymentOptionsConfig);
436
+ private _cloudProvider?;
437
+ get cloudProvider(): string;
438
+ set cloudProvider(value: string);
439
+ resetCloudProvider(): void;
440
+ get cloudProviderInput(): string;
441
+ private _deploymentId?;
442
+ get deploymentId(): string;
443
+ set deploymentId(value: string);
444
+ resetDeploymentId(): void;
445
+ get deploymentIdInput(): string;
446
+ private _deploymentType?;
447
+ get deploymentType(): string;
448
+ set deploymentType(value: string);
449
+ resetDeploymentType(): void;
450
+ get deploymentTypeInput(): string;
451
+ private _executor?;
452
+ get executor(): string;
453
+ set executor(value: string);
454
+ resetExecutor(): void;
455
+ get executorInput(): string;
456
+ get executors(): any;
457
+ private _resourceQuotas;
458
+ get resourceQuotas(): DataAstroDeploymentOptionsResourceQuotasOutputReference;
459
+ private _runtimeReleases;
460
+ get runtimeReleases(): DataAstroDeploymentOptionsRuntimeReleasesList;
461
+ private _schedulerMachines;
462
+ get schedulerMachines(): DataAstroDeploymentOptionsSchedulerMachinesList;
463
+ private _workerMachines;
464
+ get workerMachines(): DataAstroDeploymentOptionsWorkerMachinesList;
465
+ private _workerQueues;
466
+ get workerQueues(): DataAstroDeploymentOptionsWorkerQueuesOutputReference;
467
+ private _workloadIdentityOptions;
468
+ get workloadIdentityOptions(): DataAstroDeploymentOptionsWorkloadIdentityOptionsList;
469
+ protected synthesizeAttributes(): {
470
+ [name: string]: any;
471
+ };
472
+ protected synthesizeHclAttributes(): {
473
+ [name: string]: any;
474
+ };
475
+ }