@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,211 @@
|
|
|
1
|
+
import { Construct } from 'constructs';
|
|
2
|
+
import * as cdktf from 'cdktf';
|
|
3
|
+
export interface DataAstroClusterConfig extends cdktf.TerraformMetaArguments {
|
|
4
|
+
/**
|
|
5
|
+
* Cluster identifier
|
|
6
|
+
*
|
|
7
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/data-sources/cluster#id DataAstroCluster#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 DataAstroClusterHealthStatusDetails {
|
|
15
|
+
}
|
|
16
|
+
export declare function dataAstroClusterHealthStatusDetailsToTerraform(struct?: DataAstroClusterHealthStatusDetails): any;
|
|
17
|
+
export declare function dataAstroClusterHealthStatusDetailsToHclTerraform(struct?: DataAstroClusterHealthStatusDetails): any;
|
|
18
|
+
export declare class DataAstroClusterHealthStatusDetailsOutputReference 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
|
+
* @param complexObjectIndex the index of this item in the list
|
|
24
|
+
* @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
25
|
+
*/
|
|
26
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
|
|
27
|
+
get internalValue(): DataAstroClusterHealthStatusDetails | undefined;
|
|
28
|
+
set internalValue(value: DataAstroClusterHealthStatusDetails | undefined);
|
|
29
|
+
get code(): any;
|
|
30
|
+
get description(): any;
|
|
31
|
+
get severity(): any;
|
|
32
|
+
}
|
|
33
|
+
export declare class DataAstroClusterHealthStatusDetailsList extends cdktf.ComplexList {
|
|
34
|
+
protected terraformResource: cdktf.IInterpolatingParent;
|
|
35
|
+
protected terraformAttribute: string;
|
|
36
|
+
protected wrapsSet: boolean;
|
|
37
|
+
/**
|
|
38
|
+
* @param terraformResource The parent resource
|
|
39
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
40
|
+
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
41
|
+
*/
|
|
42
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
|
|
43
|
+
/**
|
|
44
|
+
* @param index the index of the item to return
|
|
45
|
+
*/
|
|
46
|
+
get(index: number): DataAstroClusterHealthStatusDetailsOutputReference;
|
|
47
|
+
}
|
|
48
|
+
export interface DataAstroClusterHealthStatus {
|
|
49
|
+
}
|
|
50
|
+
export declare function dataAstroClusterHealthStatusToTerraform(struct?: DataAstroClusterHealthStatus): any;
|
|
51
|
+
export declare function dataAstroClusterHealthStatusToHclTerraform(struct?: DataAstroClusterHealthStatus): any;
|
|
52
|
+
export declare class DataAstroClusterHealthStatusOutputReference extends cdktf.ComplexObject {
|
|
53
|
+
private isEmptyObject;
|
|
54
|
+
/**
|
|
55
|
+
* @param terraformResource The parent resource
|
|
56
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
57
|
+
*/
|
|
58
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
|
|
59
|
+
get internalValue(): DataAstroClusterHealthStatus | undefined;
|
|
60
|
+
set internalValue(value: DataAstroClusterHealthStatus | undefined);
|
|
61
|
+
private _details;
|
|
62
|
+
get details(): DataAstroClusterHealthStatusDetailsList;
|
|
63
|
+
get value(): any;
|
|
64
|
+
}
|
|
65
|
+
export interface DataAstroClusterMetadata {
|
|
66
|
+
}
|
|
67
|
+
export declare function dataAstroClusterMetadataToTerraform(struct?: DataAstroClusterMetadata): any;
|
|
68
|
+
export declare function dataAstroClusterMetadataToHclTerraform(struct?: DataAstroClusterMetadata): any;
|
|
69
|
+
export declare class DataAstroClusterMetadataOutputReference extends cdktf.ComplexObject {
|
|
70
|
+
private isEmptyObject;
|
|
71
|
+
/**
|
|
72
|
+
* @param terraformResource The parent resource
|
|
73
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
74
|
+
*/
|
|
75
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
|
|
76
|
+
get internalValue(): DataAstroClusterMetadata | undefined;
|
|
77
|
+
set internalValue(value: DataAstroClusterMetadata | undefined);
|
|
78
|
+
get externalIps(): any;
|
|
79
|
+
get kubeDnsIp(): any;
|
|
80
|
+
get oidcIssuerUrl(): any;
|
|
81
|
+
}
|
|
82
|
+
export interface DataAstroClusterNodePools {
|
|
83
|
+
}
|
|
84
|
+
export declare function dataAstroClusterNodePoolsToTerraform(struct?: DataAstroClusterNodePools): any;
|
|
85
|
+
export declare function dataAstroClusterNodePoolsToHclTerraform(struct?: DataAstroClusterNodePools): any;
|
|
86
|
+
export declare class DataAstroClusterNodePoolsOutputReference extends cdktf.ComplexObject {
|
|
87
|
+
private isEmptyObject;
|
|
88
|
+
/**
|
|
89
|
+
* @param terraformResource The parent resource
|
|
90
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
91
|
+
* @param complexObjectIndex the index of this item in the list
|
|
92
|
+
* @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
93
|
+
*/
|
|
94
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
|
|
95
|
+
get internalValue(): DataAstroClusterNodePools | undefined;
|
|
96
|
+
set internalValue(value: DataAstroClusterNodePools | undefined);
|
|
97
|
+
get cloudProvider(): any;
|
|
98
|
+
get clusterId(): any;
|
|
99
|
+
get createdAt(): any;
|
|
100
|
+
get id(): any;
|
|
101
|
+
get isDefault(): any;
|
|
102
|
+
get maxNodeCount(): any;
|
|
103
|
+
get name(): any;
|
|
104
|
+
get nodeInstanceType(): any;
|
|
105
|
+
get supportedAstroMachines(): any;
|
|
106
|
+
get updatedAt(): any;
|
|
107
|
+
}
|
|
108
|
+
export declare class DataAstroClusterNodePoolsList extends cdktf.ComplexList {
|
|
109
|
+
protected terraformResource: cdktf.IInterpolatingParent;
|
|
110
|
+
protected terraformAttribute: string;
|
|
111
|
+
protected wrapsSet: boolean;
|
|
112
|
+
/**
|
|
113
|
+
* @param terraformResource The parent resource
|
|
114
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
115
|
+
* @param wrapsSet 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, wrapsSet: boolean);
|
|
118
|
+
/**
|
|
119
|
+
* @param index the index of the item to return
|
|
120
|
+
*/
|
|
121
|
+
get(index: number): DataAstroClusterNodePoolsOutputReference;
|
|
122
|
+
}
|
|
123
|
+
export interface DataAstroClusterTags {
|
|
124
|
+
}
|
|
125
|
+
export declare function dataAstroClusterTagsToTerraform(struct?: DataAstroClusterTags): any;
|
|
126
|
+
export declare function dataAstroClusterTagsToHclTerraform(struct?: DataAstroClusterTags): any;
|
|
127
|
+
export declare class DataAstroClusterTagsOutputReference extends cdktf.ComplexObject {
|
|
128
|
+
private isEmptyObject;
|
|
129
|
+
/**
|
|
130
|
+
* @param terraformResource The parent resource
|
|
131
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
132
|
+
* @param complexObjectIndex the index of this item in the list
|
|
133
|
+
* @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
134
|
+
*/
|
|
135
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
|
|
136
|
+
get internalValue(): DataAstroClusterTags | undefined;
|
|
137
|
+
set internalValue(value: DataAstroClusterTags | undefined);
|
|
138
|
+
get key(): any;
|
|
139
|
+
get value(): any;
|
|
140
|
+
}
|
|
141
|
+
export declare class DataAstroClusterTagsList extends cdktf.ComplexList {
|
|
142
|
+
protected terraformResource: cdktf.IInterpolatingParent;
|
|
143
|
+
protected terraformAttribute: string;
|
|
144
|
+
protected wrapsSet: boolean;
|
|
145
|
+
/**
|
|
146
|
+
* @param terraformResource The parent resource
|
|
147
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
148
|
+
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
149
|
+
*/
|
|
150
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
|
|
151
|
+
/**
|
|
152
|
+
* @param index the index of the item to return
|
|
153
|
+
*/
|
|
154
|
+
get(index: number): DataAstroClusterTagsOutputReference;
|
|
155
|
+
}
|
|
156
|
+
/**
|
|
157
|
+
* Represents a {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/data-sources/cluster astro_cluster}
|
|
158
|
+
*/
|
|
159
|
+
export declare class DataAstroCluster extends cdktf.TerraformDataSource {
|
|
160
|
+
static readonly tfResourceType = "astro_cluster";
|
|
161
|
+
/**
|
|
162
|
+
* Generates CDKTF code for importing a DataAstroCluster resource upon running "cdktf plan <stack-name>"
|
|
163
|
+
* @param scope The scope in which to define this construct
|
|
164
|
+
* @param importToId The construct id used in the generated config for the DataAstroCluster to import
|
|
165
|
+
* @param importFromId The id of the existing DataAstroCluster that should be imported. Refer to the {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/data-sources/cluster#import import section} in the documentation of this resource for the id to use
|
|
166
|
+
* @param provider? Optional instance of the provider where the DataAstroCluster to import is found
|
|
167
|
+
*/
|
|
168
|
+
static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any;
|
|
169
|
+
/**
|
|
170
|
+
* Create a new {@link https://registry.terraform.io/providers/astronomer/astro/1.0.8/docs/data-sources/cluster astro_cluster} Data Source
|
|
171
|
+
*
|
|
172
|
+
* @param scope The scope in which to define this construct
|
|
173
|
+
* @param id The scoped construct ID. Must be unique amongst siblings in the same scope
|
|
174
|
+
* @param options DataAstroClusterConfig
|
|
175
|
+
*/
|
|
176
|
+
constructor(scope: Construct, id: string, config: DataAstroClusterConfig);
|
|
177
|
+
get cloudProvider(): any;
|
|
178
|
+
get createdAt(): any;
|
|
179
|
+
get dbInstanceType(): any;
|
|
180
|
+
private _healthStatus;
|
|
181
|
+
get healthStatus(): DataAstroClusterHealthStatusOutputReference;
|
|
182
|
+
private _id?;
|
|
183
|
+
get id(): string;
|
|
184
|
+
set id(value: string);
|
|
185
|
+
get idInput(): string;
|
|
186
|
+
get isLimited(): any;
|
|
187
|
+
private _metadata;
|
|
188
|
+
get metadata(): DataAstroClusterMetadataOutputReference;
|
|
189
|
+
get name(): any;
|
|
190
|
+
private _nodePools;
|
|
191
|
+
get nodePools(): DataAstroClusterNodePoolsList;
|
|
192
|
+
get podSubnetRange(): any;
|
|
193
|
+
get providerAccount(): any;
|
|
194
|
+
get region(): any;
|
|
195
|
+
get servicePeeringRange(): any;
|
|
196
|
+
get serviceSubnetRange(): any;
|
|
197
|
+
get status(): any;
|
|
198
|
+
private _tags;
|
|
199
|
+
get tags(): DataAstroClusterTagsList;
|
|
200
|
+
get tenantId(): any;
|
|
201
|
+
get type(): any;
|
|
202
|
+
get updatedAt(): any;
|
|
203
|
+
get vpcSubnetRange(): any;
|
|
204
|
+
get workspaceIds(): any;
|
|
205
|
+
protected synthesizeAttributes(): {
|
|
206
|
+
[name: string]: any;
|
|
207
|
+
};
|
|
208
|
+
protected synthesizeHclAttributes(): {
|
|
209
|
+
[name: string]: any;
|
|
210
|
+
};
|
|
211
|
+
}
|