-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
227 lines (208 loc) · 7.73 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
// https://registry.terraform.io/providers/mongodb/mongodbatlas/1.29.0/docs/resources/access_list_api_key
// generated from terraform resource schema
import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
// Configuration
export interface AccessListApiKeyConfig extends cdktf.TerraformMetaArguments {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mongodb/mongodbatlas/1.29.0/docs/resources/access_list_api_key#api_key_id AccessListApiKey#api_key_id}
*/
readonly apiKeyId: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mongodb/mongodbatlas/1.29.0/docs/resources/access_list_api_key#cidr_block AccessListApiKey#cidr_block}
*/
readonly cidrBlock?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mongodb/mongodbatlas/1.29.0/docs/resources/access_list_api_key#id AccessListApiKey#id}
*
* Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.
* 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.
*/
readonly id?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mongodb/mongodbatlas/1.29.0/docs/resources/access_list_api_key#ip_address AccessListApiKey#ip_address}
*/
readonly ipAddress?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mongodb/mongodbatlas/1.29.0/docs/resources/access_list_api_key#org_id AccessListApiKey#org_id}
*/
readonly orgId: string;
}
/**
* Represents a {@link https://registry.terraform.io/providers/mongodb/mongodbatlas/1.29.0/docs/resources/access_list_api_key mongodbatlas_access_list_api_key}
*/
export class AccessListApiKey extends cdktf.TerraformResource {
// =================
// STATIC PROPERTIES
// =================
public static readonly tfResourceType = "mongodbatlas_access_list_api_key";
// ==============
// STATIC Methods
// ==============
/**
* Generates CDKTF code for importing a AccessListApiKey resource upon running "cdktf plan <stack-name>"
* @param scope The scope in which to define this construct
* @param importToId The construct id used in the generated config for the AccessListApiKey to import
* @param importFromId The id of the existing AccessListApiKey that should be imported. Refer to the {@link https://registry.terraform.io/providers/mongodb/mongodbatlas/1.29.0/docs/resources/access_list_api_key#import import section} in the documentation of this resource for the id to use
* @param provider? Optional instance of the provider where the AccessListApiKey to import is found
*/
public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) {
return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "mongodbatlas_access_list_api_key", importId: importFromId, provider });
}
// ===========
// INITIALIZER
// ===========
/**
* Create a new {@link https://registry.terraform.io/providers/mongodb/mongodbatlas/1.29.0/docs/resources/access_list_api_key mongodbatlas_access_list_api_key} Resource
*
* @param scope The scope in which to define this construct
* @param id The scoped construct ID. Must be unique amongst siblings in the same scope
* @param options AccessListApiKeyConfig
*/
public constructor(scope: Construct, id: string, config: AccessListApiKeyConfig) {
super(scope, id, {
terraformResourceType: 'mongodbatlas_access_list_api_key',
terraformGeneratorMetadata: {
providerName: 'mongodbatlas',
providerVersion: '1.29.0',
providerVersionConstraint: '~> 1.8'
},
provider: config.provider,
dependsOn: config.dependsOn,
count: config.count,
lifecycle: config.lifecycle,
provisioners: config.provisioners,
connection: config.connection,
forEach: config.forEach
});
this._apiKeyId = config.apiKeyId;
this._cidrBlock = config.cidrBlock;
this._id = config.id;
this._ipAddress = config.ipAddress;
this._orgId = config.orgId;
}
// ==========
// ATTRIBUTES
// ==========
// api_key_id - computed: false, optional: false, required: true
private _apiKeyId?: string;
public get apiKeyId() {
return this.getStringAttribute('api_key_id');
}
public set apiKeyId(value: string) {
this._apiKeyId = value;
}
// Temporarily expose input value. Use with caution.
public get apiKeyIdInput() {
return this._apiKeyId;
}
// cidr_block - computed: true, optional: true, required: false
private _cidrBlock?: string;
public get cidrBlock() {
return this.getStringAttribute('cidr_block');
}
public set cidrBlock(value: string) {
this._cidrBlock = value;
}
public resetCidrBlock() {
this._cidrBlock = undefined;
}
// Temporarily expose input value. Use with caution.
public get cidrBlockInput() {
return this._cidrBlock;
}
// id - computed: true, optional: true, required: false
private _id?: string;
public get id() {
return this.getStringAttribute('id');
}
public set id(value: string) {
this._id = value;
}
public resetId() {
this._id = undefined;
}
// Temporarily expose input value. Use with caution.
public get idInput() {
return this._id;
}
// ip_address - computed: true, optional: true, required: false
private _ipAddress?: string;
public get ipAddress() {
return this.getStringAttribute('ip_address');
}
public set ipAddress(value: string) {
this._ipAddress = value;
}
public resetIpAddress() {
this._ipAddress = undefined;
}
// Temporarily expose input value. Use with caution.
public get ipAddressInput() {
return this._ipAddress;
}
// org_id - computed: false, optional: false, required: true
private _orgId?: string;
public get orgId() {
return this.getStringAttribute('org_id');
}
public set orgId(value: string) {
this._orgId = value;
}
// Temporarily expose input value. Use with caution.
public get orgIdInput() {
return this._orgId;
}
// =========
// SYNTHESIS
// =========
protected synthesizeAttributes(): { [name: string]: any } {
return {
api_key_id: cdktf.stringToTerraform(this._apiKeyId),
cidr_block: cdktf.stringToTerraform(this._cidrBlock),
id: cdktf.stringToTerraform(this._id),
ip_address: cdktf.stringToTerraform(this._ipAddress),
org_id: cdktf.stringToTerraform(this._orgId),
};
}
protected synthesizeHclAttributes(): { [name: string]: any } {
const attrs = {
api_key_id: {
value: cdktf.stringToHclTerraform(this._apiKeyId),
isBlock: false,
type: "simple",
storageClassType: "string",
},
cidr_block: {
value: cdktf.stringToHclTerraform(this._cidrBlock),
isBlock: false,
type: "simple",
storageClassType: "string",
},
id: {
value: cdktf.stringToHclTerraform(this._id),
isBlock: false,
type: "simple",
storageClassType: "string",
},
ip_address: {
value: cdktf.stringToHclTerraform(this._ipAddress),
isBlock: false,
type: "simple",
storageClassType: "string",
},
org_id: {
value: cdktf.stringToHclTerraform(this._orgId),
isBlock: false,
type: "simple",
storageClassType: "string",
},
};
// remove undefined attributes
return Object.fromEntries(Object.entries(attrs).filter(([_, value]) => value !== undefined && value.value !== undefined ))
}
}