@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.
- package/LICENSE +355 -0
- package/README.md +19 -0
- package/dist/alert/index.d.ts +566 -0
- package/dist/alert/index.js +1489 -0
- package/dist/api-token/index.d.ts +199 -0
- package/dist/api-token/index.js +503 -0
- package/dist/cluster/index.d.ts +305 -0
- package/dist/cluster/index.js +755 -0
- package/dist/data-astro-alert/index.d.ts +277 -0
- package/dist/data-astro-alert/index.js +762 -0
- package/dist/data-astro-alerts/index.d.ts +232 -0
- package/dist/data-astro-alerts/index.js +600 -0
- package/dist/data-astro-api-token/index.d.ts +135 -0
- package/dist/data-astro-api-token/index.js +353 -0
- package/dist/data-astro-api-tokens/index.d.ts +196 -0
- package/dist/data-astro-api-tokens/index.js +502 -0
- package/dist/data-astro-cluster/index.d.ts +211 -0
- package/dist/data-astro-cluster/index.js +535 -0
- package/dist/data-astro-cluster-options/index.d.ts +255 -0
- package/dist/data-astro-cluster-options/index.js +640 -0
- package/dist/data-astro-clusters/index.d.ts +263 -0
- package/dist/data-astro-clusters/index.js +661 -0
- package/dist/data-astro-deployment/index.d.ts +355 -0
- package/dist/data-astro-deployment/index.js +1009 -0
- package/dist/data-astro-deployment-options/index.d.ts +475 -0
- package/dist/data-astro-deployment-options/index.js +1274 -0
- package/dist/data-astro-deployments/index.d.ts +416 -0
- package/dist/data-astro-deployments/index.js +1158 -0
- package/dist/data-astro-notification-channel/index.d.ts +122 -0
- package/dist/data-astro-notification-channel/index.js +345 -0
- package/dist/data-astro-notification-channels/index.d.ts +201 -0
- package/dist/data-astro-notification-channels/index.js +540 -0
- package/dist/data-astro-organization/index.d.ts +87 -0
- package/dist/data-astro-organization/index.js +251 -0
- package/dist/data-astro-team/index.d.ts +204 -0
- package/dist/data-astro-team/index.js +507 -0
- package/dist/data-astro-teams/index.d.ts +247 -0
- package/dist/data-astro-teams/index.js +610 -0
- package/dist/data-astro-user/index.d.ts +122 -0
- package/dist/data-astro-user/index.js +274 -0
- package/dist/data-astro-users/index.d.ts +174 -0
- package/dist/data-astro-users/index.js +400 -0
- package/dist/data-astro-workspace/index.d.ts +94 -0
- package/dist/data-astro-workspace/index.js +250 -0
- package/dist/data-astro-workspaces/index.d.ts +146 -0
- package/dist/data-astro-workspaces/index.js +376 -0
- package/dist/deployment/index.d.ts +813 -0
- package/dist/deployment/index.js +2083 -0
- package/dist/hybrid-cluster-workspace-authorization/index.d.ts +53 -0
- package/dist/hybrid-cluster-workspace-authorization/index.js +111 -0
- package/dist/index.d.ts +31 -0
- package/dist/index.js +32 -0
- package/dist/lazy-index.d.ts +0 -0
- package/dist/lazy-index.js +32 -0
- package/dist/notification-channel/index.d.ts +235 -0
- package/dist/notification-channel/index.js +608 -0
- package/dist/provider/index.d.ts +75 -0
- package/dist/provider/index.js +151 -0
- package/dist/team/index.d.ts +251 -0
- package/dist/team/index.js +622 -0
- package/dist/team-roles/index.d.ts +180 -0
- package/dist/team-roles/index.js +414 -0
- package/dist/user-invite/index.d.ts +99 -0
- package/dist/user-invite/index.js +262 -0
- package/dist/user-roles/index.d.ts +180 -0
- package/dist/user-roles/index.js +414 -0
- package/dist/workspace/index.d.ts +109 -0
- package/dist/workspace/index.js +282 -0
- package/package.json +51 -0
|
@@ -0,0 +1,355 @@
|
|
|
1
|
+
import { Construct } from 'constructs';
|
|
2
|
+
import * as cdktf from 'cdktf';
|
|
3
|
+
export interface DataAstroDeploymentConfig extends cdktf.TerraformMetaArguments {
|
|
4
|
+
/**
|
|
5
|
+
* Deployment identifier
|
|
6
|
+
*
|
|
7
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/data-sources/deployment#id DataAstroDeployment#id}
|
|
8
|
+
*
|
|
9
|
+
* Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.
|
|
10
|
+
* 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.
|
|
11
|
+
*/
|
|
12
|
+
readonly id: string;
|
|
13
|
+
}
|
|
14
|
+
export interface DataAstroDeploymentCreatedBy {
|
|
15
|
+
}
|
|
16
|
+
export declare function dataAstroDeploymentCreatedByToTerraform(struct?: DataAstroDeploymentCreatedBy): any;
|
|
17
|
+
export declare function dataAstroDeploymentCreatedByToHclTerraform(struct?: DataAstroDeploymentCreatedBy): any;
|
|
18
|
+
export declare class DataAstroDeploymentCreatedByOutputReference extends cdktf.ComplexObject {
|
|
19
|
+
private isEmptyObject;
|
|
20
|
+
/**
|
|
21
|
+
* @param terraformResource The parent resource
|
|
22
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
23
|
+
*/
|
|
24
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
|
|
25
|
+
get internalValue(): DataAstroDeploymentCreatedBy | undefined;
|
|
26
|
+
set internalValue(value: DataAstroDeploymentCreatedBy | undefined);
|
|
27
|
+
get apiTokenName(): any;
|
|
28
|
+
get avatarUrl(): any;
|
|
29
|
+
get fullName(): any;
|
|
30
|
+
get id(): any;
|
|
31
|
+
get subjectType(): any;
|
|
32
|
+
get username(): any;
|
|
33
|
+
}
|
|
34
|
+
export interface DataAstroDeploymentEnvironmentVariables {
|
|
35
|
+
}
|
|
36
|
+
export declare function dataAstroDeploymentEnvironmentVariablesToTerraform(struct?: DataAstroDeploymentEnvironmentVariables): any;
|
|
37
|
+
export declare function dataAstroDeploymentEnvironmentVariablesToHclTerraform(struct?: DataAstroDeploymentEnvironmentVariables): any;
|
|
38
|
+
export declare class DataAstroDeploymentEnvironmentVariablesOutputReference extends cdktf.ComplexObject {
|
|
39
|
+
private isEmptyObject;
|
|
40
|
+
/**
|
|
41
|
+
* @param terraformResource The parent resource
|
|
42
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
43
|
+
* @param complexObjectIndex the index of this item in the list
|
|
44
|
+
* @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
45
|
+
*/
|
|
46
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
|
|
47
|
+
get internalValue(): DataAstroDeploymentEnvironmentVariables | undefined;
|
|
48
|
+
set internalValue(value: DataAstroDeploymentEnvironmentVariables | undefined);
|
|
49
|
+
get isSecret(): any;
|
|
50
|
+
get key(): any;
|
|
51
|
+
get updatedAt(): any;
|
|
52
|
+
get value(): any;
|
|
53
|
+
}
|
|
54
|
+
export declare class DataAstroDeploymentEnvironmentVariablesList extends cdktf.ComplexList {
|
|
55
|
+
protected terraformResource: cdktf.IInterpolatingParent;
|
|
56
|
+
protected terraformAttribute: string;
|
|
57
|
+
protected wrapsSet: boolean;
|
|
58
|
+
/**
|
|
59
|
+
* @param terraformResource The parent resource
|
|
60
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
61
|
+
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
62
|
+
*/
|
|
63
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
|
|
64
|
+
/**
|
|
65
|
+
* @param index the index of the item to return
|
|
66
|
+
*/
|
|
67
|
+
get(index: number): DataAstroDeploymentEnvironmentVariablesOutputReference;
|
|
68
|
+
}
|
|
69
|
+
export interface DataAstroDeploymentRemoteExecution {
|
|
70
|
+
}
|
|
71
|
+
export declare function dataAstroDeploymentRemoteExecutionToTerraform(struct?: DataAstroDeploymentRemoteExecution): any;
|
|
72
|
+
export declare function dataAstroDeploymentRemoteExecutionToHclTerraform(struct?: DataAstroDeploymentRemoteExecution): any;
|
|
73
|
+
export declare class DataAstroDeploymentRemoteExecutionOutputReference extends cdktf.ComplexObject {
|
|
74
|
+
private isEmptyObject;
|
|
75
|
+
/**
|
|
76
|
+
* @param terraformResource The parent resource
|
|
77
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
78
|
+
*/
|
|
79
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
|
|
80
|
+
get internalValue(): DataAstroDeploymentRemoteExecution | undefined;
|
|
81
|
+
set internalValue(value: DataAstroDeploymentRemoteExecution | undefined);
|
|
82
|
+
get allowedIpAddressRanges(): any;
|
|
83
|
+
get enabled(): any;
|
|
84
|
+
get remoteApiUrl(): any;
|
|
85
|
+
get taskLogBucket(): any;
|
|
86
|
+
get taskLogUrlPattern(): any;
|
|
87
|
+
}
|
|
88
|
+
export interface DataAstroDeploymentScalingSpecHibernationSpecOverride {
|
|
89
|
+
}
|
|
90
|
+
export declare function dataAstroDeploymentScalingSpecHibernationSpecOverrideToTerraform(struct?: DataAstroDeploymentScalingSpecHibernationSpecOverride): any;
|
|
91
|
+
export declare function dataAstroDeploymentScalingSpecHibernationSpecOverrideToHclTerraform(struct?: DataAstroDeploymentScalingSpecHibernationSpecOverride): any;
|
|
92
|
+
export declare class DataAstroDeploymentScalingSpecHibernationSpecOverrideOutputReference extends cdktf.ComplexObject {
|
|
93
|
+
private isEmptyObject;
|
|
94
|
+
/**
|
|
95
|
+
* @param terraformResource The parent resource
|
|
96
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
97
|
+
*/
|
|
98
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
|
|
99
|
+
get internalValue(): DataAstroDeploymentScalingSpecHibernationSpecOverride | undefined;
|
|
100
|
+
set internalValue(value: DataAstroDeploymentScalingSpecHibernationSpecOverride | undefined);
|
|
101
|
+
get isActive(): any;
|
|
102
|
+
get isHibernating(): any;
|
|
103
|
+
get overrideUntil(): any;
|
|
104
|
+
}
|
|
105
|
+
export interface DataAstroDeploymentScalingSpecHibernationSpecSchedules {
|
|
106
|
+
}
|
|
107
|
+
export declare function dataAstroDeploymentScalingSpecHibernationSpecSchedulesToTerraform(struct?: DataAstroDeploymentScalingSpecHibernationSpecSchedules): any;
|
|
108
|
+
export declare function dataAstroDeploymentScalingSpecHibernationSpecSchedulesToHclTerraform(struct?: DataAstroDeploymentScalingSpecHibernationSpecSchedules): any;
|
|
109
|
+
export declare class DataAstroDeploymentScalingSpecHibernationSpecSchedulesOutputReference extends cdktf.ComplexObject {
|
|
110
|
+
private isEmptyObject;
|
|
111
|
+
/**
|
|
112
|
+
* @param terraformResource The parent resource
|
|
113
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
114
|
+
* @param complexObjectIndex the index of this item in the list
|
|
115
|
+
* @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
116
|
+
*/
|
|
117
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
|
|
118
|
+
get internalValue(): DataAstroDeploymentScalingSpecHibernationSpecSchedules | undefined;
|
|
119
|
+
set internalValue(value: DataAstroDeploymentScalingSpecHibernationSpecSchedules | undefined);
|
|
120
|
+
get description(): any;
|
|
121
|
+
get hibernateAtCron(): any;
|
|
122
|
+
get isEnabled(): any;
|
|
123
|
+
get wakeAtCron(): any;
|
|
124
|
+
}
|
|
125
|
+
export declare class DataAstroDeploymentScalingSpecHibernationSpecSchedulesList extends cdktf.ComplexList {
|
|
126
|
+
protected terraformResource: cdktf.IInterpolatingParent;
|
|
127
|
+
protected terraformAttribute: string;
|
|
128
|
+
protected wrapsSet: boolean;
|
|
129
|
+
/**
|
|
130
|
+
* @param terraformResource The parent resource
|
|
131
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
132
|
+
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
133
|
+
*/
|
|
134
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
|
|
135
|
+
/**
|
|
136
|
+
* @param index the index of the item to return
|
|
137
|
+
*/
|
|
138
|
+
get(index: number): DataAstroDeploymentScalingSpecHibernationSpecSchedulesOutputReference;
|
|
139
|
+
}
|
|
140
|
+
export interface DataAstroDeploymentScalingSpecHibernationSpec {
|
|
141
|
+
}
|
|
142
|
+
export declare function dataAstroDeploymentScalingSpecHibernationSpecToTerraform(struct?: DataAstroDeploymentScalingSpecHibernationSpec): any;
|
|
143
|
+
export declare function dataAstroDeploymentScalingSpecHibernationSpecToHclTerraform(struct?: DataAstroDeploymentScalingSpecHibernationSpec): any;
|
|
144
|
+
export declare class DataAstroDeploymentScalingSpecHibernationSpecOutputReference extends cdktf.ComplexObject {
|
|
145
|
+
private isEmptyObject;
|
|
146
|
+
/**
|
|
147
|
+
* @param terraformResource The parent resource
|
|
148
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
149
|
+
*/
|
|
150
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
|
|
151
|
+
get internalValue(): DataAstroDeploymentScalingSpecHibernationSpec | undefined;
|
|
152
|
+
set internalValue(value: DataAstroDeploymentScalingSpecHibernationSpec | undefined);
|
|
153
|
+
private _override;
|
|
154
|
+
get override(): DataAstroDeploymentScalingSpecHibernationSpecOverrideOutputReference;
|
|
155
|
+
private _schedules;
|
|
156
|
+
get schedules(): DataAstroDeploymentScalingSpecHibernationSpecSchedulesList;
|
|
157
|
+
}
|
|
158
|
+
export interface DataAstroDeploymentScalingSpec {
|
|
159
|
+
}
|
|
160
|
+
export declare function dataAstroDeploymentScalingSpecToTerraform(struct?: DataAstroDeploymentScalingSpec): any;
|
|
161
|
+
export declare function dataAstroDeploymentScalingSpecToHclTerraform(struct?: DataAstroDeploymentScalingSpec): any;
|
|
162
|
+
export declare class DataAstroDeploymentScalingSpecOutputReference extends cdktf.ComplexObject {
|
|
163
|
+
private isEmptyObject;
|
|
164
|
+
/**
|
|
165
|
+
* @param terraformResource The parent resource
|
|
166
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
167
|
+
*/
|
|
168
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
|
|
169
|
+
get internalValue(): DataAstroDeploymentScalingSpec | undefined;
|
|
170
|
+
set internalValue(value: DataAstroDeploymentScalingSpec | undefined);
|
|
171
|
+
private _hibernationSpec;
|
|
172
|
+
get hibernationSpec(): DataAstroDeploymentScalingSpecHibernationSpecOutputReference;
|
|
173
|
+
}
|
|
174
|
+
export interface DataAstroDeploymentScalingStatusHibernationStatus {
|
|
175
|
+
}
|
|
176
|
+
export declare function dataAstroDeploymentScalingStatusHibernationStatusToTerraform(struct?: DataAstroDeploymentScalingStatusHibernationStatus): any;
|
|
177
|
+
export declare function dataAstroDeploymentScalingStatusHibernationStatusToHclTerraform(struct?: DataAstroDeploymentScalingStatusHibernationStatus): any;
|
|
178
|
+
export declare class DataAstroDeploymentScalingStatusHibernationStatusOutputReference extends cdktf.ComplexObject {
|
|
179
|
+
private isEmptyObject;
|
|
180
|
+
/**
|
|
181
|
+
* @param terraformResource The parent resource
|
|
182
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
183
|
+
*/
|
|
184
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
|
|
185
|
+
get internalValue(): DataAstroDeploymentScalingStatusHibernationStatus | undefined;
|
|
186
|
+
set internalValue(value: DataAstroDeploymentScalingStatusHibernationStatus | undefined);
|
|
187
|
+
get isHibernating(): any;
|
|
188
|
+
get nextEventAt(): any;
|
|
189
|
+
get nextEventType(): any;
|
|
190
|
+
get reason(): any;
|
|
191
|
+
}
|
|
192
|
+
export interface DataAstroDeploymentScalingStatus {
|
|
193
|
+
}
|
|
194
|
+
export declare function dataAstroDeploymentScalingStatusToTerraform(struct?: DataAstroDeploymentScalingStatus): any;
|
|
195
|
+
export declare function dataAstroDeploymentScalingStatusToHclTerraform(struct?: DataAstroDeploymentScalingStatus): any;
|
|
196
|
+
export declare class DataAstroDeploymentScalingStatusOutputReference extends cdktf.ComplexObject {
|
|
197
|
+
private isEmptyObject;
|
|
198
|
+
/**
|
|
199
|
+
* @param terraformResource The parent resource
|
|
200
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
201
|
+
*/
|
|
202
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
|
|
203
|
+
get internalValue(): DataAstroDeploymentScalingStatus | undefined;
|
|
204
|
+
set internalValue(value: DataAstroDeploymentScalingStatus | undefined);
|
|
205
|
+
private _hibernationStatus;
|
|
206
|
+
get hibernationStatus(): DataAstroDeploymentScalingStatusHibernationStatusOutputReference;
|
|
207
|
+
}
|
|
208
|
+
export interface DataAstroDeploymentUpdatedBy {
|
|
209
|
+
}
|
|
210
|
+
export declare function dataAstroDeploymentUpdatedByToTerraform(struct?: DataAstroDeploymentUpdatedBy): any;
|
|
211
|
+
export declare function dataAstroDeploymentUpdatedByToHclTerraform(struct?: DataAstroDeploymentUpdatedBy): any;
|
|
212
|
+
export declare class DataAstroDeploymentUpdatedByOutputReference extends cdktf.ComplexObject {
|
|
213
|
+
private isEmptyObject;
|
|
214
|
+
/**
|
|
215
|
+
* @param terraformResource The parent resource
|
|
216
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
217
|
+
*/
|
|
218
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
|
|
219
|
+
get internalValue(): DataAstroDeploymentUpdatedBy | undefined;
|
|
220
|
+
set internalValue(value: DataAstroDeploymentUpdatedBy | undefined);
|
|
221
|
+
get apiTokenName(): any;
|
|
222
|
+
get avatarUrl(): any;
|
|
223
|
+
get fullName(): any;
|
|
224
|
+
get id(): any;
|
|
225
|
+
get subjectType(): any;
|
|
226
|
+
get username(): any;
|
|
227
|
+
}
|
|
228
|
+
export interface DataAstroDeploymentWorkerQueues {
|
|
229
|
+
}
|
|
230
|
+
export declare function dataAstroDeploymentWorkerQueuesToTerraform(struct?: DataAstroDeploymentWorkerQueues): any;
|
|
231
|
+
export declare function dataAstroDeploymentWorkerQueuesToHclTerraform(struct?: DataAstroDeploymentWorkerQueues): any;
|
|
232
|
+
export declare class DataAstroDeploymentWorkerQueuesOutputReference extends cdktf.ComplexObject {
|
|
233
|
+
private isEmptyObject;
|
|
234
|
+
/**
|
|
235
|
+
* @param terraformResource The parent resource
|
|
236
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
237
|
+
* @param complexObjectIndex the index of this item in the list
|
|
238
|
+
* @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
239
|
+
*/
|
|
240
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
|
|
241
|
+
get internalValue(): DataAstroDeploymentWorkerQueues | undefined;
|
|
242
|
+
set internalValue(value: DataAstroDeploymentWorkerQueues | undefined);
|
|
243
|
+
get astroMachine(): any;
|
|
244
|
+
get id(): any;
|
|
245
|
+
get isDefault(): any;
|
|
246
|
+
get maxWorkerCount(): any;
|
|
247
|
+
get minWorkerCount(): any;
|
|
248
|
+
get name(): any;
|
|
249
|
+
get nodePoolId(): any;
|
|
250
|
+
get podCpu(): any;
|
|
251
|
+
get podMemory(): any;
|
|
252
|
+
get workerConcurrency(): any;
|
|
253
|
+
}
|
|
254
|
+
export declare class DataAstroDeploymentWorkerQueuesList extends cdktf.ComplexList {
|
|
255
|
+
protected terraformResource: cdktf.IInterpolatingParent;
|
|
256
|
+
protected terraformAttribute: string;
|
|
257
|
+
protected wrapsSet: boolean;
|
|
258
|
+
/**
|
|
259
|
+
* @param terraformResource The parent resource
|
|
260
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
261
|
+
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
262
|
+
*/
|
|
263
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
|
|
264
|
+
/**
|
|
265
|
+
* @param index the index of the item to return
|
|
266
|
+
*/
|
|
267
|
+
get(index: number): DataAstroDeploymentWorkerQueuesOutputReference;
|
|
268
|
+
}
|
|
269
|
+
/**
|
|
270
|
+
* Represents a {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/data-sources/deployment astro_deployment}
|
|
271
|
+
*/
|
|
272
|
+
export declare class DataAstroDeployment extends cdktf.TerraformDataSource {
|
|
273
|
+
static readonly tfResourceType = "astro_deployment";
|
|
274
|
+
/**
|
|
275
|
+
* Generates CDKTF code for importing a DataAstroDeployment resource upon running "cdktf plan <stack-name>"
|
|
276
|
+
* @param scope The scope in which to define this construct
|
|
277
|
+
* @param importToId The construct id used in the generated config for the DataAstroDeployment to import
|
|
278
|
+
* @param importFromId The id of the existing DataAstroDeployment that should be imported. Refer to the {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/data-sources/deployment#import import section} in the documentation of this resource for the id to use
|
|
279
|
+
* @param provider? Optional instance of the provider where the DataAstroDeployment to import is found
|
|
280
|
+
*/
|
|
281
|
+
static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any;
|
|
282
|
+
/**
|
|
283
|
+
* Create a new {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/data-sources/deployment astro_deployment} Data Source
|
|
284
|
+
*
|
|
285
|
+
* @param scope The scope in which to define this construct
|
|
286
|
+
* @param id The scoped construct ID. Must be unique amongst siblings in the same scope
|
|
287
|
+
* @param options DataAstroDeploymentConfig
|
|
288
|
+
*/
|
|
289
|
+
constructor(scope: Construct, id: string, config: DataAstroDeploymentConfig);
|
|
290
|
+
get airflowVersion(): any;
|
|
291
|
+
get astroRuntimeVersion(): any;
|
|
292
|
+
get cloudProvider(): any;
|
|
293
|
+
get clusterId(): any;
|
|
294
|
+
get contactEmails(): any;
|
|
295
|
+
get createdAt(): any;
|
|
296
|
+
private _createdBy;
|
|
297
|
+
get createdBy(): DataAstroDeploymentCreatedByOutputReference;
|
|
298
|
+
get dagTarballVersion(): any;
|
|
299
|
+
get defaultTaskPodCpu(): any;
|
|
300
|
+
get defaultTaskPodMemory(): any;
|
|
301
|
+
get description(): any;
|
|
302
|
+
get desiredDagTarballVersion(): any;
|
|
303
|
+
private _environmentVariables;
|
|
304
|
+
get environmentVariables(): DataAstroDeploymentEnvironmentVariablesList;
|
|
305
|
+
get executor(): any;
|
|
306
|
+
get externalIps(): any;
|
|
307
|
+
private _id?;
|
|
308
|
+
get id(): string;
|
|
309
|
+
set id(value: string);
|
|
310
|
+
get idInput(): string;
|
|
311
|
+
get imageRepository(): any;
|
|
312
|
+
get imageTag(): any;
|
|
313
|
+
get imageVersion(): any;
|
|
314
|
+
get isCicdEnforced(): any;
|
|
315
|
+
get isDagDeployEnabled(): any;
|
|
316
|
+
get isDevelopmentMode(): any;
|
|
317
|
+
get isHighAvailability(): any;
|
|
318
|
+
get name(): any;
|
|
319
|
+
get namespace(): any;
|
|
320
|
+
get oidcIssuerUrl(): any;
|
|
321
|
+
get region(): any;
|
|
322
|
+
private _remoteExecution;
|
|
323
|
+
get remoteExecution(): DataAstroDeploymentRemoteExecutionOutputReference;
|
|
324
|
+
get resourceQuotaCpu(): any;
|
|
325
|
+
get resourceQuotaMemory(): any;
|
|
326
|
+
private _scalingSpec;
|
|
327
|
+
get scalingSpec(): DataAstroDeploymentScalingSpecOutputReference;
|
|
328
|
+
private _scalingStatus;
|
|
329
|
+
get scalingStatus(): DataAstroDeploymentScalingStatusOutputReference;
|
|
330
|
+
get schedulerAu(): any;
|
|
331
|
+
get schedulerCpu(): any;
|
|
332
|
+
get schedulerMemory(): any;
|
|
333
|
+
get schedulerReplicas(): any;
|
|
334
|
+
get schedulerSize(): any;
|
|
335
|
+
get status(): any;
|
|
336
|
+
get statusReason(): any;
|
|
337
|
+
get taskPodNodePoolId(): any;
|
|
338
|
+
get type(): any;
|
|
339
|
+
get updatedAt(): any;
|
|
340
|
+
private _updatedBy;
|
|
341
|
+
get updatedBy(): DataAstroDeploymentUpdatedByOutputReference;
|
|
342
|
+
get webserverAirflowApiUrl(): any;
|
|
343
|
+
get webserverIngressHostname(): any;
|
|
344
|
+
get webserverUrl(): any;
|
|
345
|
+
private _workerQueues;
|
|
346
|
+
get workerQueues(): DataAstroDeploymentWorkerQueuesList;
|
|
347
|
+
get workloadIdentity(): any;
|
|
348
|
+
get workspaceId(): any;
|
|
349
|
+
protected synthesizeAttributes(): {
|
|
350
|
+
[name: string]: any;
|
|
351
|
+
};
|
|
352
|
+
protected synthesizeHclAttributes(): {
|
|
353
|
+
[name: string]: any;
|
|
354
|
+
};
|
|
355
|
+
}
|