@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,330 +0,0 @@
|
|
|
1
|
-
import { Construct } from 'constructs';
|
|
2
|
-
import * as cdktf from 'cdktf';
|
|
3
|
-
export interface FunctionsApplicationConfig extends cdktf.TerraformMetaArguments {
|
|
4
|
-
/**
|
|
5
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/functions_application#compartment_id FunctionsApplication#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/functions_application#config FunctionsApplication#config}
|
|
10
|
-
*/
|
|
11
|
-
readonly config?: {
|
|
12
|
-
[key: string]: string;
|
|
13
|
-
};
|
|
14
|
-
/**
|
|
15
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/functions_application#defined_tags FunctionsApplication#defined_tags}
|
|
16
|
-
*/
|
|
17
|
-
readonly definedTags?: {
|
|
18
|
-
[key: string]: string;
|
|
19
|
-
};
|
|
20
|
-
/**
|
|
21
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/functions_application#display_name FunctionsApplication#display_name}
|
|
22
|
-
*/
|
|
23
|
-
readonly displayName: string;
|
|
24
|
-
/**
|
|
25
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/functions_application#freeform_tags FunctionsApplication#freeform_tags}
|
|
26
|
-
*/
|
|
27
|
-
readonly freeformTags?: {
|
|
28
|
-
[key: string]: string;
|
|
29
|
-
};
|
|
30
|
-
/**
|
|
31
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/functions_application#id FunctionsApplication#id}
|
|
32
|
-
*
|
|
33
|
-
* Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.
|
|
34
|
-
* 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.
|
|
35
|
-
*/
|
|
36
|
-
readonly id?: string;
|
|
37
|
-
/**
|
|
38
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/functions_application#network_security_group_ids FunctionsApplication#network_security_group_ids}
|
|
39
|
-
*/
|
|
40
|
-
readonly networkSecurityGroupIds?: string[];
|
|
41
|
-
/**
|
|
42
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/functions_application#shape FunctionsApplication#shape}
|
|
43
|
-
*/
|
|
44
|
-
readonly shape?: string;
|
|
45
|
-
/**
|
|
46
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/functions_application#subnet_ids FunctionsApplication#subnet_ids}
|
|
47
|
-
*/
|
|
48
|
-
readonly subnetIds: string[];
|
|
49
|
-
/**
|
|
50
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/functions_application#syslog_url FunctionsApplication#syslog_url}
|
|
51
|
-
*/
|
|
52
|
-
readonly syslogUrl?: string;
|
|
53
|
-
/**
|
|
54
|
-
* image_policy_config block
|
|
55
|
-
*
|
|
56
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/functions_application#image_policy_config FunctionsApplication#image_policy_config}
|
|
57
|
-
*/
|
|
58
|
-
readonly imagePolicyConfig?: FunctionsApplicationImagePolicyConfig;
|
|
59
|
-
/**
|
|
60
|
-
* timeouts block
|
|
61
|
-
*
|
|
62
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/functions_application#timeouts FunctionsApplication#timeouts}
|
|
63
|
-
*/
|
|
64
|
-
readonly timeouts?: FunctionsApplicationTimeouts;
|
|
65
|
-
/**
|
|
66
|
-
* trace_config block
|
|
67
|
-
*
|
|
68
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/functions_application#trace_config FunctionsApplication#trace_config}
|
|
69
|
-
*/
|
|
70
|
-
readonly traceConfig?: FunctionsApplicationTraceConfig;
|
|
71
|
-
}
|
|
72
|
-
export interface FunctionsApplicationImagePolicyConfigKeyDetails {
|
|
73
|
-
/**
|
|
74
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/functions_application#kms_key_id FunctionsApplication#kms_key_id}
|
|
75
|
-
*/
|
|
76
|
-
readonly kmsKeyId: string;
|
|
77
|
-
}
|
|
78
|
-
export declare function functionsApplicationImagePolicyConfigKeyDetailsToTerraform(struct?: FunctionsApplicationImagePolicyConfigKeyDetails | cdktf.IResolvable): any;
|
|
79
|
-
export declare function functionsApplicationImagePolicyConfigKeyDetailsToHclTerraform(struct?: FunctionsApplicationImagePolicyConfigKeyDetails | cdktf.IResolvable): any;
|
|
80
|
-
export declare class FunctionsApplicationImagePolicyConfigKeyDetailsOutputReference 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(): FunctionsApplicationImagePolicyConfigKeyDetails | cdktf.IResolvable | undefined;
|
|
91
|
-
set internalValue(value: FunctionsApplicationImagePolicyConfigKeyDetails | cdktf.IResolvable | undefined);
|
|
92
|
-
private _kmsKeyId?;
|
|
93
|
-
get kmsKeyId(): string;
|
|
94
|
-
set kmsKeyId(value: string);
|
|
95
|
-
get kmsKeyIdInput(): string | undefined;
|
|
96
|
-
}
|
|
97
|
-
export declare class FunctionsApplicationImagePolicyConfigKeyDetailsList extends cdktf.ComplexList {
|
|
98
|
-
protected terraformResource: cdktf.IInterpolatingParent;
|
|
99
|
-
protected terraformAttribute: string;
|
|
100
|
-
protected wrapsSet: boolean;
|
|
101
|
-
internalValue?: FunctionsApplicationImagePolicyConfigKeyDetails[] | cdktf.IResolvable;
|
|
102
|
-
/**
|
|
103
|
-
* @param terraformResource The parent resource
|
|
104
|
-
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
105
|
-
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
106
|
-
*/
|
|
107
|
-
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
|
|
108
|
-
/**
|
|
109
|
-
* @param index the index of the item to return
|
|
110
|
-
*/
|
|
111
|
-
get(index: number): FunctionsApplicationImagePolicyConfigKeyDetailsOutputReference;
|
|
112
|
-
}
|
|
113
|
-
export interface FunctionsApplicationImagePolicyConfig {
|
|
114
|
-
/**
|
|
115
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/functions_application#is_policy_enabled FunctionsApplication#is_policy_enabled}
|
|
116
|
-
*/
|
|
117
|
-
readonly isPolicyEnabled: boolean | cdktf.IResolvable;
|
|
118
|
-
/**
|
|
119
|
-
* key_details block
|
|
120
|
-
*
|
|
121
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/functions_application#key_details FunctionsApplication#key_details}
|
|
122
|
-
*/
|
|
123
|
-
readonly keyDetails?: FunctionsApplicationImagePolicyConfigKeyDetails[] | cdktf.IResolvable;
|
|
124
|
-
}
|
|
125
|
-
export declare function functionsApplicationImagePolicyConfigToTerraform(struct?: FunctionsApplicationImagePolicyConfigOutputReference | FunctionsApplicationImagePolicyConfig): any;
|
|
126
|
-
export declare function functionsApplicationImagePolicyConfigToHclTerraform(struct?: FunctionsApplicationImagePolicyConfigOutputReference | FunctionsApplicationImagePolicyConfig): any;
|
|
127
|
-
export declare class FunctionsApplicationImagePolicyConfigOutputReference 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
|
-
*/
|
|
133
|
-
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
|
|
134
|
-
get internalValue(): FunctionsApplicationImagePolicyConfig | undefined;
|
|
135
|
-
set internalValue(value: FunctionsApplicationImagePolicyConfig | undefined);
|
|
136
|
-
private _isPolicyEnabled?;
|
|
137
|
-
get isPolicyEnabled(): boolean | cdktf.IResolvable;
|
|
138
|
-
set isPolicyEnabled(value: boolean | cdktf.IResolvable);
|
|
139
|
-
get isPolicyEnabledInput(): boolean | cdktf.IResolvable | undefined;
|
|
140
|
-
private _keyDetails;
|
|
141
|
-
get keyDetails(): FunctionsApplicationImagePolicyConfigKeyDetailsList;
|
|
142
|
-
putKeyDetails(value: FunctionsApplicationImagePolicyConfigKeyDetails[] | cdktf.IResolvable): void;
|
|
143
|
-
resetKeyDetails(): void;
|
|
144
|
-
get keyDetailsInput(): cdktf.IResolvable | FunctionsApplicationImagePolicyConfigKeyDetails[] | undefined;
|
|
145
|
-
}
|
|
146
|
-
export interface FunctionsApplicationTimeouts {
|
|
147
|
-
/**
|
|
148
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/functions_application#create FunctionsApplication#create}
|
|
149
|
-
*/
|
|
150
|
-
readonly create?: string;
|
|
151
|
-
/**
|
|
152
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/functions_application#delete FunctionsApplication#delete}
|
|
153
|
-
*/
|
|
154
|
-
readonly delete?: string;
|
|
155
|
-
/**
|
|
156
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/functions_application#update FunctionsApplication#update}
|
|
157
|
-
*/
|
|
158
|
-
readonly update?: string;
|
|
159
|
-
}
|
|
160
|
-
export declare function functionsApplicationTimeoutsToTerraform(struct?: FunctionsApplicationTimeouts | cdktf.IResolvable): any;
|
|
161
|
-
export declare function functionsApplicationTimeoutsToHclTerraform(struct?: FunctionsApplicationTimeouts | cdktf.IResolvable): any;
|
|
162
|
-
export declare class FunctionsApplicationTimeoutsOutputReference extends cdktf.ComplexObject {
|
|
163
|
-
private isEmptyObject;
|
|
164
|
-
private resolvableValue?;
|
|
165
|
-
/**
|
|
166
|
-
* @param terraformResource The parent resource
|
|
167
|
-
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
168
|
-
*/
|
|
169
|
-
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
|
|
170
|
-
get internalValue(): FunctionsApplicationTimeouts | cdktf.IResolvable | undefined;
|
|
171
|
-
set internalValue(value: FunctionsApplicationTimeouts | cdktf.IResolvable | undefined);
|
|
172
|
-
private _create?;
|
|
173
|
-
get create(): string;
|
|
174
|
-
set create(value: string);
|
|
175
|
-
resetCreate(): void;
|
|
176
|
-
get createInput(): string | undefined;
|
|
177
|
-
private _delete?;
|
|
178
|
-
get delete(): string;
|
|
179
|
-
set delete(value: string);
|
|
180
|
-
resetDelete(): void;
|
|
181
|
-
get deleteInput(): string | undefined;
|
|
182
|
-
private _update?;
|
|
183
|
-
get update(): string;
|
|
184
|
-
set update(value: string);
|
|
185
|
-
resetUpdate(): void;
|
|
186
|
-
get updateInput(): string | undefined;
|
|
187
|
-
}
|
|
188
|
-
export interface FunctionsApplicationTraceConfig {
|
|
189
|
-
/**
|
|
190
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/functions_application#domain_id FunctionsApplication#domain_id}
|
|
191
|
-
*/
|
|
192
|
-
readonly domainId?: string;
|
|
193
|
-
/**
|
|
194
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/functions_application#is_enabled FunctionsApplication#is_enabled}
|
|
195
|
-
*/
|
|
196
|
-
readonly isEnabled?: boolean | cdktf.IResolvable;
|
|
197
|
-
}
|
|
198
|
-
export declare function functionsApplicationTraceConfigToTerraform(struct?: FunctionsApplicationTraceConfigOutputReference | FunctionsApplicationTraceConfig): any;
|
|
199
|
-
export declare function functionsApplicationTraceConfigToHclTerraform(struct?: FunctionsApplicationTraceConfigOutputReference | FunctionsApplicationTraceConfig): any;
|
|
200
|
-
export declare class FunctionsApplicationTraceConfigOutputReference extends cdktf.ComplexObject {
|
|
201
|
-
private isEmptyObject;
|
|
202
|
-
/**
|
|
203
|
-
* @param terraformResource The parent resource
|
|
204
|
-
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
205
|
-
*/
|
|
206
|
-
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
|
|
207
|
-
get internalValue(): FunctionsApplicationTraceConfig | undefined;
|
|
208
|
-
set internalValue(value: FunctionsApplicationTraceConfig | undefined);
|
|
209
|
-
private _domainId?;
|
|
210
|
-
get domainId(): string;
|
|
211
|
-
set domainId(value: string);
|
|
212
|
-
resetDomainId(): void;
|
|
213
|
-
get domainIdInput(): string | undefined;
|
|
214
|
-
private _isEnabled?;
|
|
215
|
-
get isEnabled(): boolean | cdktf.IResolvable;
|
|
216
|
-
set isEnabled(value: boolean | cdktf.IResolvable);
|
|
217
|
-
resetIsEnabled(): void;
|
|
218
|
-
get isEnabledInput(): boolean | cdktf.IResolvable | undefined;
|
|
219
|
-
}
|
|
220
|
-
/**
|
|
221
|
-
* Represents a {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/functions_application oci_functions_application}
|
|
222
|
-
*/
|
|
223
|
-
export declare class FunctionsApplication extends cdktf.TerraformResource {
|
|
224
|
-
static readonly tfResourceType = "oci_functions_application";
|
|
225
|
-
/**
|
|
226
|
-
* Generates CDKTF code for importing a FunctionsApplication resource upon running "cdktf plan <stack-name>"
|
|
227
|
-
* @param scope The scope in which to define this construct
|
|
228
|
-
* @param importToId The construct id used in the generated config for the FunctionsApplication to import
|
|
229
|
-
* @param importFromId The id of the existing FunctionsApplication that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/functions_application#import import section} in the documentation of this resource for the id to use
|
|
230
|
-
* @param provider? Optional instance of the provider where the FunctionsApplication to import is found
|
|
231
|
-
*/
|
|
232
|
-
static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): cdktf.ImportableResource;
|
|
233
|
-
/**
|
|
234
|
-
* Create a new {@link https://registry.terraform.io/providers/oracle/oci/5.47.0/docs/resources/functions_application oci_functions_application} Resource
|
|
235
|
-
*
|
|
236
|
-
* @param scope The scope in which to define this construct
|
|
237
|
-
* @param id The scoped construct ID. Must be unique amongst siblings in the same scope
|
|
238
|
-
* @param options FunctionsApplicationConfig
|
|
239
|
-
*/
|
|
240
|
-
constructor(scope: Construct, id: string, config: FunctionsApplicationConfig);
|
|
241
|
-
private _compartmentId?;
|
|
242
|
-
get compartmentId(): string;
|
|
243
|
-
set compartmentId(value: string);
|
|
244
|
-
get compartmentIdInput(): string | undefined;
|
|
245
|
-
private _config?;
|
|
246
|
-
get config(): {
|
|
247
|
-
[key: string]: string;
|
|
248
|
-
};
|
|
249
|
-
set config(value: {
|
|
250
|
-
[key: string]: string;
|
|
251
|
-
});
|
|
252
|
-
resetConfig(): void;
|
|
253
|
-
get configInput(): {
|
|
254
|
-
[key: string]: string;
|
|
255
|
-
} | undefined;
|
|
256
|
-
private _definedTags?;
|
|
257
|
-
get definedTags(): {
|
|
258
|
-
[key: string]: string;
|
|
259
|
-
};
|
|
260
|
-
set definedTags(value: {
|
|
261
|
-
[key: string]: string;
|
|
262
|
-
});
|
|
263
|
-
resetDefinedTags(): void;
|
|
264
|
-
get definedTagsInput(): {
|
|
265
|
-
[key: string]: string;
|
|
266
|
-
} | undefined;
|
|
267
|
-
private _displayName?;
|
|
268
|
-
get displayName(): string;
|
|
269
|
-
set displayName(value: string);
|
|
270
|
-
get displayNameInput(): string | undefined;
|
|
271
|
-
private _freeformTags?;
|
|
272
|
-
get freeformTags(): {
|
|
273
|
-
[key: string]: string;
|
|
274
|
-
};
|
|
275
|
-
set freeformTags(value: {
|
|
276
|
-
[key: string]: string;
|
|
277
|
-
});
|
|
278
|
-
resetFreeformTags(): void;
|
|
279
|
-
get freeformTagsInput(): {
|
|
280
|
-
[key: string]: string;
|
|
281
|
-
} | undefined;
|
|
282
|
-
private _id?;
|
|
283
|
-
get id(): string;
|
|
284
|
-
set id(value: string);
|
|
285
|
-
resetId(): void;
|
|
286
|
-
get idInput(): string | undefined;
|
|
287
|
-
private _networkSecurityGroupIds?;
|
|
288
|
-
get networkSecurityGroupIds(): string[];
|
|
289
|
-
set networkSecurityGroupIds(value: string[]);
|
|
290
|
-
resetNetworkSecurityGroupIds(): void;
|
|
291
|
-
get networkSecurityGroupIdsInput(): string[] | undefined;
|
|
292
|
-
private _shape?;
|
|
293
|
-
get shape(): string;
|
|
294
|
-
set shape(value: string);
|
|
295
|
-
resetShape(): void;
|
|
296
|
-
get shapeInput(): string | undefined;
|
|
297
|
-
get state(): string;
|
|
298
|
-
private _subnetIds?;
|
|
299
|
-
get subnetIds(): string[];
|
|
300
|
-
set subnetIds(value: string[]);
|
|
301
|
-
get subnetIdsInput(): string[] | undefined;
|
|
302
|
-
private _syslogUrl?;
|
|
303
|
-
get syslogUrl(): string;
|
|
304
|
-
set syslogUrl(value: string);
|
|
305
|
-
resetSyslogUrl(): void;
|
|
306
|
-
get syslogUrlInput(): string | undefined;
|
|
307
|
-
get timeCreated(): string;
|
|
308
|
-
get timeUpdated(): string;
|
|
309
|
-
private _imagePolicyConfig;
|
|
310
|
-
get imagePolicyConfig(): FunctionsApplicationImagePolicyConfigOutputReference;
|
|
311
|
-
putImagePolicyConfig(value: FunctionsApplicationImagePolicyConfig): void;
|
|
312
|
-
resetImagePolicyConfig(): void;
|
|
313
|
-
get imagePolicyConfigInput(): FunctionsApplicationImagePolicyConfig | undefined;
|
|
314
|
-
private _timeouts;
|
|
315
|
-
get timeouts(): FunctionsApplicationTimeoutsOutputReference;
|
|
316
|
-
putTimeouts(value: FunctionsApplicationTimeouts): void;
|
|
317
|
-
resetTimeouts(): void;
|
|
318
|
-
get timeoutsInput(): cdktf.IResolvable | FunctionsApplicationTimeouts | undefined;
|
|
319
|
-
private _traceConfig;
|
|
320
|
-
get traceConfig(): FunctionsApplicationTraceConfigOutputReference;
|
|
321
|
-
putTraceConfig(value: FunctionsApplicationTraceConfig): void;
|
|
322
|
-
resetTraceConfig(): void;
|
|
323
|
-
get traceConfigInput(): FunctionsApplicationTraceConfig | undefined;
|
|
324
|
-
protected synthesizeAttributes(): {
|
|
325
|
-
[name: string]: any;
|
|
326
|
-
};
|
|
327
|
-
protected synthesizeHclAttributes(): {
|
|
328
|
-
[name: string]: any;
|
|
329
|
-
};
|
|
330
|
-
}
|