@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,813 @@
|
|
|
1
|
+
import { Construct } from 'constructs';
|
|
2
|
+
import * as cdktf from 'cdktf';
|
|
3
|
+
export interface DeploymentConfig extends cdktf.TerraformMetaArguments {
|
|
4
|
+
/**
|
|
5
|
+
* Deployment cloud provider - required for 'STANDARD' deployments. If changing this value, the deployment will be recreated in the new cloud provider
|
|
6
|
+
*
|
|
7
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#cloud_provider Deployment#cloud_provider}
|
|
8
|
+
*/
|
|
9
|
+
readonly cloudProvider?: string;
|
|
10
|
+
/**
|
|
11
|
+
* Deployment cluster identifier - required for 'HYBRID' and 'DEDICATED' deployments. If changing this value, the deployment will be recreated in the new cluster
|
|
12
|
+
*
|
|
13
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#cluster_id Deployment#cluster_id}
|
|
14
|
+
*/
|
|
15
|
+
readonly clusterId?: string;
|
|
16
|
+
/**
|
|
17
|
+
* Deployment contact emails
|
|
18
|
+
*
|
|
19
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#contact_emails Deployment#contact_emails}
|
|
20
|
+
*/
|
|
21
|
+
readonly contactEmails: string[];
|
|
22
|
+
/**
|
|
23
|
+
* Deployment default task pod CPU - required for 'STANDARD' and 'DEDICATED' deployments
|
|
24
|
+
*
|
|
25
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#default_task_pod_cpu Deployment#default_task_pod_cpu}
|
|
26
|
+
*/
|
|
27
|
+
readonly defaultTaskPodCpu?: string;
|
|
28
|
+
/**
|
|
29
|
+
* Deployment default task pod memory - required for 'STANDARD' and 'DEDICATED' deployments
|
|
30
|
+
*
|
|
31
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#default_task_pod_memory Deployment#default_task_pod_memory}
|
|
32
|
+
*/
|
|
33
|
+
readonly defaultTaskPodMemory?: string;
|
|
34
|
+
/**
|
|
35
|
+
* Deployment description
|
|
36
|
+
*
|
|
37
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#description Deployment#description}
|
|
38
|
+
*/
|
|
39
|
+
readonly description: string;
|
|
40
|
+
/**
|
|
41
|
+
* Deployment's desired workload identity. The Terraform provider will use this provided workload identity to create the Deployment. If it is not provided the workload identity will be assigned automatically.
|
|
42
|
+
*
|
|
43
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#desired_workload_identity Deployment#desired_workload_identity}
|
|
44
|
+
*/
|
|
45
|
+
readonly desiredWorkloadIdentity?: string;
|
|
46
|
+
/**
|
|
47
|
+
* Deployment environment variables
|
|
48
|
+
*
|
|
49
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#environment_variables Deployment#environment_variables}
|
|
50
|
+
*/
|
|
51
|
+
readonly environmentVariables: DeploymentEnvironmentVariables[] | cdktf.IResolvable;
|
|
52
|
+
/**
|
|
53
|
+
* Deployment executor. Valid values: CELERY, KUBERNETES, ASTRO.
|
|
54
|
+
*
|
|
55
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#executor Deployment#executor}
|
|
56
|
+
*/
|
|
57
|
+
readonly executor: string;
|
|
58
|
+
/**
|
|
59
|
+
* Deployment CI/CD enforced
|
|
60
|
+
*
|
|
61
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#is_cicd_enforced Deployment#is_cicd_enforced}
|
|
62
|
+
*/
|
|
63
|
+
readonly isCicdEnforced: boolean | cdktf.IResolvable;
|
|
64
|
+
/**
|
|
65
|
+
* Whether DAG deploy is enabled - Changing this value may disrupt your deployment. Read more at https://docs.astronomer.io/astro/deploy-dags#enable-or-disable-dag-only-deploys-on-a-deployment
|
|
66
|
+
*
|
|
67
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#is_dag_deploy_enabled Deployment#is_dag_deploy_enabled}
|
|
68
|
+
*/
|
|
69
|
+
readonly isDagDeployEnabled: boolean | cdktf.IResolvable;
|
|
70
|
+
/**
|
|
71
|
+
* Deployment development mode - required for 'STANDARD' and 'DEDICATED' deployments. If changing from 'False' to 'True', the deployment will be recreated
|
|
72
|
+
*
|
|
73
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#is_development_mode Deployment#is_development_mode}
|
|
74
|
+
*/
|
|
75
|
+
readonly isDevelopmentMode?: boolean | cdktf.IResolvable;
|
|
76
|
+
/**
|
|
77
|
+
* Deployment high availability - required for 'STANDARD' and 'DEDICATED' deployments
|
|
78
|
+
*
|
|
79
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#is_high_availability Deployment#is_high_availability}
|
|
80
|
+
*/
|
|
81
|
+
readonly isHighAvailability?: boolean | cdktf.IResolvable;
|
|
82
|
+
/**
|
|
83
|
+
* Deployment name
|
|
84
|
+
*
|
|
85
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#name Deployment#name}
|
|
86
|
+
*/
|
|
87
|
+
readonly name: string;
|
|
88
|
+
/**
|
|
89
|
+
* Deployment's original Astro Runtime version. The Terraform provider will use this provided Astro runtime version to create the Deployment. The Astro runtime version can be updated with your Astro project Dockerfile, but if this value is changed, the Deployment will be recreated with this new Astro runtime version.
|
|
90
|
+
*
|
|
91
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#original_astro_runtime_version Deployment#original_astro_runtime_version}
|
|
92
|
+
*/
|
|
93
|
+
readonly originalAstroRuntimeVersion?: string;
|
|
94
|
+
/**
|
|
95
|
+
* Deployment region - required for 'STANDARD' deployments. If changing this value, the deployment will be recreated in the new region
|
|
96
|
+
*
|
|
97
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#region Deployment#region}
|
|
98
|
+
*/
|
|
99
|
+
readonly region?: string;
|
|
100
|
+
/**
|
|
101
|
+
* Deployment remote execution configuration - only for 'DEDICATED' deployments
|
|
102
|
+
*
|
|
103
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#remote_execution Deployment#remote_execution}
|
|
104
|
+
*/
|
|
105
|
+
readonly remoteExecution?: DeploymentRemoteExecution;
|
|
106
|
+
/**
|
|
107
|
+
* Deployment resource quota CPU - required for 'STANDARD' and 'DEDICATED' deployments
|
|
108
|
+
*
|
|
109
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#resource_quota_cpu Deployment#resource_quota_cpu}
|
|
110
|
+
*/
|
|
111
|
+
readonly resourceQuotaCpu?: string;
|
|
112
|
+
/**
|
|
113
|
+
* Deployment resource quota memory - required for 'STANDARD' and 'DEDICATED' deployments
|
|
114
|
+
*
|
|
115
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#resource_quota_memory Deployment#resource_quota_memory}
|
|
116
|
+
*/
|
|
117
|
+
readonly resourceQuotaMemory?: string;
|
|
118
|
+
/**
|
|
119
|
+
* Deployment scaling spec - only for 'STANDARD' and 'DEDICATED' deployments
|
|
120
|
+
*
|
|
121
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#scaling_spec Deployment#scaling_spec}
|
|
122
|
+
*/
|
|
123
|
+
readonly scalingSpec?: DeploymentScalingSpec;
|
|
124
|
+
/**
|
|
125
|
+
* Deployment scheduler AU - required for 'HYBRID' deployments
|
|
126
|
+
*
|
|
127
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#scheduler_au Deployment#scheduler_au}
|
|
128
|
+
*/
|
|
129
|
+
readonly schedulerAu?: number;
|
|
130
|
+
/**
|
|
131
|
+
* Deployment scheduler replicas - required for 'HYBRID' deployments
|
|
132
|
+
*
|
|
133
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#scheduler_replicas Deployment#scheduler_replicas}
|
|
134
|
+
*/
|
|
135
|
+
readonly schedulerReplicas?: number;
|
|
136
|
+
/**
|
|
137
|
+
* Deployment scheduler size - required for 'STANDARD' and 'DEDICATED' deployments
|
|
138
|
+
*
|
|
139
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#scheduler_size Deployment#scheduler_size}
|
|
140
|
+
*/
|
|
141
|
+
readonly schedulerSize?: string;
|
|
142
|
+
/**
|
|
143
|
+
* Deployment task pod node pool identifier - required if executor is 'KUBERNETES' and type is 'HYBRID'
|
|
144
|
+
*
|
|
145
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#task_pod_node_pool_id Deployment#task_pod_node_pool_id}
|
|
146
|
+
*/
|
|
147
|
+
readonly taskPodNodePoolId?: string;
|
|
148
|
+
/**
|
|
149
|
+
* Deployment type - if changing this value, the deployment will be recreated with the new type
|
|
150
|
+
*
|
|
151
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#type Deployment#type}
|
|
152
|
+
*/
|
|
153
|
+
readonly type: string;
|
|
154
|
+
/**
|
|
155
|
+
* Deployment worker queues - required for deployments with 'CELERY' executor. For 'STANDARD' and 'DEDICATED' deployments, use astro_machine. For 'HYBRID' deployments, use node_pool_id.
|
|
156
|
+
*
|
|
157
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#worker_queues Deployment#worker_queues}
|
|
158
|
+
*/
|
|
159
|
+
readonly workerQueues?: DeploymentWorkerQueues[] | cdktf.IResolvable;
|
|
160
|
+
/**
|
|
161
|
+
* Deployment workspace identifier - if changing this value, the deployment will be recreated in the new workspace
|
|
162
|
+
*
|
|
163
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#workspace_id Deployment#workspace_id}
|
|
164
|
+
*/
|
|
165
|
+
readonly workspaceId: string;
|
|
166
|
+
}
|
|
167
|
+
export interface DeploymentCreatedBy {
|
|
168
|
+
}
|
|
169
|
+
export declare function deploymentCreatedByToTerraform(struct?: DeploymentCreatedBy): any;
|
|
170
|
+
export declare function deploymentCreatedByToHclTerraform(struct?: DeploymentCreatedBy): any;
|
|
171
|
+
export declare class DeploymentCreatedByOutputReference extends cdktf.ComplexObject {
|
|
172
|
+
private isEmptyObject;
|
|
173
|
+
/**
|
|
174
|
+
* @param terraformResource The parent resource
|
|
175
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
176
|
+
*/
|
|
177
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
|
|
178
|
+
get internalValue(): DeploymentCreatedBy | undefined;
|
|
179
|
+
set internalValue(value: DeploymentCreatedBy | undefined);
|
|
180
|
+
get apiTokenName(): any;
|
|
181
|
+
get avatarUrl(): any;
|
|
182
|
+
get fullName(): any;
|
|
183
|
+
get id(): any;
|
|
184
|
+
get subjectType(): any;
|
|
185
|
+
get username(): any;
|
|
186
|
+
}
|
|
187
|
+
export interface DeploymentEnvironmentVariables {
|
|
188
|
+
/**
|
|
189
|
+
* Whether Environment variable is a secret
|
|
190
|
+
*
|
|
191
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#is_secret Deployment#is_secret}
|
|
192
|
+
*/
|
|
193
|
+
readonly isSecret: boolean | cdktf.IResolvable;
|
|
194
|
+
/**
|
|
195
|
+
* Environment variable key
|
|
196
|
+
*
|
|
197
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#key Deployment#key}
|
|
198
|
+
*/
|
|
199
|
+
readonly key: string;
|
|
200
|
+
/**
|
|
201
|
+
* Environment variable value
|
|
202
|
+
*
|
|
203
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#value Deployment#value}
|
|
204
|
+
*/
|
|
205
|
+
readonly value?: string;
|
|
206
|
+
}
|
|
207
|
+
export declare function deploymentEnvironmentVariablesToTerraform(struct?: DeploymentEnvironmentVariables | cdktf.IResolvable): any;
|
|
208
|
+
export declare function deploymentEnvironmentVariablesToHclTerraform(struct?: DeploymentEnvironmentVariables | cdktf.IResolvable): any;
|
|
209
|
+
export declare class DeploymentEnvironmentVariablesOutputReference extends cdktf.ComplexObject {
|
|
210
|
+
private isEmptyObject;
|
|
211
|
+
private resolvableValue?;
|
|
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(): DeploymentEnvironmentVariables | cdktf.IResolvable | undefined;
|
|
220
|
+
set internalValue(value: DeploymentEnvironmentVariables | cdktf.IResolvable | undefined);
|
|
221
|
+
private _isSecret?;
|
|
222
|
+
get isSecret(): boolean | cdktf.IResolvable;
|
|
223
|
+
set isSecret(value: boolean | cdktf.IResolvable);
|
|
224
|
+
get isSecretInput(): any;
|
|
225
|
+
private _key?;
|
|
226
|
+
get key(): string;
|
|
227
|
+
set key(value: string);
|
|
228
|
+
get keyInput(): string;
|
|
229
|
+
get updatedAt(): any;
|
|
230
|
+
private _value?;
|
|
231
|
+
get value(): string;
|
|
232
|
+
set value(value: string);
|
|
233
|
+
resetValue(): void;
|
|
234
|
+
get valueInput(): string;
|
|
235
|
+
}
|
|
236
|
+
export declare class DeploymentEnvironmentVariablesList extends cdktf.ComplexList {
|
|
237
|
+
protected terraformResource: cdktf.IInterpolatingParent;
|
|
238
|
+
protected terraformAttribute: string;
|
|
239
|
+
protected wrapsSet: boolean;
|
|
240
|
+
internalValue?: DeploymentEnvironmentVariables[] | cdktf.IResolvable;
|
|
241
|
+
/**
|
|
242
|
+
* @param terraformResource The parent resource
|
|
243
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
244
|
+
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
245
|
+
*/
|
|
246
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
|
|
247
|
+
/**
|
|
248
|
+
* @param index the index of the item to return
|
|
249
|
+
*/
|
|
250
|
+
get(index: number): DeploymentEnvironmentVariablesOutputReference;
|
|
251
|
+
}
|
|
252
|
+
export interface DeploymentRemoteExecution {
|
|
253
|
+
/**
|
|
254
|
+
* The allowed IP address ranges for remote execution
|
|
255
|
+
*
|
|
256
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#allowed_ip_address_ranges Deployment#allowed_ip_address_ranges}
|
|
257
|
+
*/
|
|
258
|
+
readonly allowedIpAddressRanges?: string[];
|
|
259
|
+
/**
|
|
260
|
+
* Whether remote execution is enabled
|
|
261
|
+
*
|
|
262
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#enabled Deployment#enabled}
|
|
263
|
+
*/
|
|
264
|
+
readonly enabled: boolean | cdktf.IResolvable;
|
|
265
|
+
/**
|
|
266
|
+
* The bucket for task logs
|
|
267
|
+
*
|
|
268
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#task_log_bucket Deployment#task_log_bucket}
|
|
269
|
+
*/
|
|
270
|
+
readonly taskLogBucket?: string;
|
|
271
|
+
/**
|
|
272
|
+
* The URL pattern for task logs
|
|
273
|
+
*
|
|
274
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#task_log_url_pattern Deployment#task_log_url_pattern}
|
|
275
|
+
*/
|
|
276
|
+
readonly taskLogUrlPattern?: string;
|
|
277
|
+
}
|
|
278
|
+
export declare function deploymentRemoteExecutionToTerraform(struct?: DeploymentRemoteExecution | cdktf.IResolvable): any;
|
|
279
|
+
export declare function deploymentRemoteExecutionToHclTerraform(struct?: DeploymentRemoteExecution | cdktf.IResolvable): any;
|
|
280
|
+
export declare class DeploymentRemoteExecutionOutputReference extends cdktf.ComplexObject {
|
|
281
|
+
private isEmptyObject;
|
|
282
|
+
private resolvableValue?;
|
|
283
|
+
/**
|
|
284
|
+
* @param terraformResource The parent resource
|
|
285
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
286
|
+
*/
|
|
287
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
|
|
288
|
+
get internalValue(): DeploymentRemoteExecution | cdktf.IResolvable | undefined;
|
|
289
|
+
set internalValue(value: DeploymentRemoteExecution | cdktf.IResolvable | undefined);
|
|
290
|
+
private _allowedIpAddressRanges?;
|
|
291
|
+
get allowedIpAddressRanges(): string[];
|
|
292
|
+
set allowedIpAddressRanges(value: string[]);
|
|
293
|
+
resetAllowedIpAddressRanges(): void;
|
|
294
|
+
get allowedIpAddressRangesInput(): string[];
|
|
295
|
+
private _enabled?;
|
|
296
|
+
get enabled(): boolean | cdktf.IResolvable;
|
|
297
|
+
set enabled(value: boolean | cdktf.IResolvable);
|
|
298
|
+
get enabledInput(): any;
|
|
299
|
+
get remoteApiUrl(): any;
|
|
300
|
+
private _taskLogBucket?;
|
|
301
|
+
get taskLogBucket(): string;
|
|
302
|
+
set taskLogBucket(value: string);
|
|
303
|
+
resetTaskLogBucket(): void;
|
|
304
|
+
get taskLogBucketInput(): string;
|
|
305
|
+
private _taskLogUrlPattern?;
|
|
306
|
+
get taskLogUrlPattern(): string;
|
|
307
|
+
set taskLogUrlPattern(value: string);
|
|
308
|
+
resetTaskLogUrlPattern(): void;
|
|
309
|
+
get taskLogUrlPatternInput(): string;
|
|
310
|
+
}
|
|
311
|
+
export interface DeploymentScalingSpecHibernationSpecOverride {
|
|
312
|
+
/**
|
|
313
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#is_hibernating Deployment#is_hibernating}
|
|
314
|
+
*/
|
|
315
|
+
readonly isHibernating: boolean | cdktf.IResolvable;
|
|
316
|
+
/**
|
|
317
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#override_until Deployment#override_until}
|
|
318
|
+
*/
|
|
319
|
+
readonly overrideUntil?: string;
|
|
320
|
+
}
|
|
321
|
+
export declare function deploymentScalingSpecHibernationSpecOverrideToTerraform(struct?: DeploymentScalingSpecHibernationSpecOverride | cdktf.IResolvable): any;
|
|
322
|
+
export declare function deploymentScalingSpecHibernationSpecOverrideToHclTerraform(struct?: DeploymentScalingSpecHibernationSpecOverride | cdktf.IResolvable): any;
|
|
323
|
+
export declare class DeploymentScalingSpecHibernationSpecOverrideOutputReference extends cdktf.ComplexObject {
|
|
324
|
+
private isEmptyObject;
|
|
325
|
+
private resolvableValue?;
|
|
326
|
+
/**
|
|
327
|
+
* @param terraformResource The parent resource
|
|
328
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
329
|
+
*/
|
|
330
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
|
|
331
|
+
get internalValue(): DeploymentScalingSpecHibernationSpecOverride | cdktf.IResolvable | undefined;
|
|
332
|
+
set internalValue(value: DeploymentScalingSpecHibernationSpecOverride | cdktf.IResolvable | undefined);
|
|
333
|
+
get isActive(): any;
|
|
334
|
+
private _isHibernating?;
|
|
335
|
+
get isHibernating(): boolean | cdktf.IResolvable;
|
|
336
|
+
set isHibernating(value: boolean | cdktf.IResolvable);
|
|
337
|
+
get isHibernatingInput(): any;
|
|
338
|
+
private _overrideUntil?;
|
|
339
|
+
get overrideUntil(): string;
|
|
340
|
+
set overrideUntil(value: string);
|
|
341
|
+
resetOverrideUntil(): void;
|
|
342
|
+
get overrideUntilInput(): string;
|
|
343
|
+
}
|
|
344
|
+
export interface DeploymentScalingSpecHibernationSpecSchedules {
|
|
345
|
+
/**
|
|
346
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#description Deployment#description}
|
|
347
|
+
*/
|
|
348
|
+
readonly description?: string;
|
|
349
|
+
/**
|
|
350
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#hibernate_at_cron Deployment#hibernate_at_cron}
|
|
351
|
+
*/
|
|
352
|
+
readonly hibernateAtCron: string;
|
|
353
|
+
/**
|
|
354
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#is_enabled Deployment#is_enabled}
|
|
355
|
+
*/
|
|
356
|
+
readonly isEnabled: boolean | cdktf.IResolvable;
|
|
357
|
+
/**
|
|
358
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#wake_at_cron Deployment#wake_at_cron}
|
|
359
|
+
*/
|
|
360
|
+
readonly wakeAtCron: string;
|
|
361
|
+
}
|
|
362
|
+
export declare function deploymentScalingSpecHibernationSpecSchedulesToTerraform(struct?: DeploymentScalingSpecHibernationSpecSchedules | cdktf.IResolvable): any;
|
|
363
|
+
export declare function deploymentScalingSpecHibernationSpecSchedulesToHclTerraform(struct?: DeploymentScalingSpecHibernationSpecSchedules | cdktf.IResolvable): any;
|
|
364
|
+
export declare class DeploymentScalingSpecHibernationSpecSchedulesOutputReference extends cdktf.ComplexObject {
|
|
365
|
+
private isEmptyObject;
|
|
366
|
+
private resolvableValue?;
|
|
367
|
+
/**
|
|
368
|
+
* @param terraformResource The parent resource
|
|
369
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
370
|
+
* @param complexObjectIndex the index of this item in the list
|
|
371
|
+
* @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
372
|
+
*/
|
|
373
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
|
|
374
|
+
get internalValue(): DeploymentScalingSpecHibernationSpecSchedules | cdktf.IResolvable | undefined;
|
|
375
|
+
set internalValue(value: DeploymentScalingSpecHibernationSpecSchedules | cdktf.IResolvable | undefined);
|
|
376
|
+
private _description?;
|
|
377
|
+
get description(): string;
|
|
378
|
+
set description(value: string);
|
|
379
|
+
resetDescription(): void;
|
|
380
|
+
get descriptionInput(): string;
|
|
381
|
+
private _hibernateAtCron?;
|
|
382
|
+
get hibernateAtCron(): string;
|
|
383
|
+
set hibernateAtCron(value: string);
|
|
384
|
+
get hibernateAtCronInput(): string;
|
|
385
|
+
private _isEnabled?;
|
|
386
|
+
get isEnabled(): boolean | cdktf.IResolvable;
|
|
387
|
+
set isEnabled(value: boolean | cdktf.IResolvable);
|
|
388
|
+
get isEnabledInput(): any;
|
|
389
|
+
private _wakeAtCron?;
|
|
390
|
+
get wakeAtCron(): string;
|
|
391
|
+
set wakeAtCron(value: string);
|
|
392
|
+
get wakeAtCronInput(): string;
|
|
393
|
+
}
|
|
394
|
+
export declare class DeploymentScalingSpecHibernationSpecSchedulesList extends cdktf.ComplexList {
|
|
395
|
+
protected terraformResource: cdktf.IInterpolatingParent;
|
|
396
|
+
protected terraformAttribute: string;
|
|
397
|
+
protected wrapsSet: boolean;
|
|
398
|
+
internalValue?: DeploymentScalingSpecHibernationSpecSchedules[] | cdktf.IResolvable;
|
|
399
|
+
/**
|
|
400
|
+
* @param terraformResource The parent resource
|
|
401
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
402
|
+
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
403
|
+
*/
|
|
404
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
|
|
405
|
+
/**
|
|
406
|
+
* @param index the index of the item to return
|
|
407
|
+
*/
|
|
408
|
+
get(index: number): DeploymentScalingSpecHibernationSpecSchedulesOutputReference;
|
|
409
|
+
}
|
|
410
|
+
export interface DeploymentScalingSpecHibernationSpec {
|
|
411
|
+
/**
|
|
412
|
+
* Hibernation override configuration. Set to null to remove the override.
|
|
413
|
+
*
|
|
414
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#override Deployment#override}
|
|
415
|
+
*/
|
|
416
|
+
readonly override?: DeploymentScalingSpecHibernationSpecOverride;
|
|
417
|
+
/**
|
|
418
|
+
* List of hibernation schedules. Set to null to remove all schedules.
|
|
419
|
+
*
|
|
420
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#schedules Deployment#schedules}
|
|
421
|
+
*/
|
|
422
|
+
readonly schedules?: DeploymentScalingSpecHibernationSpecSchedules[] | cdktf.IResolvable;
|
|
423
|
+
}
|
|
424
|
+
export declare function deploymentScalingSpecHibernationSpecToTerraform(struct?: DeploymentScalingSpecHibernationSpec | cdktf.IResolvable): any;
|
|
425
|
+
export declare function deploymentScalingSpecHibernationSpecToHclTerraform(struct?: DeploymentScalingSpecHibernationSpec | cdktf.IResolvable): any;
|
|
426
|
+
export declare class DeploymentScalingSpecHibernationSpecOutputReference extends cdktf.ComplexObject {
|
|
427
|
+
private isEmptyObject;
|
|
428
|
+
private resolvableValue?;
|
|
429
|
+
/**
|
|
430
|
+
* @param terraformResource The parent resource
|
|
431
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
432
|
+
*/
|
|
433
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
|
|
434
|
+
get internalValue(): DeploymentScalingSpecHibernationSpec | cdktf.IResolvable | undefined;
|
|
435
|
+
set internalValue(value: DeploymentScalingSpecHibernationSpec | cdktf.IResolvable | undefined);
|
|
436
|
+
private _override;
|
|
437
|
+
get override(): DeploymentScalingSpecHibernationSpecOverrideOutputReference;
|
|
438
|
+
putOverride(value: DeploymentScalingSpecHibernationSpecOverride): void;
|
|
439
|
+
resetOverride(): void;
|
|
440
|
+
get overrideInput(): any;
|
|
441
|
+
private _schedules;
|
|
442
|
+
get schedules(): DeploymentScalingSpecHibernationSpecSchedulesList;
|
|
443
|
+
putSchedules(value: DeploymentScalingSpecHibernationSpecSchedules[] | cdktf.IResolvable): void;
|
|
444
|
+
resetSchedules(): void;
|
|
445
|
+
get schedulesInput(): any;
|
|
446
|
+
}
|
|
447
|
+
export interface DeploymentScalingSpec {
|
|
448
|
+
/**
|
|
449
|
+
* Hibernation configuration for the deployment. The deployment will hibernate according to the schedules defined in this configuration. To remove the hibernation configuration, set scaling_spec to null.
|
|
450
|
+
*
|
|
451
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#hibernation_spec Deployment#hibernation_spec}
|
|
452
|
+
*/
|
|
453
|
+
readonly hibernationSpec: DeploymentScalingSpecHibernationSpec;
|
|
454
|
+
}
|
|
455
|
+
export declare function deploymentScalingSpecToTerraform(struct?: DeploymentScalingSpec | cdktf.IResolvable): any;
|
|
456
|
+
export declare function deploymentScalingSpecToHclTerraform(struct?: DeploymentScalingSpec | cdktf.IResolvable): any;
|
|
457
|
+
export declare class DeploymentScalingSpecOutputReference extends cdktf.ComplexObject {
|
|
458
|
+
private isEmptyObject;
|
|
459
|
+
private resolvableValue?;
|
|
460
|
+
/**
|
|
461
|
+
* @param terraformResource The parent resource
|
|
462
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
463
|
+
*/
|
|
464
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
|
|
465
|
+
get internalValue(): DeploymentScalingSpec | cdktf.IResolvable | undefined;
|
|
466
|
+
set internalValue(value: DeploymentScalingSpec | cdktf.IResolvable | undefined);
|
|
467
|
+
private _hibernationSpec;
|
|
468
|
+
get hibernationSpec(): DeploymentScalingSpecHibernationSpecOutputReference;
|
|
469
|
+
putHibernationSpec(value: DeploymentScalingSpecHibernationSpec): void;
|
|
470
|
+
get hibernationSpecInput(): any;
|
|
471
|
+
}
|
|
472
|
+
export interface DeploymentScalingStatusHibernationStatus {
|
|
473
|
+
}
|
|
474
|
+
export declare function deploymentScalingStatusHibernationStatusToTerraform(struct?: DeploymentScalingStatusHibernationStatus): any;
|
|
475
|
+
export declare function deploymentScalingStatusHibernationStatusToHclTerraform(struct?: DeploymentScalingStatusHibernationStatus): any;
|
|
476
|
+
export declare class DeploymentScalingStatusHibernationStatusOutputReference extends cdktf.ComplexObject {
|
|
477
|
+
private isEmptyObject;
|
|
478
|
+
/**
|
|
479
|
+
* @param terraformResource The parent resource
|
|
480
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
481
|
+
*/
|
|
482
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
|
|
483
|
+
get internalValue(): DeploymentScalingStatusHibernationStatus | undefined;
|
|
484
|
+
set internalValue(value: DeploymentScalingStatusHibernationStatus | undefined);
|
|
485
|
+
get isHibernating(): any;
|
|
486
|
+
get nextEventAt(): any;
|
|
487
|
+
get nextEventType(): any;
|
|
488
|
+
get reason(): any;
|
|
489
|
+
}
|
|
490
|
+
export interface DeploymentScalingStatus {
|
|
491
|
+
}
|
|
492
|
+
export declare function deploymentScalingStatusToTerraform(struct?: DeploymentScalingStatus): any;
|
|
493
|
+
export declare function deploymentScalingStatusToHclTerraform(struct?: DeploymentScalingStatus): any;
|
|
494
|
+
export declare class DeploymentScalingStatusOutputReference extends cdktf.ComplexObject {
|
|
495
|
+
private isEmptyObject;
|
|
496
|
+
/**
|
|
497
|
+
* @param terraformResource The parent resource
|
|
498
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
499
|
+
*/
|
|
500
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
|
|
501
|
+
get internalValue(): DeploymentScalingStatus | undefined;
|
|
502
|
+
set internalValue(value: DeploymentScalingStatus | undefined);
|
|
503
|
+
private _hibernationStatus;
|
|
504
|
+
get hibernationStatus(): DeploymentScalingStatusHibernationStatusOutputReference;
|
|
505
|
+
}
|
|
506
|
+
export interface DeploymentUpdatedBy {
|
|
507
|
+
}
|
|
508
|
+
export declare function deploymentUpdatedByToTerraform(struct?: DeploymentUpdatedBy): any;
|
|
509
|
+
export declare function deploymentUpdatedByToHclTerraform(struct?: DeploymentUpdatedBy): any;
|
|
510
|
+
export declare class DeploymentUpdatedByOutputReference extends cdktf.ComplexObject {
|
|
511
|
+
private isEmptyObject;
|
|
512
|
+
/**
|
|
513
|
+
* @param terraformResource The parent resource
|
|
514
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
515
|
+
*/
|
|
516
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
|
|
517
|
+
get internalValue(): DeploymentUpdatedBy | undefined;
|
|
518
|
+
set internalValue(value: DeploymentUpdatedBy | undefined);
|
|
519
|
+
get apiTokenName(): any;
|
|
520
|
+
get avatarUrl(): any;
|
|
521
|
+
get fullName(): any;
|
|
522
|
+
get id(): any;
|
|
523
|
+
get subjectType(): any;
|
|
524
|
+
get username(): any;
|
|
525
|
+
}
|
|
526
|
+
export interface DeploymentWorkerQueues {
|
|
527
|
+
/**
|
|
528
|
+
* Worker queue Astro machine value - required for 'STANDARD' and 'DEDICATED' deployments
|
|
529
|
+
*
|
|
530
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#astro_machine Deployment#astro_machine}
|
|
531
|
+
*/
|
|
532
|
+
readonly astroMachine?: string;
|
|
533
|
+
/**
|
|
534
|
+
* Worker queue default
|
|
535
|
+
*
|
|
536
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#is_default Deployment#is_default}
|
|
537
|
+
*/
|
|
538
|
+
readonly isDefault: boolean | cdktf.IResolvable;
|
|
539
|
+
/**
|
|
540
|
+
* Worker queue max worker count
|
|
541
|
+
*
|
|
542
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#max_worker_count Deployment#max_worker_count}
|
|
543
|
+
*/
|
|
544
|
+
readonly maxWorkerCount: number;
|
|
545
|
+
/**
|
|
546
|
+
* Worker queue min worker count
|
|
547
|
+
*
|
|
548
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#min_worker_count Deployment#min_worker_count}
|
|
549
|
+
*/
|
|
550
|
+
readonly minWorkerCount: number;
|
|
551
|
+
/**
|
|
552
|
+
* Worker queue name
|
|
553
|
+
*
|
|
554
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#name Deployment#name}
|
|
555
|
+
*/
|
|
556
|
+
readonly name: string;
|
|
557
|
+
/**
|
|
558
|
+
* Worker queue Node pool identifier - required for 'HYBRID' deployments
|
|
559
|
+
*
|
|
560
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#node_pool_id Deployment#node_pool_id}
|
|
561
|
+
*/
|
|
562
|
+
readonly nodePoolId?: string;
|
|
563
|
+
/**
|
|
564
|
+
* Worker queue worker concurrency
|
|
565
|
+
*
|
|
566
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#worker_concurrency Deployment#worker_concurrency}
|
|
567
|
+
*/
|
|
568
|
+
readonly workerConcurrency: number;
|
|
569
|
+
}
|
|
570
|
+
export declare function deploymentWorkerQueuesToTerraform(struct?: DeploymentWorkerQueues | cdktf.IResolvable): any;
|
|
571
|
+
export declare function deploymentWorkerQueuesToHclTerraform(struct?: DeploymentWorkerQueues | cdktf.IResolvable): any;
|
|
572
|
+
export declare class DeploymentWorkerQueuesOutputReference extends cdktf.ComplexObject {
|
|
573
|
+
private isEmptyObject;
|
|
574
|
+
private resolvableValue?;
|
|
575
|
+
/**
|
|
576
|
+
* @param terraformResource The parent resource
|
|
577
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
578
|
+
* @param complexObjectIndex the index of this item in the list
|
|
579
|
+
* @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
580
|
+
*/
|
|
581
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
|
|
582
|
+
get internalValue(): DeploymentWorkerQueues | cdktf.IResolvable | undefined;
|
|
583
|
+
set internalValue(value: DeploymentWorkerQueues | cdktf.IResolvable | undefined);
|
|
584
|
+
private _astroMachine?;
|
|
585
|
+
get astroMachine(): string;
|
|
586
|
+
set astroMachine(value: string);
|
|
587
|
+
resetAstroMachine(): void;
|
|
588
|
+
get astroMachineInput(): string;
|
|
589
|
+
private _isDefault?;
|
|
590
|
+
get isDefault(): boolean | cdktf.IResolvable;
|
|
591
|
+
set isDefault(value: boolean | cdktf.IResolvable);
|
|
592
|
+
get isDefaultInput(): any;
|
|
593
|
+
private _maxWorkerCount?;
|
|
594
|
+
get maxWorkerCount(): number;
|
|
595
|
+
set maxWorkerCount(value: number);
|
|
596
|
+
get maxWorkerCountInput(): number;
|
|
597
|
+
private _minWorkerCount?;
|
|
598
|
+
get minWorkerCount(): number;
|
|
599
|
+
set minWorkerCount(value: number);
|
|
600
|
+
get minWorkerCountInput(): number;
|
|
601
|
+
private _name?;
|
|
602
|
+
get name(): string;
|
|
603
|
+
set name(value: string);
|
|
604
|
+
get nameInput(): string;
|
|
605
|
+
private _nodePoolId?;
|
|
606
|
+
get nodePoolId(): string;
|
|
607
|
+
set nodePoolId(value: string);
|
|
608
|
+
resetNodePoolId(): void;
|
|
609
|
+
get nodePoolIdInput(): string;
|
|
610
|
+
get podCpu(): any;
|
|
611
|
+
get podMemory(): any;
|
|
612
|
+
private _workerConcurrency?;
|
|
613
|
+
get workerConcurrency(): number;
|
|
614
|
+
set workerConcurrency(value: number);
|
|
615
|
+
get workerConcurrencyInput(): number;
|
|
616
|
+
}
|
|
617
|
+
export declare class DeploymentWorkerQueuesList extends cdktf.ComplexList {
|
|
618
|
+
protected terraformResource: cdktf.IInterpolatingParent;
|
|
619
|
+
protected terraformAttribute: string;
|
|
620
|
+
protected wrapsSet: boolean;
|
|
621
|
+
internalValue?: DeploymentWorkerQueues[] | cdktf.IResolvable;
|
|
622
|
+
/**
|
|
623
|
+
* @param terraformResource The parent resource
|
|
624
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
625
|
+
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
626
|
+
*/
|
|
627
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
|
|
628
|
+
/**
|
|
629
|
+
* @param index the index of the item to return
|
|
630
|
+
*/
|
|
631
|
+
get(index: number): DeploymentWorkerQueuesOutputReference;
|
|
632
|
+
}
|
|
633
|
+
/**
|
|
634
|
+
* Represents a {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment astro_deployment}
|
|
635
|
+
*/
|
|
636
|
+
export declare class Deployment extends cdktf.TerraformResource {
|
|
637
|
+
static readonly tfResourceType = "astro_deployment";
|
|
638
|
+
/**
|
|
639
|
+
* Generates CDKTF code for importing a Deployment resource upon running "cdktf plan <stack-name>"
|
|
640
|
+
* @param scope The scope in which to define this construct
|
|
641
|
+
* @param importToId The construct id used in the generated config for the Deployment to import
|
|
642
|
+
* @param importFromId The id of the existing Deployment that should be imported. Refer to the {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment#import import section} in the documentation of this resource for the id to use
|
|
643
|
+
* @param provider? Optional instance of the provider where the Deployment to import is found
|
|
644
|
+
*/
|
|
645
|
+
static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any;
|
|
646
|
+
/**
|
|
647
|
+
* Create a new {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/resources/deployment astro_deployment} Resource
|
|
648
|
+
*
|
|
649
|
+
* @param scope The scope in which to define this construct
|
|
650
|
+
* @param id The scoped construct ID. Must be unique amongst siblings in the same scope
|
|
651
|
+
* @param options DeploymentConfig
|
|
652
|
+
*/
|
|
653
|
+
constructor(scope: Construct, id: string, config: DeploymentConfig);
|
|
654
|
+
get airflowVersion(): any;
|
|
655
|
+
get astroRuntimeVersion(): any;
|
|
656
|
+
private _cloudProvider?;
|
|
657
|
+
get cloudProvider(): string;
|
|
658
|
+
set cloudProvider(value: string);
|
|
659
|
+
resetCloudProvider(): void;
|
|
660
|
+
get cloudProviderInput(): string;
|
|
661
|
+
private _clusterId?;
|
|
662
|
+
get clusterId(): string;
|
|
663
|
+
set clusterId(value: string);
|
|
664
|
+
resetClusterId(): void;
|
|
665
|
+
get clusterIdInput(): string;
|
|
666
|
+
private _contactEmails?;
|
|
667
|
+
get contactEmails(): string[];
|
|
668
|
+
set contactEmails(value: string[]);
|
|
669
|
+
get contactEmailsInput(): string[];
|
|
670
|
+
get createdAt(): any;
|
|
671
|
+
private _createdBy;
|
|
672
|
+
get createdBy(): DeploymentCreatedByOutputReference;
|
|
673
|
+
get dagTarballVersion(): any;
|
|
674
|
+
private _defaultTaskPodCpu?;
|
|
675
|
+
get defaultTaskPodCpu(): string;
|
|
676
|
+
set defaultTaskPodCpu(value: string);
|
|
677
|
+
resetDefaultTaskPodCpu(): void;
|
|
678
|
+
get defaultTaskPodCpuInput(): string;
|
|
679
|
+
private _defaultTaskPodMemory?;
|
|
680
|
+
get defaultTaskPodMemory(): string;
|
|
681
|
+
set defaultTaskPodMemory(value: string);
|
|
682
|
+
resetDefaultTaskPodMemory(): void;
|
|
683
|
+
get defaultTaskPodMemoryInput(): string;
|
|
684
|
+
private _description?;
|
|
685
|
+
get description(): string;
|
|
686
|
+
set description(value: string);
|
|
687
|
+
get descriptionInput(): string;
|
|
688
|
+
get desiredDagTarballVersion(): any;
|
|
689
|
+
private _desiredWorkloadIdentity?;
|
|
690
|
+
get desiredWorkloadIdentity(): string;
|
|
691
|
+
set desiredWorkloadIdentity(value: string);
|
|
692
|
+
resetDesiredWorkloadIdentity(): void;
|
|
693
|
+
get desiredWorkloadIdentityInput(): string;
|
|
694
|
+
private _environmentVariables;
|
|
695
|
+
get environmentVariables(): DeploymentEnvironmentVariablesList;
|
|
696
|
+
putEnvironmentVariables(value: DeploymentEnvironmentVariables[] | cdktf.IResolvable): void;
|
|
697
|
+
get environmentVariablesInput(): any;
|
|
698
|
+
private _executor?;
|
|
699
|
+
get executor(): string;
|
|
700
|
+
set executor(value: string);
|
|
701
|
+
get executorInput(): string;
|
|
702
|
+
get externalIps(): any;
|
|
703
|
+
get id(): any;
|
|
704
|
+
get imageRepository(): any;
|
|
705
|
+
get imageTag(): any;
|
|
706
|
+
get imageVersion(): any;
|
|
707
|
+
private _isCicdEnforced?;
|
|
708
|
+
get isCicdEnforced(): boolean | cdktf.IResolvable;
|
|
709
|
+
set isCicdEnforced(value: boolean | cdktf.IResolvable);
|
|
710
|
+
get isCicdEnforcedInput(): any;
|
|
711
|
+
private _isDagDeployEnabled?;
|
|
712
|
+
get isDagDeployEnabled(): boolean | cdktf.IResolvable;
|
|
713
|
+
set isDagDeployEnabled(value: boolean | cdktf.IResolvable);
|
|
714
|
+
get isDagDeployEnabledInput(): any;
|
|
715
|
+
private _isDevelopmentMode?;
|
|
716
|
+
get isDevelopmentMode(): boolean | cdktf.IResolvable;
|
|
717
|
+
set isDevelopmentMode(value: boolean | cdktf.IResolvable);
|
|
718
|
+
resetIsDevelopmentMode(): void;
|
|
719
|
+
get isDevelopmentModeInput(): any;
|
|
720
|
+
private _isHighAvailability?;
|
|
721
|
+
get isHighAvailability(): boolean | cdktf.IResolvable;
|
|
722
|
+
set isHighAvailability(value: boolean | cdktf.IResolvable);
|
|
723
|
+
resetIsHighAvailability(): void;
|
|
724
|
+
get isHighAvailabilityInput(): any;
|
|
725
|
+
private _name?;
|
|
726
|
+
get name(): string;
|
|
727
|
+
set name(value: string);
|
|
728
|
+
get nameInput(): string;
|
|
729
|
+
get namespace(): any;
|
|
730
|
+
get oidcIssuerUrl(): any;
|
|
731
|
+
private _originalAstroRuntimeVersion?;
|
|
732
|
+
get originalAstroRuntimeVersion(): string;
|
|
733
|
+
set originalAstroRuntimeVersion(value: string);
|
|
734
|
+
resetOriginalAstroRuntimeVersion(): void;
|
|
735
|
+
get originalAstroRuntimeVersionInput(): string;
|
|
736
|
+
private _region?;
|
|
737
|
+
get region(): string;
|
|
738
|
+
set region(value: string);
|
|
739
|
+
resetRegion(): void;
|
|
740
|
+
get regionInput(): string;
|
|
741
|
+
private _remoteExecution;
|
|
742
|
+
get remoteExecution(): DeploymentRemoteExecutionOutputReference;
|
|
743
|
+
putRemoteExecution(value: DeploymentRemoteExecution): void;
|
|
744
|
+
resetRemoteExecution(): void;
|
|
745
|
+
get remoteExecutionInput(): any;
|
|
746
|
+
private _resourceQuotaCpu?;
|
|
747
|
+
get resourceQuotaCpu(): string;
|
|
748
|
+
set resourceQuotaCpu(value: string);
|
|
749
|
+
resetResourceQuotaCpu(): void;
|
|
750
|
+
get resourceQuotaCpuInput(): string;
|
|
751
|
+
private _resourceQuotaMemory?;
|
|
752
|
+
get resourceQuotaMemory(): string;
|
|
753
|
+
set resourceQuotaMemory(value: string);
|
|
754
|
+
resetResourceQuotaMemory(): void;
|
|
755
|
+
get resourceQuotaMemoryInput(): string;
|
|
756
|
+
private _scalingSpec;
|
|
757
|
+
get scalingSpec(): DeploymentScalingSpecOutputReference;
|
|
758
|
+
putScalingSpec(value: DeploymentScalingSpec): void;
|
|
759
|
+
resetScalingSpec(): void;
|
|
760
|
+
get scalingSpecInput(): any;
|
|
761
|
+
private _scalingStatus;
|
|
762
|
+
get scalingStatus(): DeploymentScalingStatusOutputReference;
|
|
763
|
+
private _schedulerAu?;
|
|
764
|
+
get schedulerAu(): number;
|
|
765
|
+
set schedulerAu(value: number);
|
|
766
|
+
resetSchedulerAu(): void;
|
|
767
|
+
get schedulerAuInput(): number;
|
|
768
|
+
get schedulerCpu(): any;
|
|
769
|
+
get schedulerMemory(): any;
|
|
770
|
+
private _schedulerReplicas?;
|
|
771
|
+
get schedulerReplicas(): number;
|
|
772
|
+
set schedulerReplicas(value: number);
|
|
773
|
+
resetSchedulerReplicas(): void;
|
|
774
|
+
get schedulerReplicasInput(): number;
|
|
775
|
+
private _schedulerSize?;
|
|
776
|
+
get schedulerSize(): string;
|
|
777
|
+
set schedulerSize(value: string);
|
|
778
|
+
resetSchedulerSize(): void;
|
|
779
|
+
get schedulerSizeInput(): string;
|
|
780
|
+
get status(): any;
|
|
781
|
+
get statusReason(): any;
|
|
782
|
+
private _taskPodNodePoolId?;
|
|
783
|
+
get taskPodNodePoolId(): string;
|
|
784
|
+
set taskPodNodePoolId(value: string);
|
|
785
|
+
resetTaskPodNodePoolId(): void;
|
|
786
|
+
get taskPodNodePoolIdInput(): string;
|
|
787
|
+
private _type?;
|
|
788
|
+
get type(): string;
|
|
789
|
+
set type(value: string);
|
|
790
|
+
get typeInput(): string;
|
|
791
|
+
get updatedAt(): any;
|
|
792
|
+
private _updatedBy;
|
|
793
|
+
get updatedBy(): DeploymentUpdatedByOutputReference;
|
|
794
|
+
get webserverAirflowApiUrl(): any;
|
|
795
|
+
get webserverIngressHostname(): any;
|
|
796
|
+
get webserverUrl(): any;
|
|
797
|
+
private _workerQueues;
|
|
798
|
+
get workerQueues(): DeploymentWorkerQueuesList;
|
|
799
|
+
putWorkerQueues(value: DeploymentWorkerQueues[] | cdktf.IResolvable): void;
|
|
800
|
+
resetWorkerQueues(): void;
|
|
801
|
+
get workerQueuesInput(): any;
|
|
802
|
+
get workloadIdentity(): any;
|
|
803
|
+
private _workspaceId?;
|
|
804
|
+
get workspaceId(): string;
|
|
805
|
+
set workspaceId(value: string);
|
|
806
|
+
get workspaceIdInput(): string;
|
|
807
|
+
protected synthesizeAttributes(): {
|
|
808
|
+
[name: string]: any;
|
|
809
|
+
};
|
|
810
|
+
protected synthesizeHclAttributes(): {
|
|
811
|
+
[name: string]: any;
|
|
812
|
+
};
|
|
813
|
+
}
|