@mikarinneoracle/oci-cdk-code-only-preview 0.0.1 → 0.0.2
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/package.json +1 -1
- package/lib/.gen/providers/oci/identity-dynamic-group/index.d.ts +0 -166
- package/lib/.gen/providers/oci/identity-dynamic-group/index.js +0 -408
- package/lib/bin/deploy-with-build.js +0 -132
- package/lib/test/java-function/aws-cdk/bin/app.d.ts +0 -2
- package/lib/test/java-function/aws-cdk/bin/app.js +0 -51
- package/lib/test/java-function/aws-cdk/lib/function-stack.d.ts +0 -11
- package/lib/test/java-function/aws-cdk/lib/function-stack.js +0 -159
- package/lib/test/java-function/aws-cdk/lib/test-function-stack.d.ts +0 -5
- package/lib/test/java-function/aws-cdk/lib/test-function-stack.js +0 -94
- package/lib/test/java-function/oci-cdk/.gen/providers/oci/apigateway-deployment/index.d.ts +0 -5356
- package/lib/test/java-function/oci-cdk/.gen/providers/oci/apigateway-deployment/index.js +0 -14972
- package/lib/test/java-function/oci-cdk/.gen/providers/oci/apigateway-gateway/index.d.ts +0 -449
- package/lib/test/java-function/oci-cdk/.gen/providers/oci/apigateway-gateway/index.js +0 -1149
- package/lib/test/java-function/oci-cdk/.gen/providers/oci/artifacts-container-repository/index.d.ts +0 -217
- package/lib/test/java-function/oci-cdk/.gen/providers/oci/artifacts-container-repository/index.js +0 -563
- package/lib/test/java-function/oci-cdk/.gen/providers/oci/core-internet-gateway/index.d.ts +0 -176
- package/lib/test/java-function/oci-cdk/.gen/providers/oci/core-internet-gateway/index.js +0 -431
- package/lib/test/java-function/oci-cdk/.gen/providers/oci/core-route-table/index.d.ts +0 -255
- package/lib/test/java-function/oci-cdk/.gen/providers/oci/core-route-table/index.js +0 -644
- package/lib/test/java-function/oci-cdk/.gen/providers/oci/core-security-list/index.d.ts +0 -752
- package/lib/test/java-function/oci-cdk/.gen/providers/oci/core-security-list/index.js +0 -2091
- package/lib/test/java-function/oci-cdk/.gen/providers/oci/core-service-gateway/index.d.ts +0 -220
- package/lib/test/java-function/oci-cdk/.gen/providers/oci/core-service-gateway/index.js +0 -543
- package/lib/test/java-function/oci-cdk/.gen/providers/oci/core-subnet/index.d.ts +0 -251
- package/lib/test/java-function/oci-cdk/.gen/providers/oci/core-subnet/index.js +0 -612
- package/lib/test/java-function/oci-cdk/.gen/providers/oci/core-vcn/index.d.ts +0 -270
- package/lib/test/java-function/oci-cdk/.gen/providers/oci/core-vcn/index.js +0 -672
- package/lib/test/java-function/oci-cdk/.gen/providers/oci/data-oci-core-services/index.d.ts +0 -150
- package/lib/test/java-function/oci-cdk/.gen/providers/oci/data-oci-core-services/index.js +0 -386
- package/lib/test/java-function/oci-cdk/.gen/providers/oci/functions-application/index.d.ts +0 -330
- package/lib/test/java-function/oci-cdk/.gen/providers/oci/functions-application/index.js +0 -821
- package/lib/test/java-function/oci-cdk/.gen/providers/oci/functions-function/index.d.ts +0 -322
- package/lib/test/java-function/oci-cdk/.gen/providers/oci/functions-function/index.js +0 -820
- package/lib/test/java-function/oci-cdk/.gen/providers/oci/provider/index.d.ts +0 -190
- package/lib/test/java-function/oci-cdk/.gen/providers/oci/provider/index.js +0 -391
- package/lib/test/java-function/oci-cdk/.gen/providers/oci/vault-secret/index.d.ts +0 -439
- package/lib/test/java-function/oci-cdk/.gen/providers/oci/vault-secret/index.js +0 -1146
- package/lib/test/java-function/oci-cdk/bin/app.d.ts +0 -2
- package/lib/test/java-function/oci-cdk/bin/app.js +0 -34
- package/lib/test/java-function/oci-cdk/config/oci-config.d.ts +0 -68
- package/lib/test/java-function/oci-cdk/config/oci-config.js +0 -202
- package/lib/test/java-function/oci-cdk/lib/function-stack.d.ts +0 -31
- package/lib/test/java-function/oci-cdk/lib/function-stack.js +0 -549
- package/lib/test/java-function/oci-cdk/lib/test-function-stack.d.ts +0 -17
- package/lib/test/java-function/oci-cdk/lib/test-function-stack.js +0 -99
|
@@ -1,270 +0,0 @@
|
|
|
1
|
-
import { Construct } from 'constructs';
|
|
2
|
-
import * as cdktf from 'cdktf';
|
|
3
|
-
export interface CoreVcnConfig extends cdktf.TerraformMetaArguments {
|
|
4
|
-
/**
|
|
5
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/core_vcn#cidr_block CoreVcn#cidr_block}
|
|
6
|
-
*/
|
|
7
|
-
readonly cidrBlock?: string;
|
|
8
|
-
/**
|
|
9
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/core_vcn#cidr_blocks CoreVcn#cidr_blocks}
|
|
10
|
-
*/
|
|
11
|
-
readonly cidrBlocks?: string[];
|
|
12
|
-
/**
|
|
13
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/core_vcn#compartment_id CoreVcn#compartment_id}
|
|
14
|
-
*/
|
|
15
|
-
readonly compartmentId: string;
|
|
16
|
-
/**
|
|
17
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/core_vcn#defined_tags CoreVcn#defined_tags}
|
|
18
|
-
*/
|
|
19
|
-
readonly definedTags?: {
|
|
20
|
-
[key: string]: string;
|
|
21
|
-
};
|
|
22
|
-
/**
|
|
23
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/core_vcn#display_name CoreVcn#display_name}
|
|
24
|
-
*/
|
|
25
|
-
readonly displayName?: string;
|
|
26
|
-
/**
|
|
27
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/core_vcn#dns_label CoreVcn#dns_label}
|
|
28
|
-
*/
|
|
29
|
-
readonly dnsLabel?: string;
|
|
30
|
-
/**
|
|
31
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/core_vcn#freeform_tags CoreVcn#freeform_tags}
|
|
32
|
-
*/
|
|
33
|
-
readonly freeformTags?: {
|
|
34
|
-
[key: string]: string;
|
|
35
|
-
};
|
|
36
|
-
/**
|
|
37
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/core_vcn#id CoreVcn#id}
|
|
38
|
-
*
|
|
39
|
-
* Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.
|
|
40
|
-
* 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.
|
|
41
|
-
*/
|
|
42
|
-
readonly id?: string;
|
|
43
|
-
/**
|
|
44
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/core_vcn#ipv6private_cidr_blocks CoreVcn#ipv6private_cidr_blocks}
|
|
45
|
-
*/
|
|
46
|
-
readonly ipv6PrivateCidrBlocks?: string[];
|
|
47
|
-
/**
|
|
48
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/core_vcn#is_ipv6enabled CoreVcn#is_ipv6enabled}
|
|
49
|
-
*/
|
|
50
|
-
readonly isIpv6Enabled?: boolean | cdktf.IResolvable;
|
|
51
|
-
/**
|
|
52
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/core_vcn#is_oracle_gua_allocation_enabled CoreVcn#is_oracle_gua_allocation_enabled}
|
|
53
|
-
*/
|
|
54
|
-
readonly isOracleGuaAllocationEnabled?: boolean | cdktf.IResolvable;
|
|
55
|
-
/**
|
|
56
|
-
* byoipv6cidr_details block
|
|
57
|
-
*
|
|
58
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/core_vcn#byoipv6cidr_details CoreVcn#byoipv6cidr_details}
|
|
59
|
-
*/
|
|
60
|
-
readonly byoipv6CidrDetails?: CoreVcnByoipv6CidrDetails[] | cdktf.IResolvable;
|
|
61
|
-
/**
|
|
62
|
-
* timeouts block
|
|
63
|
-
*
|
|
64
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/core_vcn#timeouts CoreVcn#timeouts}
|
|
65
|
-
*/
|
|
66
|
-
readonly timeouts?: CoreVcnTimeouts;
|
|
67
|
-
}
|
|
68
|
-
export interface CoreVcnByoipv6CidrDetails {
|
|
69
|
-
/**
|
|
70
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/core_vcn#byoipv6range_id CoreVcn#byoipv6range_id}
|
|
71
|
-
*/
|
|
72
|
-
readonly byoipv6RangeId: string;
|
|
73
|
-
/**
|
|
74
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/core_vcn#ipv6cidr_block CoreVcn#ipv6cidr_block}
|
|
75
|
-
*/
|
|
76
|
-
readonly ipv6CidrBlock: string;
|
|
77
|
-
}
|
|
78
|
-
export declare function coreVcnByoipv6CidrDetailsToTerraform(struct?: CoreVcnByoipv6CidrDetails | cdktf.IResolvable): any;
|
|
79
|
-
export declare function coreVcnByoipv6CidrDetailsToHclTerraform(struct?: CoreVcnByoipv6CidrDetails | cdktf.IResolvable): any;
|
|
80
|
-
export declare class CoreVcnByoipv6CidrDetailsOutputReference extends cdktf.ComplexObject {
|
|
81
|
-
private isEmptyObject;
|
|
82
|
-
private resolvableValue?;
|
|
83
|
-
/**
|
|
84
|
-
* @param terraformResource The parent resource
|
|
85
|
-
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
86
|
-
* @param complexObjectIndex the index of this item in the list
|
|
87
|
-
* @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
88
|
-
*/
|
|
89
|
-
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
|
|
90
|
-
get internalValue(): CoreVcnByoipv6CidrDetails | cdktf.IResolvable | undefined;
|
|
91
|
-
set internalValue(value: CoreVcnByoipv6CidrDetails | cdktf.IResolvable | undefined);
|
|
92
|
-
private _byoipv6RangeId?;
|
|
93
|
-
get byoipv6RangeId(): string;
|
|
94
|
-
set byoipv6RangeId(value: string);
|
|
95
|
-
get byoipv6RangeIdInput(): string | undefined;
|
|
96
|
-
private _ipv6CidrBlock?;
|
|
97
|
-
get ipv6CidrBlock(): string;
|
|
98
|
-
set ipv6CidrBlock(value: string);
|
|
99
|
-
get ipv6CidrBlockInput(): string | undefined;
|
|
100
|
-
}
|
|
101
|
-
export declare class CoreVcnByoipv6CidrDetailsList extends cdktf.ComplexList {
|
|
102
|
-
protected terraformResource: cdktf.IInterpolatingParent;
|
|
103
|
-
protected terraformAttribute: string;
|
|
104
|
-
protected wrapsSet: boolean;
|
|
105
|
-
internalValue?: CoreVcnByoipv6CidrDetails[] | cdktf.IResolvable;
|
|
106
|
-
/**
|
|
107
|
-
* @param terraformResource The parent resource
|
|
108
|
-
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
109
|
-
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
110
|
-
*/
|
|
111
|
-
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
|
|
112
|
-
/**
|
|
113
|
-
* @param index the index of the item to return
|
|
114
|
-
*/
|
|
115
|
-
get(index: number): CoreVcnByoipv6CidrDetailsOutputReference;
|
|
116
|
-
}
|
|
117
|
-
export interface CoreVcnTimeouts {
|
|
118
|
-
/**
|
|
119
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/core_vcn#create CoreVcn#create}
|
|
120
|
-
*/
|
|
121
|
-
readonly create?: string;
|
|
122
|
-
/**
|
|
123
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/core_vcn#delete CoreVcn#delete}
|
|
124
|
-
*/
|
|
125
|
-
readonly delete?: string;
|
|
126
|
-
/**
|
|
127
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/core_vcn#update CoreVcn#update}
|
|
128
|
-
*/
|
|
129
|
-
readonly update?: string;
|
|
130
|
-
}
|
|
131
|
-
export declare function coreVcnTimeoutsToTerraform(struct?: CoreVcnTimeouts | cdktf.IResolvable): any;
|
|
132
|
-
export declare function coreVcnTimeoutsToHclTerraform(struct?: CoreVcnTimeouts | cdktf.IResolvable): any;
|
|
133
|
-
export declare class CoreVcnTimeoutsOutputReference extends cdktf.ComplexObject {
|
|
134
|
-
private isEmptyObject;
|
|
135
|
-
private resolvableValue?;
|
|
136
|
-
/**
|
|
137
|
-
* @param terraformResource The parent resource
|
|
138
|
-
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
139
|
-
*/
|
|
140
|
-
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
|
|
141
|
-
get internalValue(): CoreVcnTimeouts | cdktf.IResolvable | undefined;
|
|
142
|
-
set internalValue(value: CoreVcnTimeouts | cdktf.IResolvable | undefined);
|
|
143
|
-
private _create?;
|
|
144
|
-
get create(): string;
|
|
145
|
-
set create(value: string);
|
|
146
|
-
resetCreate(): void;
|
|
147
|
-
get createInput(): string | undefined;
|
|
148
|
-
private _delete?;
|
|
149
|
-
get delete(): string;
|
|
150
|
-
set delete(value: string);
|
|
151
|
-
resetDelete(): void;
|
|
152
|
-
get deleteInput(): string | undefined;
|
|
153
|
-
private _update?;
|
|
154
|
-
get update(): string;
|
|
155
|
-
set update(value: string);
|
|
156
|
-
resetUpdate(): void;
|
|
157
|
-
get updateInput(): string | undefined;
|
|
158
|
-
}
|
|
159
|
-
/**
|
|
160
|
-
* Represents a {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/core_vcn oci_core_vcn}
|
|
161
|
-
*/
|
|
162
|
-
export declare class CoreVcn extends cdktf.TerraformResource {
|
|
163
|
-
static readonly tfResourceType = "oci_core_vcn";
|
|
164
|
-
/**
|
|
165
|
-
* Generates CDKTF code for importing a CoreVcn resource upon running "cdktf plan <stack-name>"
|
|
166
|
-
* @param scope The scope in which to define this construct
|
|
167
|
-
* @param importToId The construct id used in the generated config for the CoreVcn to import
|
|
168
|
-
* @param importFromId The id of the existing CoreVcn that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/core_vcn#import import section} in the documentation of this resource for the id to use
|
|
169
|
-
* @param provider? Optional instance of the provider where the CoreVcn to import is found
|
|
170
|
-
*/
|
|
171
|
-
static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): cdktf.ImportableResource;
|
|
172
|
-
/**
|
|
173
|
-
* Create a new {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/core_vcn oci_core_vcn} Resource
|
|
174
|
-
*
|
|
175
|
-
* @param scope The scope in which to define this construct
|
|
176
|
-
* @param id The scoped construct ID. Must be unique amongst siblings in the same scope
|
|
177
|
-
* @param options CoreVcnConfig
|
|
178
|
-
*/
|
|
179
|
-
constructor(scope: Construct, id: string, config: CoreVcnConfig);
|
|
180
|
-
get byoipv6CidrBlocks(): string[];
|
|
181
|
-
private _cidrBlock?;
|
|
182
|
-
get cidrBlock(): string;
|
|
183
|
-
set cidrBlock(value: string);
|
|
184
|
-
resetCidrBlock(): void;
|
|
185
|
-
get cidrBlockInput(): string | undefined;
|
|
186
|
-
private _cidrBlocks?;
|
|
187
|
-
get cidrBlocks(): string[];
|
|
188
|
-
set cidrBlocks(value: string[]);
|
|
189
|
-
resetCidrBlocks(): void;
|
|
190
|
-
get cidrBlocksInput(): string[] | undefined;
|
|
191
|
-
private _compartmentId?;
|
|
192
|
-
get compartmentId(): string;
|
|
193
|
-
set compartmentId(value: string);
|
|
194
|
-
get compartmentIdInput(): string | undefined;
|
|
195
|
-
get defaultDhcpOptionsId(): string;
|
|
196
|
-
get defaultRouteTableId(): string;
|
|
197
|
-
get defaultSecurityListId(): string;
|
|
198
|
-
private _definedTags?;
|
|
199
|
-
get definedTags(): {
|
|
200
|
-
[key: string]: string;
|
|
201
|
-
};
|
|
202
|
-
set definedTags(value: {
|
|
203
|
-
[key: string]: string;
|
|
204
|
-
});
|
|
205
|
-
resetDefinedTags(): void;
|
|
206
|
-
get definedTagsInput(): {
|
|
207
|
-
[key: string]: string;
|
|
208
|
-
} | undefined;
|
|
209
|
-
private _displayName?;
|
|
210
|
-
get displayName(): string;
|
|
211
|
-
set displayName(value: string);
|
|
212
|
-
resetDisplayName(): void;
|
|
213
|
-
get displayNameInput(): string | undefined;
|
|
214
|
-
private _dnsLabel?;
|
|
215
|
-
get dnsLabel(): string;
|
|
216
|
-
set dnsLabel(value: string);
|
|
217
|
-
resetDnsLabel(): void;
|
|
218
|
-
get dnsLabelInput(): string | undefined;
|
|
219
|
-
private _freeformTags?;
|
|
220
|
-
get freeformTags(): {
|
|
221
|
-
[key: string]: string;
|
|
222
|
-
};
|
|
223
|
-
set freeformTags(value: {
|
|
224
|
-
[key: string]: string;
|
|
225
|
-
});
|
|
226
|
-
resetFreeformTags(): void;
|
|
227
|
-
get freeformTagsInput(): {
|
|
228
|
-
[key: string]: string;
|
|
229
|
-
} | undefined;
|
|
230
|
-
private _id?;
|
|
231
|
-
get id(): string;
|
|
232
|
-
set id(value: string);
|
|
233
|
-
resetId(): void;
|
|
234
|
-
get idInput(): string | undefined;
|
|
235
|
-
get ipv6CidrBlocks(): string[];
|
|
236
|
-
private _ipv6PrivateCidrBlocks?;
|
|
237
|
-
get ipv6PrivateCidrBlocks(): string[];
|
|
238
|
-
set ipv6PrivateCidrBlocks(value: string[]);
|
|
239
|
-
resetIpv6PrivateCidrBlocks(): void;
|
|
240
|
-
get ipv6PrivateCidrBlocksInput(): string[] | undefined;
|
|
241
|
-
private _isIpv6Enabled?;
|
|
242
|
-
get isIpv6Enabled(): boolean | cdktf.IResolvable;
|
|
243
|
-
set isIpv6Enabled(value: boolean | cdktf.IResolvable);
|
|
244
|
-
resetIsIpv6Enabled(): void;
|
|
245
|
-
get isIpv6EnabledInput(): boolean | cdktf.IResolvable | undefined;
|
|
246
|
-
private _isOracleGuaAllocationEnabled?;
|
|
247
|
-
get isOracleGuaAllocationEnabled(): boolean | cdktf.IResolvable;
|
|
248
|
-
set isOracleGuaAllocationEnabled(value: boolean | cdktf.IResolvable);
|
|
249
|
-
resetIsOracleGuaAllocationEnabled(): void;
|
|
250
|
-
get isOracleGuaAllocationEnabledInput(): boolean | cdktf.IResolvable | undefined;
|
|
251
|
-
get state(): string;
|
|
252
|
-
get timeCreated(): string;
|
|
253
|
-
get vcnDomainName(): string;
|
|
254
|
-
private _byoipv6CidrDetails;
|
|
255
|
-
get byoipv6CidrDetails(): CoreVcnByoipv6CidrDetailsList;
|
|
256
|
-
putByoipv6CidrDetails(value: CoreVcnByoipv6CidrDetails[] | cdktf.IResolvable): void;
|
|
257
|
-
resetByoipv6CidrDetails(): void;
|
|
258
|
-
get byoipv6CidrDetailsInput(): cdktf.IResolvable | CoreVcnByoipv6CidrDetails[] | undefined;
|
|
259
|
-
private _timeouts;
|
|
260
|
-
get timeouts(): CoreVcnTimeoutsOutputReference;
|
|
261
|
-
putTimeouts(value: CoreVcnTimeouts): void;
|
|
262
|
-
resetTimeouts(): void;
|
|
263
|
-
get timeoutsInput(): cdktf.IResolvable | CoreVcnTimeouts | undefined;
|
|
264
|
-
protected synthesizeAttributes(): {
|
|
265
|
-
[name: string]: any;
|
|
266
|
-
};
|
|
267
|
-
protected synthesizeHclAttributes(): {
|
|
268
|
-
[name: string]: any;
|
|
269
|
-
};
|
|
270
|
-
}
|