terraform-cdk-serverless-github-actions-runner-controller 0.0.0

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.
@@ -0,0 +1,639 @@
1
+ import { Construct } from 'constructs';
2
+ import * as cdktf from 'cdktf';
3
+ export interface ResourceConfig extends cdktf.TerraformMetaArguments {
4
+ /**
5
+ * A dynamic attribute that contains the request body.
6
+ *
7
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs/resources/resource#body Resource#body}
8
+ */
9
+ readonly body?: {
10
+ [key: string]: any;
11
+ };
12
+ /**
13
+ * A mapping of headers to be sent with the create request.
14
+ *
15
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs/resources/resource#create_headers Resource#create_headers}
16
+ */
17
+ readonly createHeaders?: {
18
+ [key: string]: string;
19
+ };
20
+ /**
21
+ * A mapping of query parameters to be sent with the create request.
22
+ *
23
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs/resources/resource#create_query_parameters Resource#create_query_parameters}
24
+ */
25
+ readonly createQueryParameters?: {
26
+ [key: string]: string[];
27
+ } | cdktf.IResolvable;
28
+ /**
29
+ * A mapping of headers to be sent with the delete request.
30
+ *
31
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs/resources/resource#delete_headers Resource#delete_headers}
32
+ */
33
+ readonly deleteHeaders?: {
34
+ [key: string]: string;
35
+ };
36
+ /**
37
+ * A mapping of query parameters to be sent with the delete request.
38
+ *
39
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs/resources/resource#delete_query_parameters Resource#delete_query_parameters}
40
+ */
41
+ readonly deleteQueryParameters?: {
42
+ [key: string]: string[];
43
+ } | cdktf.IResolvable;
44
+ /**
45
+ * Whether ignore the casing of the property names in the response body. Defaults to `false`.
46
+ *
47
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs/resources/resource#ignore_casing Resource#ignore_casing}
48
+ */
49
+ readonly ignoreCasing?: boolean | cdktf.IResolvable;
50
+ /**
51
+ * Whether ignore not returned properties like credentials in `body` to suppress plan-diff. Defaults to `true`. It's recommend to enable this option when some sensitive properties are not returned in response body, instead of setting them in `lifecycle.ignore_changes` because it will make the sensitive fields unable to update.
52
+ *
53
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs/resources/resource#ignore_missing_property Resource#ignore_missing_property}
54
+ */
55
+ readonly ignoreMissingProperty?: boolean | cdktf.IResolvable;
56
+ /**
57
+ * The location of the Azure resource.
58
+ *
59
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs/resources/resource#location Resource#location}
60
+ */
61
+ readonly location?: string;
62
+ /**
63
+ * A list of ARM resource IDs which are used to avoid create/modify/delete azapi resources at the same time.
64
+ *
65
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs/resources/resource#locks Resource#locks}
66
+ */
67
+ readonly locks?: string[];
68
+ /**
69
+ * Specifies the name of the azure resource. Changing this forces a new resource to be created.
70
+ *
71
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs/resources/resource#name Resource#name}
72
+ */
73
+ readonly name?: string;
74
+ /**
75
+ * The ID of the azure resource in which this resource is created. It supports different kinds of deployment scope for **top level** resources:
76
+ *
77
+ * - resource group scope: `parent_id` should be the ID of a resource group, it's recommended to manage a resource group by azurerm_resource_group.
78
+ * - management group scope: `parent_id` should be the ID of a management group, it's recommended to manage a management group by azurerm_management_group.
79
+ * - extension scope: `parent_id` should be the ID of the resource you're adding the extension to.
80
+ * - subscription scope: `parent_id` should be like \x60/subscriptions/00000000-0000-0000-0000-000000000000\x60
81
+ * - tenant scope: `parent_id` should be /
82
+ *
83
+ * For child level resources, the `parent_id` should be the ID of its parent resource, for example, subnet resource's `parent_id` is the ID of the vnet.
84
+ *
85
+ * For type `Microsoft.Resources/resourceGroups`, the `parent_id` could be omitted, it defaults to subscription ID specified in provider or the default subscription (You could check the default subscription by azure cli command: `az account show`).
86
+ *
87
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs/resources/resource#parent_id Resource#parent_id}
88
+ */
89
+ readonly parentId?: string;
90
+ /**
91
+ * A mapping of headers to be sent with the read request.
92
+ *
93
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs/resources/resource#read_headers Resource#read_headers}
94
+ */
95
+ readonly readHeaders?: {
96
+ [key: string]: string;
97
+ };
98
+ /**
99
+ * A mapping of query parameters to be sent with the read request.
100
+ *
101
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs/resources/resource#read_query_parameters Resource#read_query_parameters}
102
+ */
103
+ readonly readQueryParameters?: {
104
+ [key: string]: string[];
105
+ } | cdktf.IResolvable;
106
+ /**
107
+ * Will trigger a replace of the resource when the value changes and is not `null`. This can be used by practitioners to force a replace of the resource when certain values change, e.g. changing the SKU of a virtual machine based on the value of variables or locals. The value is a `dynamic`, so practitioners can compose the input however they wish. For a "break glass" set the value to `null` to prevent the plan modifier taking effect.
108
+ * If you have `null` values that you do want to be tracked as affecting the resource replacement, include these inside an object.
109
+ * Advanced use cases are possible and resource replacement can be triggered by values external to the resource, for example when a dependent resource changes.
110
+ *
111
+ * e.g. to replace a resource when either the SKU or os_type attributes change:
112
+ *
113
+ * ```hcl
114
+ * resource "azapi_resource" "example" {
115
+ * name = var.name
116
+ * type = "Microsoft.Network/publicIPAddresses@2023-11-01"
117
+ * parent_id = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/example"
118
+ * body = {
119
+ * properties = {
120
+ * sku = var.sku
121
+ * zones = var.zones
122
+ * }
123
+ * }
124
+ *
125
+ * replace_triggers_external_values = [
126
+ * var.sku,
127
+ * var.zones,
128
+ * ]
129
+ * }
130
+ * ```
131
+ *
132
+ *
133
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs/resources/resource#replace_triggers_external_values Resource#replace_triggers_external_values}
134
+ */
135
+ readonly replaceTriggersExternalValues?: {
136
+ [key: string]: any;
137
+ };
138
+ /**
139
+ * A list of paths in the current Terraform configuration. When the values at these paths change, the resource will be replaced.
140
+ *
141
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs/resources/resource#replace_triggers_refs Resource#replace_triggers_refs}
142
+ */
143
+ readonly replaceTriggersRefs?: string[];
144
+ /**
145
+ * The attribute can accept either a list or a map.
146
+ *
147
+ * - **List**: A list of paths that need to be exported from the response body. Setting it to `["*"]` will export the full response body. Here's an example. If it sets to `["properties.loginServer", "properties.policies.quarantinePolicy.status"]`, it will set the following HCL object to the computed property output.
148
+ *
149
+ * ```text
150
+ * {
151
+ * properties = {
152
+ * loginServer = "registry1.azurecr.io"
153
+ * policies = {
154
+ * quarantinePolicy = {
155
+ * status = "disabled"
156
+ * }
157
+ * }
158
+ * }
159
+ * }
160
+ * ```
161
+ *
162
+ * - **Map**: A map where the key is the name for the result and the value is a JMESPath query string to filter the response. Here's an example. If it sets to `{"login_server": "properties.loginServer", "quarantine_status": "properties.policies.quarantinePolicy.status"}`, it will set the following HCL object to the computed property output.
163
+ *
164
+ * ```text
165
+ * {
166
+ * "login_server" = "registry1.azurecr.io"
167
+ * "quarantine_status" = "disabled"
168
+ * }
169
+ * ```
170
+ *
171
+ * To learn more about JMESPath, visit [JMESPath](https://jmespath.org/).
172
+ *
173
+ *
174
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs/resources/resource#response_export_values Resource#response_export_values}
175
+ */
176
+ readonly responseExportValues?: {
177
+ [key: string]: any;
178
+ };
179
+ /**
180
+ * The retry object supports the following attributes:
181
+ *
182
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs/resources/resource#retry Resource#retry}
183
+ */
184
+ readonly retry?: ResourceRetry;
185
+ /**
186
+ * Whether enabled the validation on `type` and `body` with embedded schema. Defaults to `true`.
187
+ *
188
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs/resources/resource#schema_validation_enabled Resource#schema_validation_enabled}
189
+ */
190
+ readonly schemaValidationEnabled?: boolean | cdktf.IResolvable;
191
+ /**
192
+ * A mapping of tags which should be assigned to the Azure resource.
193
+ *
194
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs/resources/resource#tags Resource#tags}
195
+ */
196
+ readonly tags?: {
197
+ [key: string]: string;
198
+ };
199
+ /**
200
+ * In a format like `<resource-type>@<api-version>`. `<resource-type>` is the Azure resource type, for example, `Microsoft.Storage/storageAccounts`. `<api-version>` is version of the API used to manage this azure resource.
201
+ *
202
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs/resources/resource#type Resource#type}
203
+ */
204
+ readonly type: string;
205
+ /**
206
+ * A mapping of headers to be sent with the update request.
207
+ *
208
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs/resources/resource#update_headers Resource#update_headers}
209
+ */
210
+ readonly updateHeaders?: {
211
+ [key: string]: string;
212
+ };
213
+ /**
214
+ * A mapping of query parameters to be sent with the update request.
215
+ *
216
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs/resources/resource#update_query_parameters Resource#update_query_parameters}
217
+ */
218
+ readonly updateQueryParameters?: {
219
+ [key: string]: string[];
220
+ } | cdktf.IResolvable;
221
+ /**
222
+ * identity block
223
+ *
224
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs/resources/resource#identity Resource#identity}
225
+ */
226
+ readonly identity?: ResourceIdentity[] | cdktf.IResolvable;
227
+ /**
228
+ * timeouts block
229
+ *
230
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs/resources/resource#timeouts Resource#timeouts}
231
+ */
232
+ readonly timeouts?: ResourceTimeouts;
233
+ }
234
+ export interface ResourceRetry {
235
+ /**
236
+ * A list of regular expressions to match against error messages. If any of the regular expressions match, the request will be retried.
237
+ *
238
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs/resources/resource#error_message_regex Resource#error_message_regex}
239
+ */
240
+ readonly errorMessageRegex: string[];
241
+ /**
242
+ * The base number of seconds to wait between retries. Default is `10`.
243
+ *
244
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs/resources/resource#interval_seconds Resource#interval_seconds}
245
+ */
246
+ readonly intervalSeconds?: number;
247
+ /**
248
+ * The maximum number of seconds to wait between retries. Default is `180`.
249
+ *
250
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs/resources/resource#max_interval_seconds Resource#max_interval_seconds}
251
+ */
252
+ readonly maxIntervalSeconds?: number;
253
+ /**
254
+ * The multiplier to apply to the interval between retries. Default is `1.5`.
255
+ *
256
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs/resources/resource#multiplier Resource#multiplier}
257
+ */
258
+ readonly multiplier?: number;
259
+ /**
260
+ * The randomization factor to apply to the interval between retries. The formula for the randomized interval is: `RetryInterval * (random value in range [1 - RandomizationFactor, 1 + RandomizationFactor])`. Therefore set to zero `0.0` for no randomization. Default is `0.5`.
261
+ *
262
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs/resources/resource#randomization_factor Resource#randomization_factor}
263
+ */
264
+ readonly randomizationFactor?: number;
265
+ }
266
+ export declare function resourceRetryToTerraform(struct?: ResourceRetry | cdktf.IResolvable): any;
267
+ export declare function resourceRetryToHclTerraform(struct?: ResourceRetry | cdktf.IResolvable): any;
268
+ export declare class ResourceRetryOutputReference extends cdktf.ComplexObject {
269
+ private isEmptyObject;
270
+ private resolvableValue?;
271
+ /**
272
+ * @param terraformResource The parent resource
273
+ * @param terraformAttribute The attribute on the parent resource this class is referencing
274
+ */
275
+ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
276
+ get internalValue(): ResourceRetry | cdktf.IResolvable | undefined;
277
+ set internalValue(value: ResourceRetry | cdktf.IResolvable | undefined);
278
+ private _errorMessageRegex?;
279
+ get errorMessageRegex(): string[];
280
+ set errorMessageRegex(value: string[]);
281
+ get errorMessageRegexInput(): string[] | undefined;
282
+ private _intervalSeconds?;
283
+ get intervalSeconds(): number;
284
+ set intervalSeconds(value: number);
285
+ resetIntervalSeconds(): void;
286
+ get intervalSecondsInput(): number | undefined;
287
+ private _maxIntervalSeconds?;
288
+ get maxIntervalSeconds(): number;
289
+ set maxIntervalSeconds(value: number);
290
+ resetMaxIntervalSeconds(): void;
291
+ get maxIntervalSecondsInput(): number | undefined;
292
+ private _multiplier?;
293
+ get multiplier(): number;
294
+ set multiplier(value: number);
295
+ resetMultiplier(): void;
296
+ get multiplierInput(): number | undefined;
297
+ private _randomizationFactor?;
298
+ get randomizationFactor(): number;
299
+ set randomizationFactor(value: number);
300
+ resetRandomizationFactor(): void;
301
+ get randomizationFactorInput(): number | undefined;
302
+ }
303
+ export interface ResourceIdentity {
304
+ /**
305
+ * A list of User Managed Identity ID's which should be assigned to the azure resource.
306
+ *
307
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs/resources/resource#identity_ids Resource#identity_ids}
308
+ */
309
+ readonly identityIds?: string[];
310
+ /**
311
+ * The Type of Identity which should be used for this azure resource. Possible values are `SystemAssigned`, `UserAssigned` and `SystemAssigned,UserAssigned`
312
+ *
313
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs/resources/resource#type Resource#type}
314
+ */
315
+ readonly type: string;
316
+ }
317
+ export declare function resourceIdentityToTerraform(struct?: ResourceIdentity | cdktf.IResolvable): any;
318
+ export declare function resourceIdentityToHclTerraform(struct?: ResourceIdentity | cdktf.IResolvable): any;
319
+ export declare class ResourceIdentityOutputReference extends cdktf.ComplexObject {
320
+ private isEmptyObject;
321
+ private resolvableValue?;
322
+ /**
323
+ * @param terraformResource The parent resource
324
+ * @param terraformAttribute The attribute on the parent resource this class is referencing
325
+ * @param complexObjectIndex the index of this item in the list
326
+ * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
327
+ */
328
+ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
329
+ get internalValue(): ResourceIdentity | cdktf.IResolvable | undefined;
330
+ set internalValue(value: ResourceIdentity | cdktf.IResolvable | undefined);
331
+ private _identityIds?;
332
+ get identityIds(): string[];
333
+ set identityIds(value: string[]);
334
+ resetIdentityIds(): void;
335
+ get identityIdsInput(): string[] | undefined;
336
+ get principalId(): string;
337
+ get tenantId(): string;
338
+ private _type?;
339
+ get type(): string;
340
+ set type(value: string);
341
+ get typeInput(): string | undefined;
342
+ }
343
+ export declare class ResourceIdentityList extends cdktf.ComplexList {
344
+ protected terraformResource: cdktf.IInterpolatingParent;
345
+ protected terraformAttribute: string;
346
+ protected wrapsSet: boolean;
347
+ internalValue?: ResourceIdentity[] | cdktf.IResolvable;
348
+ /**
349
+ * @param terraformResource The parent resource
350
+ * @param terraformAttribute The attribute on the parent resource this class is referencing
351
+ * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
352
+ */
353
+ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
354
+ /**
355
+ * @param index the index of the item to return
356
+ */
357
+ get(index: number): ResourceIdentityOutputReference;
358
+ }
359
+ export interface ResourceTimeouts {
360
+ /**
361
+ * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
362
+ *
363
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs/resources/resource#create Resource#create}
364
+ */
365
+ readonly create?: string;
366
+ /**
367
+ * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
368
+ *
369
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs/resources/resource#delete Resource#delete}
370
+ */
371
+ readonly delete?: string;
372
+ /**
373
+ * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
374
+ *
375
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs/resources/resource#read Resource#read}
376
+ */
377
+ readonly read?: string;
378
+ /**
379
+ * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
380
+ *
381
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs/resources/resource#update Resource#update}
382
+ */
383
+ readonly update?: string;
384
+ }
385
+ export declare function resourceTimeoutsToTerraform(struct?: ResourceTimeouts | cdktf.IResolvable): any;
386
+ export declare function resourceTimeoutsToHclTerraform(struct?: ResourceTimeouts | cdktf.IResolvable): any;
387
+ export declare class ResourceTimeoutsOutputReference extends cdktf.ComplexObject {
388
+ private isEmptyObject;
389
+ private resolvableValue?;
390
+ /**
391
+ * @param terraformResource The parent resource
392
+ * @param terraformAttribute The attribute on the parent resource this class is referencing
393
+ */
394
+ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
395
+ get internalValue(): ResourceTimeouts | cdktf.IResolvable | undefined;
396
+ set internalValue(value: ResourceTimeouts | cdktf.IResolvable | undefined);
397
+ private _create?;
398
+ get create(): string;
399
+ set create(value: string);
400
+ resetCreate(): void;
401
+ get createInput(): string | undefined;
402
+ private _delete?;
403
+ get delete(): string;
404
+ set delete(value: string);
405
+ resetDelete(): void;
406
+ get deleteInput(): string | undefined;
407
+ private _read?;
408
+ get read(): string;
409
+ set read(value: string);
410
+ resetRead(): void;
411
+ get readInput(): string | undefined;
412
+ private _update?;
413
+ get update(): string;
414
+ set update(value: string);
415
+ resetUpdate(): void;
416
+ get updateInput(): string | undefined;
417
+ }
418
+ /**
419
+ * Represents a {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs/resources/resource azapi_resource}
420
+ */
421
+ export declare class Resource extends cdktf.TerraformResource {
422
+ static readonly tfResourceType = "azapi_resource";
423
+ /**
424
+ * Generates CDKTF code for importing a Resource resource upon running "cdktf plan <stack-name>"
425
+ * @param scope The scope in which to define this construct
426
+ * @param importToId The construct id used in the generated config for the Resource to import
427
+ * @param importFromId The id of the existing Resource that should be imported. Refer to the {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs/resources/resource#import import section} in the documentation of this resource for the id to use
428
+ * @param provider? Optional instance of the provider where the Resource to import is found
429
+ */
430
+ static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): cdktf.ImportableResource;
431
+ /**
432
+ * Create a new {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs/resources/resource azapi_resource} Resource
433
+ *
434
+ * @param scope The scope in which to define this construct
435
+ * @param id The scoped construct ID. Must be unique amongst siblings in the same scope
436
+ * @param options ResourceConfig
437
+ */
438
+ constructor(scope: Construct, id: string, config: ResourceConfig);
439
+ private _body?;
440
+ get body(): {
441
+ [key: string]: any;
442
+ };
443
+ set body(value: {
444
+ [key: string]: any;
445
+ });
446
+ resetBody(): void;
447
+ get bodyInput(): {
448
+ [key: string]: any;
449
+ } | undefined;
450
+ private _createHeaders?;
451
+ get createHeaders(): {
452
+ [key: string]: string;
453
+ };
454
+ set createHeaders(value: {
455
+ [key: string]: string;
456
+ });
457
+ resetCreateHeaders(): void;
458
+ get createHeadersInput(): {
459
+ [key: string]: string;
460
+ } | undefined;
461
+ private _createQueryParameters?;
462
+ get createQueryParameters(): {
463
+ [key: string]: string[];
464
+ } | cdktf.IResolvable;
465
+ set createQueryParameters(value: {
466
+ [key: string]: string[];
467
+ } | cdktf.IResolvable);
468
+ resetCreateQueryParameters(): void;
469
+ get createQueryParametersInput(): cdktf.IResolvable | {
470
+ [key: string]: string[];
471
+ } | undefined;
472
+ private _deleteHeaders?;
473
+ get deleteHeaders(): {
474
+ [key: string]: string;
475
+ };
476
+ set deleteHeaders(value: {
477
+ [key: string]: string;
478
+ });
479
+ resetDeleteHeaders(): void;
480
+ get deleteHeadersInput(): {
481
+ [key: string]: string;
482
+ } | undefined;
483
+ private _deleteQueryParameters?;
484
+ get deleteQueryParameters(): {
485
+ [key: string]: string[];
486
+ } | cdktf.IResolvable;
487
+ set deleteQueryParameters(value: {
488
+ [key: string]: string[];
489
+ } | cdktf.IResolvable);
490
+ resetDeleteQueryParameters(): void;
491
+ get deleteQueryParametersInput(): cdktf.IResolvable | {
492
+ [key: string]: string[];
493
+ } | undefined;
494
+ get id(): string;
495
+ private _ignoreCasing?;
496
+ get ignoreCasing(): boolean | cdktf.IResolvable;
497
+ set ignoreCasing(value: boolean | cdktf.IResolvable);
498
+ resetIgnoreCasing(): void;
499
+ get ignoreCasingInput(): boolean | cdktf.IResolvable | undefined;
500
+ private _ignoreMissingProperty?;
501
+ get ignoreMissingProperty(): boolean | cdktf.IResolvable;
502
+ set ignoreMissingProperty(value: boolean | cdktf.IResolvable);
503
+ resetIgnoreMissingProperty(): void;
504
+ get ignoreMissingPropertyInput(): boolean | cdktf.IResolvable | undefined;
505
+ private _location?;
506
+ get location(): string;
507
+ set location(value: string);
508
+ resetLocation(): void;
509
+ get locationInput(): string | undefined;
510
+ private _locks?;
511
+ get locks(): string[];
512
+ set locks(value: string[]);
513
+ resetLocks(): void;
514
+ get locksInput(): string[] | undefined;
515
+ private _name?;
516
+ get name(): string;
517
+ set name(value: string);
518
+ resetName(): void;
519
+ get nameInput(): string | undefined;
520
+ private _output;
521
+ get output(): cdktf.AnyMap;
522
+ private _parentId?;
523
+ get parentId(): string;
524
+ set parentId(value: string);
525
+ resetParentId(): void;
526
+ get parentIdInput(): string | undefined;
527
+ private _readHeaders?;
528
+ get readHeaders(): {
529
+ [key: string]: string;
530
+ };
531
+ set readHeaders(value: {
532
+ [key: string]: string;
533
+ });
534
+ resetReadHeaders(): void;
535
+ get readHeadersInput(): {
536
+ [key: string]: string;
537
+ } | undefined;
538
+ private _readQueryParameters?;
539
+ get readQueryParameters(): {
540
+ [key: string]: string[];
541
+ } | cdktf.IResolvable;
542
+ set readQueryParameters(value: {
543
+ [key: string]: string[];
544
+ } | cdktf.IResolvable);
545
+ resetReadQueryParameters(): void;
546
+ get readQueryParametersInput(): cdktf.IResolvable | {
547
+ [key: string]: string[];
548
+ } | undefined;
549
+ private _replaceTriggersExternalValues?;
550
+ get replaceTriggersExternalValues(): {
551
+ [key: string]: any;
552
+ };
553
+ set replaceTriggersExternalValues(value: {
554
+ [key: string]: any;
555
+ });
556
+ resetReplaceTriggersExternalValues(): void;
557
+ get replaceTriggersExternalValuesInput(): {
558
+ [key: string]: any;
559
+ } | undefined;
560
+ private _replaceTriggersRefs?;
561
+ get replaceTriggersRefs(): string[];
562
+ set replaceTriggersRefs(value: string[]);
563
+ resetReplaceTriggersRefs(): void;
564
+ get replaceTriggersRefsInput(): string[] | undefined;
565
+ private _responseExportValues?;
566
+ get responseExportValues(): {
567
+ [key: string]: any;
568
+ };
569
+ set responseExportValues(value: {
570
+ [key: string]: any;
571
+ });
572
+ resetResponseExportValues(): void;
573
+ get responseExportValuesInput(): {
574
+ [key: string]: any;
575
+ } | undefined;
576
+ private _retry;
577
+ get retry(): ResourceRetryOutputReference;
578
+ putRetry(value: ResourceRetry): void;
579
+ resetRetry(): void;
580
+ get retryInput(): cdktf.IResolvable | ResourceRetry | undefined;
581
+ private _schemaValidationEnabled?;
582
+ get schemaValidationEnabled(): boolean | cdktf.IResolvable;
583
+ set schemaValidationEnabled(value: boolean | cdktf.IResolvable);
584
+ resetSchemaValidationEnabled(): void;
585
+ get schemaValidationEnabledInput(): boolean | cdktf.IResolvable | undefined;
586
+ private _tags?;
587
+ get tags(): {
588
+ [key: string]: string;
589
+ };
590
+ set tags(value: {
591
+ [key: string]: string;
592
+ });
593
+ resetTags(): void;
594
+ get tagsInput(): {
595
+ [key: string]: string;
596
+ } | undefined;
597
+ private _type?;
598
+ get type(): string;
599
+ set type(value: string);
600
+ get typeInput(): string | undefined;
601
+ private _updateHeaders?;
602
+ get updateHeaders(): {
603
+ [key: string]: string;
604
+ };
605
+ set updateHeaders(value: {
606
+ [key: string]: string;
607
+ });
608
+ resetUpdateHeaders(): void;
609
+ get updateHeadersInput(): {
610
+ [key: string]: string;
611
+ } | undefined;
612
+ private _updateQueryParameters?;
613
+ get updateQueryParameters(): {
614
+ [key: string]: string[];
615
+ } | cdktf.IResolvable;
616
+ set updateQueryParameters(value: {
617
+ [key: string]: string[];
618
+ } | cdktf.IResolvable);
619
+ resetUpdateQueryParameters(): void;
620
+ get updateQueryParametersInput(): cdktf.IResolvable | {
621
+ [key: string]: string[];
622
+ } | undefined;
623
+ private _identity;
624
+ get identity(): ResourceIdentityList;
625
+ putIdentity(value: ResourceIdentity[] | cdktf.IResolvable): void;
626
+ resetIdentity(): void;
627
+ get identityInput(): cdktf.IResolvable | ResourceIdentity[] | undefined;
628
+ private _timeouts;
629
+ get timeouts(): ResourceTimeoutsOutputReference;
630
+ putTimeouts(value: ResourceTimeouts): void;
631
+ resetTimeouts(): void;
632
+ get timeoutsInput(): cdktf.IResolvable | ResourceTimeouts | undefined;
633
+ protected synthesizeAttributes(): {
634
+ [name: string]: any;
635
+ };
636
+ protected synthesizeHclAttributes(): {
637
+ [name: string]: any;
638
+ };
639
+ }