@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,263 @@
|
|
|
1
|
+
import { Construct } from 'constructs';
|
|
2
|
+
import * as cdktf from 'cdktf';
|
|
3
|
+
export interface DataAstroClustersConfig extends cdktf.TerraformMetaArguments {
|
|
4
|
+
/**
|
|
5
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/data-sources/clusters#cloud_provider DataAstroClusters#cloud_provider}
|
|
6
|
+
*/
|
|
7
|
+
readonly cloudProvider?: string;
|
|
8
|
+
/**
|
|
9
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/data-sources/clusters#names DataAstroClusters#names}
|
|
10
|
+
*/
|
|
11
|
+
readonly names?: string[];
|
|
12
|
+
}
|
|
13
|
+
export interface DataAstroClustersClustersHealthStatusDetails {
|
|
14
|
+
}
|
|
15
|
+
export declare function dataAstroClustersClustersHealthStatusDetailsToTerraform(struct?: DataAstroClustersClustersHealthStatusDetails): any;
|
|
16
|
+
export declare function dataAstroClustersClustersHealthStatusDetailsToHclTerraform(struct?: DataAstroClustersClustersHealthStatusDetails): any;
|
|
17
|
+
export declare class DataAstroClustersClustersHealthStatusDetailsOutputReference extends cdktf.ComplexObject {
|
|
18
|
+
private isEmptyObject;
|
|
19
|
+
/**
|
|
20
|
+
* @param terraformResource The parent resource
|
|
21
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
22
|
+
* @param complexObjectIndex the index of this item in the list
|
|
23
|
+
* @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
24
|
+
*/
|
|
25
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
|
|
26
|
+
get internalValue(): DataAstroClustersClustersHealthStatusDetails | undefined;
|
|
27
|
+
set internalValue(value: DataAstroClustersClustersHealthStatusDetails | undefined);
|
|
28
|
+
get code(): any;
|
|
29
|
+
get description(): any;
|
|
30
|
+
get severity(): any;
|
|
31
|
+
}
|
|
32
|
+
export declare class DataAstroClustersClustersHealthStatusDetailsList extends cdktf.ComplexList {
|
|
33
|
+
protected terraformResource: cdktf.IInterpolatingParent;
|
|
34
|
+
protected terraformAttribute: string;
|
|
35
|
+
protected wrapsSet: boolean;
|
|
36
|
+
/**
|
|
37
|
+
* @param terraformResource The parent resource
|
|
38
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
39
|
+
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
40
|
+
*/
|
|
41
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
|
|
42
|
+
/**
|
|
43
|
+
* @param index the index of the item to return
|
|
44
|
+
*/
|
|
45
|
+
get(index: number): DataAstroClustersClustersHealthStatusDetailsOutputReference;
|
|
46
|
+
}
|
|
47
|
+
export interface DataAstroClustersClustersHealthStatus {
|
|
48
|
+
}
|
|
49
|
+
export declare function dataAstroClustersClustersHealthStatusToTerraform(struct?: DataAstroClustersClustersHealthStatus): any;
|
|
50
|
+
export declare function dataAstroClustersClustersHealthStatusToHclTerraform(struct?: DataAstroClustersClustersHealthStatus): any;
|
|
51
|
+
export declare class DataAstroClustersClustersHealthStatusOutputReference extends cdktf.ComplexObject {
|
|
52
|
+
private isEmptyObject;
|
|
53
|
+
/**
|
|
54
|
+
* @param terraformResource The parent resource
|
|
55
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
56
|
+
*/
|
|
57
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
|
|
58
|
+
get internalValue(): DataAstroClustersClustersHealthStatus | undefined;
|
|
59
|
+
set internalValue(value: DataAstroClustersClustersHealthStatus | undefined);
|
|
60
|
+
private _details;
|
|
61
|
+
get details(): DataAstroClustersClustersHealthStatusDetailsList;
|
|
62
|
+
get value(): any;
|
|
63
|
+
}
|
|
64
|
+
export interface DataAstroClustersClustersMetadata {
|
|
65
|
+
}
|
|
66
|
+
export declare function dataAstroClustersClustersMetadataToTerraform(struct?: DataAstroClustersClustersMetadata): any;
|
|
67
|
+
export declare function dataAstroClustersClustersMetadataToHclTerraform(struct?: DataAstroClustersClustersMetadata): any;
|
|
68
|
+
export declare class DataAstroClustersClustersMetadataOutputReference extends cdktf.ComplexObject {
|
|
69
|
+
private isEmptyObject;
|
|
70
|
+
/**
|
|
71
|
+
* @param terraformResource The parent resource
|
|
72
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
73
|
+
*/
|
|
74
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
|
|
75
|
+
get internalValue(): DataAstroClustersClustersMetadata | undefined;
|
|
76
|
+
set internalValue(value: DataAstroClustersClustersMetadata | undefined);
|
|
77
|
+
get externalIps(): any;
|
|
78
|
+
get kubeDnsIp(): any;
|
|
79
|
+
get oidcIssuerUrl(): any;
|
|
80
|
+
}
|
|
81
|
+
export interface DataAstroClustersClustersNodePools {
|
|
82
|
+
}
|
|
83
|
+
export declare function dataAstroClustersClustersNodePoolsToTerraform(struct?: DataAstroClustersClustersNodePools): any;
|
|
84
|
+
export declare function dataAstroClustersClustersNodePoolsToHclTerraform(struct?: DataAstroClustersClustersNodePools): any;
|
|
85
|
+
export declare class DataAstroClustersClustersNodePoolsOutputReference 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
|
+
* @param complexObjectIndex the index of this item in the list
|
|
91
|
+
* @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
92
|
+
*/
|
|
93
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
|
|
94
|
+
get internalValue(): DataAstroClustersClustersNodePools | undefined;
|
|
95
|
+
set internalValue(value: DataAstroClustersClustersNodePools | undefined);
|
|
96
|
+
get cloudProvider(): any;
|
|
97
|
+
get clusterId(): any;
|
|
98
|
+
get createdAt(): any;
|
|
99
|
+
get id(): any;
|
|
100
|
+
get isDefault(): any;
|
|
101
|
+
get maxNodeCount(): any;
|
|
102
|
+
get name(): any;
|
|
103
|
+
get nodeInstanceType(): any;
|
|
104
|
+
get supportedAstroMachines(): any;
|
|
105
|
+
get updatedAt(): any;
|
|
106
|
+
}
|
|
107
|
+
export declare class DataAstroClustersClustersNodePoolsList extends cdktf.ComplexList {
|
|
108
|
+
protected terraformResource: cdktf.IInterpolatingParent;
|
|
109
|
+
protected terraformAttribute: string;
|
|
110
|
+
protected wrapsSet: boolean;
|
|
111
|
+
/**
|
|
112
|
+
* @param terraformResource The parent resource
|
|
113
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
114
|
+
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
115
|
+
*/
|
|
116
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
|
|
117
|
+
/**
|
|
118
|
+
* @param index the index of the item to return
|
|
119
|
+
*/
|
|
120
|
+
get(index: number): DataAstroClustersClustersNodePoolsOutputReference;
|
|
121
|
+
}
|
|
122
|
+
export interface DataAstroClustersClustersTags {
|
|
123
|
+
}
|
|
124
|
+
export declare function dataAstroClustersClustersTagsToTerraform(struct?: DataAstroClustersClustersTags): any;
|
|
125
|
+
export declare function dataAstroClustersClustersTagsToHclTerraform(struct?: DataAstroClustersClustersTags): any;
|
|
126
|
+
export declare class DataAstroClustersClustersTagsOutputReference extends cdktf.ComplexObject {
|
|
127
|
+
private isEmptyObject;
|
|
128
|
+
/**
|
|
129
|
+
* @param terraformResource The parent resource
|
|
130
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
131
|
+
* @param complexObjectIndex the index of this item in the list
|
|
132
|
+
* @param complexObjectIsFromSet 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, complexObjectIndex: number, complexObjectIsFromSet: boolean);
|
|
135
|
+
get internalValue(): DataAstroClustersClustersTags | undefined;
|
|
136
|
+
set internalValue(value: DataAstroClustersClustersTags | undefined);
|
|
137
|
+
get key(): any;
|
|
138
|
+
get value(): any;
|
|
139
|
+
}
|
|
140
|
+
export declare class DataAstroClustersClustersTagsList extends cdktf.ComplexList {
|
|
141
|
+
protected terraformResource: cdktf.IInterpolatingParent;
|
|
142
|
+
protected terraformAttribute: string;
|
|
143
|
+
protected wrapsSet: boolean;
|
|
144
|
+
/**
|
|
145
|
+
* @param terraformResource The parent resource
|
|
146
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
147
|
+
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
148
|
+
*/
|
|
149
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
|
|
150
|
+
/**
|
|
151
|
+
* @param index the index of the item to return
|
|
152
|
+
*/
|
|
153
|
+
get(index: number): DataAstroClustersClustersTagsOutputReference;
|
|
154
|
+
}
|
|
155
|
+
export interface DataAstroClustersClusters {
|
|
156
|
+
/**
|
|
157
|
+
* Cluster identifier
|
|
158
|
+
*
|
|
159
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/data-sources/clusters#id DataAstroClusters#id}
|
|
160
|
+
*
|
|
161
|
+
* Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.
|
|
162
|
+
* 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.
|
|
163
|
+
*/
|
|
164
|
+
readonly id: string;
|
|
165
|
+
}
|
|
166
|
+
export declare function dataAstroClustersClustersToTerraform(struct?: DataAstroClustersClusters): any;
|
|
167
|
+
export declare function dataAstroClustersClustersToHclTerraform(struct?: DataAstroClustersClusters): any;
|
|
168
|
+
export declare class DataAstroClustersClustersOutputReference extends cdktf.ComplexObject {
|
|
169
|
+
private isEmptyObject;
|
|
170
|
+
/**
|
|
171
|
+
* @param terraformResource The parent resource
|
|
172
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
173
|
+
* @param complexObjectIndex the index of this item in the list
|
|
174
|
+
* @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
175
|
+
*/
|
|
176
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
|
|
177
|
+
get internalValue(): DataAstroClustersClusters | undefined;
|
|
178
|
+
set internalValue(value: DataAstroClustersClusters | undefined);
|
|
179
|
+
get cloudProvider(): any;
|
|
180
|
+
get createdAt(): any;
|
|
181
|
+
get dbInstanceType(): any;
|
|
182
|
+
private _healthStatus;
|
|
183
|
+
get healthStatus(): DataAstroClustersClustersHealthStatusOutputReference;
|
|
184
|
+
private _id?;
|
|
185
|
+
get id(): string;
|
|
186
|
+
set id(value: string);
|
|
187
|
+
get idInput(): string;
|
|
188
|
+
get isLimited(): any;
|
|
189
|
+
private _metadata;
|
|
190
|
+
get metadata(): DataAstroClustersClustersMetadataOutputReference;
|
|
191
|
+
get name(): any;
|
|
192
|
+
private _nodePools;
|
|
193
|
+
get nodePools(): DataAstroClustersClustersNodePoolsList;
|
|
194
|
+
get podSubnetRange(): any;
|
|
195
|
+
get providerAccount(): any;
|
|
196
|
+
get region(): any;
|
|
197
|
+
get servicePeeringRange(): any;
|
|
198
|
+
get serviceSubnetRange(): any;
|
|
199
|
+
get status(): any;
|
|
200
|
+
private _tags;
|
|
201
|
+
get tags(): DataAstroClustersClustersTagsList;
|
|
202
|
+
get tenantId(): any;
|
|
203
|
+
get type(): any;
|
|
204
|
+
get updatedAt(): any;
|
|
205
|
+
get vpcSubnetRange(): any;
|
|
206
|
+
get workspaceIds(): any;
|
|
207
|
+
}
|
|
208
|
+
export declare class DataAstroClustersClustersList extends cdktf.ComplexList {
|
|
209
|
+
protected terraformResource: cdktf.IInterpolatingParent;
|
|
210
|
+
protected terraformAttribute: string;
|
|
211
|
+
protected wrapsSet: boolean;
|
|
212
|
+
internalValue?: DataAstroClustersClusters[] | cdktf.IResolvable;
|
|
213
|
+
/**
|
|
214
|
+
* @param terraformResource The parent resource
|
|
215
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
216
|
+
* @param wrapsSet 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, wrapsSet: boolean);
|
|
219
|
+
/**
|
|
220
|
+
* @param index the index of the item to return
|
|
221
|
+
*/
|
|
222
|
+
get(index: number): DataAstroClustersClustersOutputReference;
|
|
223
|
+
}
|
|
224
|
+
/**
|
|
225
|
+
* Represents a {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/data-sources/clusters astro_clusters}
|
|
226
|
+
*/
|
|
227
|
+
export declare class DataAstroClusters extends cdktf.TerraformDataSource {
|
|
228
|
+
static readonly tfResourceType = "astro_clusters";
|
|
229
|
+
/**
|
|
230
|
+
* Generates CDKTF code for importing a DataAstroClusters resource upon running "cdktf plan <stack-name>"
|
|
231
|
+
* @param scope The scope in which to define this construct
|
|
232
|
+
* @param importToId The construct id used in the generated config for the DataAstroClusters to import
|
|
233
|
+
* @param importFromId The id of the existing DataAstroClusters that should be imported. Refer to the {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/data-sources/clusters#import import section} in the documentation of this resource for the id to use
|
|
234
|
+
* @param provider? Optional instance of the provider where the DataAstroClusters to import is found
|
|
235
|
+
*/
|
|
236
|
+
static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any;
|
|
237
|
+
/**
|
|
238
|
+
* Create a new {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/data-sources/clusters astro_clusters} Data Source
|
|
239
|
+
*
|
|
240
|
+
* @param scope The scope in which to define this construct
|
|
241
|
+
* @param id The scoped construct ID. Must be unique amongst siblings in the same scope
|
|
242
|
+
* @param options DataAstroClustersConfig = {}
|
|
243
|
+
*/
|
|
244
|
+
constructor(scope: Construct, id: string, config?: DataAstroClustersConfig);
|
|
245
|
+
private _cloudProvider?;
|
|
246
|
+
get cloudProvider(): string;
|
|
247
|
+
set cloudProvider(value: string);
|
|
248
|
+
resetCloudProvider(): void;
|
|
249
|
+
get cloudProviderInput(): string;
|
|
250
|
+
private _clusters;
|
|
251
|
+
get clusters(): DataAstroClustersClustersList;
|
|
252
|
+
private _names?;
|
|
253
|
+
get names(): string[];
|
|
254
|
+
set names(value: string[]);
|
|
255
|
+
resetNames(): void;
|
|
256
|
+
get namesInput(): string[];
|
|
257
|
+
protected synthesizeAttributes(): {
|
|
258
|
+
[name: string]: any;
|
|
259
|
+
};
|
|
260
|
+
protected synthesizeHclAttributes(): {
|
|
261
|
+
[name: string]: any;
|
|
262
|
+
};
|
|
263
|
+
}
|