@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,176 +0,0 @@
|
|
|
1
|
-
import { Construct } from 'constructs';
|
|
2
|
-
import * as cdktf from 'cdktf';
|
|
3
|
-
export interface CoreInternetGatewayConfig extends cdktf.TerraformMetaArguments {
|
|
4
|
-
/**
|
|
5
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/core_internet_gateway#compartment_id CoreInternetGateway#compartment_id}
|
|
6
|
-
*/
|
|
7
|
-
readonly compartmentId: string;
|
|
8
|
-
/**
|
|
9
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/core_internet_gateway#defined_tags CoreInternetGateway#defined_tags}
|
|
10
|
-
*/
|
|
11
|
-
readonly definedTags?: {
|
|
12
|
-
[key: string]: string;
|
|
13
|
-
};
|
|
14
|
-
/**
|
|
15
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/core_internet_gateway#display_name CoreInternetGateway#display_name}
|
|
16
|
-
*/
|
|
17
|
-
readonly displayName?: string;
|
|
18
|
-
/**
|
|
19
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/core_internet_gateway#enabled CoreInternetGateway#enabled}
|
|
20
|
-
*/
|
|
21
|
-
readonly enabled?: boolean | cdktf.IResolvable;
|
|
22
|
-
/**
|
|
23
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/core_internet_gateway#freeform_tags CoreInternetGateway#freeform_tags}
|
|
24
|
-
*/
|
|
25
|
-
readonly freeformTags?: {
|
|
26
|
-
[key: string]: string;
|
|
27
|
-
};
|
|
28
|
-
/**
|
|
29
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/core_internet_gateway#id CoreInternetGateway#id}
|
|
30
|
-
*
|
|
31
|
-
* Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.
|
|
32
|
-
* 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.
|
|
33
|
-
*/
|
|
34
|
-
readonly id?: string;
|
|
35
|
-
/**
|
|
36
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/core_internet_gateway#route_table_id CoreInternetGateway#route_table_id}
|
|
37
|
-
*/
|
|
38
|
-
readonly routeTableId?: string;
|
|
39
|
-
/**
|
|
40
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/core_internet_gateway#vcn_id CoreInternetGateway#vcn_id}
|
|
41
|
-
*/
|
|
42
|
-
readonly vcnId: string;
|
|
43
|
-
/**
|
|
44
|
-
* timeouts block
|
|
45
|
-
*
|
|
46
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/core_internet_gateway#timeouts CoreInternetGateway#timeouts}
|
|
47
|
-
*/
|
|
48
|
-
readonly timeouts?: CoreInternetGatewayTimeouts;
|
|
49
|
-
}
|
|
50
|
-
export interface CoreInternetGatewayTimeouts {
|
|
51
|
-
/**
|
|
52
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/core_internet_gateway#create CoreInternetGateway#create}
|
|
53
|
-
*/
|
|
54
|
-
readonly create?: string;
|
|
55
|
-
/**
|
|
56
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/core_internet_gateway#delete CoreInternetGateway#delete}
|
|
57
|
-
*/
|
|
58
|
-
readonly delete?: string;
|
|
59
|
-
/**
|
|
60
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/core_internet_gateway#update CoreInternetGateway#update}
|
|
61
|
-
*/
|
|
62
|
-
readonly update?: string;
|
|
63
|
-
}
|
|
64
|
-
export declare function coreInternetGatewayTimeoutsToTerraform(struct?: CoreInternetGatewayTimeouts | cdktf.IResolvable): any;
|
|
65
|
-
export declare function coreInternetGatewayTimeoutsToHclTerraform(struct?: CoreInternetGatewayTimeouts | cdktf.IResolvable): any;
|
|
66
|
-
export declare class CoreInternetGatewayTimeoutsOutputReference extends cdktf.ComplexObject {
|
|
67
|
-
private isEmptyObject;
|
|
68
|
-
private resolvableValue?;
|
|
69
|
-
/**
|
|
70
|
-
* @param terraformResource The parent resource
|
|
71
|
-
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
72
|
-
*/
|
|
73
|
-
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
|
|
74
|
-
get internalValue(): CoreInternetGatewayTimeouts | cdktf.IResolvable | undefined;
|
|
75
|
-
set internalValue(value: CoreInternetGatewayTimeouts | cdktf.IResolvable | undefined);
|
|
76
|
-
private _create?;
|
|
77
|
-
get create(): string;
|
|
78
|
-
set create(value: string);
|
|
79
|
-
resetCreate(): void;
|
|
80
|
-
get createInput(): string | undefined;
|
|
81
|
-
private _delete?;
|
|
82
|
-
get delete(): string;
|
|
83
|
-
set delete(value: string);
|
|
84
|
-
resetDelete(): void;
|
|
85
|
-
get deleteInput(): string | undefined;
|
|
86
|
-
private _update?;
|
|
87
|
-
get update(): string;
|
|
88
|
-
set update(value: string);
|
|
89
|
-
resetUpdate(): void;
|
|
90
|
-
get updateInput(): string | undefined;
|
|
91
|
-
}
|
|
92
|
-
/**
|
|
93
|
-
* Represents a {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/core_internet_gateway oci_core_internet_gateway}
|
|
94
|
-
*/
|
|
95
|
-
export declare class CoreInternetGateway extends cdktf.TerraformResource {
|
|
96
|
-
static readonly tfResourceType = "oci_core_internet_gateway";
|
|
97
|
-
/**
|
|
98
|
-
* Generates CDKTF code for importing a CoreInternetGateway resource upon running "cdktf plan <stack-name>"
|
|
99
|
-
* @param scope The scope in which to define this construct
|
|
100
|
-
* @param importToId The construct id used in the generated config for the CoreInternetGateway to import
|
|
101
|
-
* @param importFromId The id of the existing CoreInternetGateway that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/core_internet_gateway#import import section} in the documentation of this resource for the id to use
|
|
102
|
-
* @param provider? Optional instance of the provider where the CoreInternetGateway to import is found
|
|
103
|
-
*/
|
|
104
|
-
static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): cdktf.ImportableResource;
|
|
105
|
-
/**
|
|
106
|
-
* Create a new {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/core_internet_gateway oci_core_internet_gateway} Resource
|
|
107
|
-
*
|
|
108
|
-
* @param scope The scope in which to define this construct
|
|
109
|
-
* @param id The scoped construct ID. Must be unique amongst siblings in the same scope
|
|
110
|
-
* @param options CoreInternetGatewayConfig
|
|
111
|
-
*/
|
|
112
|
-
constructor(scope: Construct, id: string, config: CoreInternetGatewayConfig);
|
|
113
|
-
private _compartmentId?;
|
|
114
|
-
get compartmentId(): string;
|
|
115
|
-
set compartmentId(value: string);
|
|
116
|
-
get compartmentIdInput(): string | undefined;
|
|
117
|
-
private _definedTags?;
|
|
118
|
-
get definedTags(): {
|
|
119
|
-
[key: string]: string;
|
|
120
|
-
};
|
|
121
|
-
set definedTags(value: {
|
|
122
|
-
[key: string]: string;
|
|
123
|
-
});
|
|
124
|
-
resetDefinedTags(): void;
|
|
125
|
-
get definedTagsInput(): {
|
|
126
|
-
[key: string]: string;
|
|
127
|
-
} | undefined;
|
|
128
|
-
private _displayName?;
|
|
129
|
-
get displayName(): string;
|
|
130
|
-
set displayName(value: string);
|
|
131
|
-
resetDisplayName(): void;
|
|
132
|
-
get displayNameInput(): string | undefined;
|
|
133
|
-
private _enabled?;
|
|
134
|
-
get enabled(): boolean | cdktf.IResolvable;
|
|
135
|
-
set enabled(value: boolean | cdktf.IResolvable);
|
|
136
|
-
resetEnabled(): void;
|
|
137
|
-
get enabledInput(): boolean | cdktf.IResolvable | undefined;
|
|
138
|
-
private _freeformTags?;
|
|
139
|
-
get freeformTags(): {
|
|
140
|
-
[key: string]: string;
|
|
141
|
-
};
|
|
142
|
-
set freeformTags(value: {
|
|
143
|
-
[key: string]: string;
|
|
144
|
-
});
|
|
145
|
-
resetFreeformTags(): void;
|
|
146
|
-
get freeformTagsInput(): {
|
|
147
|
-
[key: string]: string;
|
|
148
|
-
} | undefined;
|
|
149
|
-
private _id?;
|
|
150
|
-
get id(): string;
|
|
151
|
-
set id(value: string);
|
|
152
|
-
resetId(): void;
|
|
153
|
-
get idInput(): string | undefined;
|
|
154
|
-
private _routeTableId?;
|
|
155
|
-
get routeTableId(): string;
|
|
156
|
-
set routeTableId(value: string);
|
|
157
|
-
resetRouteTableId(): void;
|
|
158
|
-
get routeTableIdInput(): string | undefined;
|
|
159
|
-
get state(): string;
|
|
160
|
-
get timeCreated(): string;
|
|
161
|
-
private _vcnId?;
|
|
162
|
-
get vcnId(): string;
|
|
163
|
-
set vcnId(value: string);
|
|
164
|
-
get vcnIdInput(): string | undefined;
|
|
165
|
-
private _timeouts;
|
|
166
|
-
get timeouts(): CoreInternetGatewayTimeoutsOutputReference;
|
|
167
|
-
putTimeouts(value: CoreInternetGatewayTimeouts): void;
|
|
168
|
-
resetTimeouts(): void;
|
|
169
|
-
get timeoutsInput(): cdktf.IResolvable | CoreInternetGatewayTimeouts | undefined;
|
|
170
|
-
protected synthesizeAttributes(): {
|
|
171
|
-
[name: string]: any;
|
|
172
|
-
};
|
|
173
|
-
protected synthesizeHclAttributes(): {
|
|
174
|
-
[name: string]: any;
|
|
175
|
-
};
|
|
176
|
-
}
|