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,425 @@
1
+ import { Construct } from 'constructs';
2
+ import * as cdktf from 'cdktf';
3
+ export interface AzapiProviderConfig {
4
+ /**
5
+ * List of auxiliary Tenant IDs required for multi-tenancy and cross-tenant scenarios. This can also be sourced from the `ARM_AUXILIARY_TENANT_IDS` Environment Variable.
6
+ *
7
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs#auxiliary_tenant_ids AzapiProvider#auxiliary_tenant_ids}
8
+ */
9
+ readonly auxiliaryTenantIds?: string[];
10
+ /**
11
+ * A base64-encoded PKCS#12 bundle to be used as the client certificate for authentication. This can also be sourced from the `ARM_CLIENT_CERTIFICATE` environment variable.
12
+ *
13
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs#client_certificate AzapiProvider#client_certificate}
14
+ */
15
+ readonly clientCertificate?: string;
16
+ /**
17
+ * The password associated with the Client Certificate. This can also be sourced from the `ARM_CLIENT_CERTIFICATE_PASSWORD` Environment Variable.
18
+ *
19
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs#client_certificate_password AzapiProvider#client_certificate_password}
20
+ */
21
+ readonly clientCertificatePassword?: string;
22
+ /**
23
+ * The path to the Client Certificate associated with the Service Principal which should be used. This can also be sourced from the `ARM_CLIENT_CERTIFICATE_PATH` Environment Variable.
24
+ *
25
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs#client_certificate_path AzapiProvider#client_certificate_path}
26
+ */
27
+ readonly clientCertificatePath?: string;
28
+ /**
29
+ * The Client ID which should be used. This can also be sourced from the `ARM_CLIENT_ID` Environment Variable.
30
+ *
31
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs#client_id AzapiProvider#client_id}
32
+ */
33
+ readonly clientId?: string;
34
+ /**
35
+ * The path to a file containing the Client ID which should be used. This can also be sourced from the `ARM_CLIENT_ID_FILE_PATH` Environment Variable.
36
+ *
37
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs#client_id_file_path AzapiProvider#client_id_file_path}
38
+ */
39
+ readonly clientIdFilePath?: string;
40
+ /**
41
+ * The Client Secret which should be used. This can also be sourced from the `ARM_CLIENT_SECRET` Environment Variable.
42
+ *
43
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs#client_secret AzapiProvider#client_secret}
44
+ */
45
+ readonly clientSecret?: string;
46
+ /**
47
+ * The path to a file containing the Client Secret which should be used. For use When authenticating as a Service Principal using a Client Secret. This can also be sourced from the `ARM_CLIENT_SECRET_FILE_PATH` Environment Variable.
48
+ *
49
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs#client_secret_file_path AzapiProvider#client_secret_file_path}
50
+ */
51
+ readonly clientSecretFilePath?: string;
52
+ /**
53
+ * The value of the `x-ms-correlation-request-id` header, otherwise an auto-generated UUID will be used. This can also be sourced from the `ARM_CORRELATION_REQUEST_ID` environment variable.
54
+ *
55
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs#custom_correlation_request_id AzapiProvider#custom_correlation_request_id}
56
+ */
57
+ readonly customCorrelationRequestId?: string;
58
+ /**
59
+ * The default Azure Region where the azure resource should exist. The `location` in each resource block can override the `default_location`. Changing this forces new resources to be created.
60
+ *
61
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs#default_location AzapiProvider#default_location}
62
+ */
63
+ readonly defaultLocation?: string;
64
+ /**
65
+ * The default name to create the azure resource. The `name` in each resource block can override the `default_name`. Changing this forces new resources to be created.
66
+ *
67
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs#default_name AzapiProvider#default_name}
68
+ */
69
+ readonly defaultName?: string;
70
+ /**
71
+ * A mapping of tags which should be assigned to the azure resource as default tags. The`tags` in each resource block can override the `default_tags`.
72
+ *
73
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs#default_tags AzapiProvider#default_tags}
74
+ */
75
+ readonly defaultTags?: {
76
+ [key: string]: string;
77
+ };
78
+ /**
79
+ * This will disable the x-ms-correlation-request-id header.
80
+ *
81
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs#disable_correlation_request_id AzapiProvider#disable_correlation_request_id}
82
+ */
83
+ readonly disableCorrelationRequestId?: boolean | cdktf.IResolvable;
84
+ /**
85
+ * Disable default output. The default is false. When set to false, the provider will output the read-only properties if `response_export_values` is not specified in the resource block. When set to true, the provider will disable this output. This can also be sourced from the `ARM_DISABLE_DEFAULT_OUTPUT` Environment Variable.
86
+ *
87
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs#disable_default_output AzapiProvider#disable_default_output}
88
+ */
89
+ readonly disableDefaultOutput?: boolean | cdktf.IResolvable;
90
+ /**
91
+ * Disable sending the Terraform Partner ID if a custom `partner_id` isn't specified, which allows Microsoft to better understand the usage of Terraform. The Partner ID does not give HashiCorp any direct access to usage information. This can also be sourced from the `ARM_DISABLE_TERRAFORM_PARTNER_ID` environment variable. Defaults to `false`.
92
+ *
93
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs#disable_terraform_partner_id AzapiProvider#disable_terraform_partner_id}
94
+ */
95
+ readonly disableTerraformPartnerId?: boolean | cdktf.IResolvable;
96
+ /**
97
+ * Enable Preflight Validation. The default is false. When set to true, the provider will use Preflight to do static validation before really deploying a new resource. When set to false, the provider will disable this validation. This can also be sourced from the `ARM_ENABLE_PREFLIGHT` Environment Variable.
98
+ *
99
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs#enable_preflight AzapiProvider#enable_preflight}
100
+ */
101
+ readonly enablePreflight?: boolean | cdktf.IResolvable;
102
+ /**
103
+ * The Azure API Endpoint Configuration.
104
+ *
105
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs#endpoint AzapiProvider#endpoint}
106
+ */
107
+ readonly endpoint?: AzapiProviderEndpoint[] | cdktf.IResolvable;
108
+ /**
109
+ * The Cloud Environment which should be used. Possible values are `public`, `usgovernment` and `china`. Defaults to `public`. This can also be sourced from the `ARM_ENVIRONMENT` Environment Variable.
110
+ *
111
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs#environment AzapiProvider#environment}
112
+ */
113
+ readonly environment?: string;
114
+ /**
115
+ * The maximum number of retries to attempt if the Azure API returns an HTTP 408, 429, 500, 502, 503, or 504 response. The default is `3`. The resource-specific retry configuration may additionally be used to retry on other errors and conditions.
116
+ *
117
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs#maximum_busy_retry_attempts AzapiProvider#maximum_busy_retry_attempts}
118
+ */
119
+ readonly maximumBusyRetryAttempts?: number;
120
+ /**
121
+ * The Azure Pipelines Service Connection ID to use for authentication. This can also be sourced from the `ARM_ADO_PIPELINE_SERVICE_CONNECTION_ID` or `ARM_OIDC_AZURE_SERVICE_CONNECTION_ID` Environment Variables.
122
+ *
123
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs#oidc_azure_service_connection_id AzapiProvider#oidc_azure_service_connection_id}
124
+ */
125
+ readonly oidcAzureServiceConnectionId?: string;
126
+ /**
127
+ * The bearer token for the request to the OIDC provider. This can also be sourced from the `ARM_OIDC_REQUEST_TOKEN` or `ACTIONS_ID_TOKEN_REQUEST_TOKEN` Environment Variables.
128
+ *
129
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs#oidc_request_token AzapiProvider#oidc_request_token}
130
+ */
131
+ readonly oidcRequestToken?: string;
132
+ /**
133
+ * The URL for the OIDC provider from which to request an ID token. This can also be sourced from the `ARM_OIDC_REQUEST_URL` or `ACTIONS_ID_TOKEN_REQUEST_URL` Environment Variables.
134
+ *
135
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs#oidc_request_url AzapiProvider#oidc_request_url}
136
+ */
137
+ readonly oidcRequestUrl?: string;
138
+ /**
139
+ * The ID token when authenticating using OpenID Connect (OIDC). This can also be sourced from the `ARM_OIDC_TOKEN` environment Variable.
140
+ *
141
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs#oidc_token AzapiProvider#oidc_token}
142
+ */
143
+ readonly oidcToken?: string;
144
+ /**
145
+ * The path to a file containing an ID token when authenticating using OpenID Connect (OIDC). This can also be sourced from the `ARM_OIDC_TOKEN_FILE_PATH` environment Variable.
146
+ *
147
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs#oidc_token_file_path AzapiProvider#oidc_token_file_path}
148
+ */
149
+ readonly oidcTokenFilePath?: string;
150
+ /**
151
+ * A GUID/UUID that is [registered](https://docs.microsoft.com/azure/marketplace/azure-partner-customer-usage-attribution#register-guids-and-offers) with Microsoft to facilitate partner resource usage attribution. This can also be sourced from the `ARM_PARTNER_ID` Environment Variable.
152
+ *
153
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs#partner_id AzapiProvider#partner_id}
154
+ */
155
+ readonly partnerId?: string;
156
+ /**
157
+ * Should the Provider skip registering the Resource Providers it supports? This can also be sourced from the `ARM_SKIP_PROVIDER_REGISTRATION` Environment Variable. Defaults to `false`.
158
+ *
159
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs#skip_provider_registration AzapiProvider#skip_provider_registration}
160
+ */
161
+ readonly skipProviderRegistration?: boolean | cdktf.IResolvable;
162
+ /**
163
+ * The Subscription ID which should be used. This can also be sourced from the `ARM_SUBSCRIPTION_ID` Environment Variable.
164
+ *
165
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs#subscription_id AzapiProvider#subscription_id}
166
+ */
167
+ readonly subscriptionId?: string;
168
+ /**
169
+ * The Tenant ID should be used. This can also be sourced from the `ARM_TENANT_ID` Environment Variable.
170
+ *
171
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs#tenant_id AzapiProvider#tenant_id}
172
+ */
173
+ readonly tenantId?: string;
174
+ /**
175
+ * Should AKS Workload Identity be used for Authentication? This can also be sourced from the `ARM_USE_AKS_WORKLOAD_IDENTITY` Environment Variable. Defaults to `false`. When set, `client_id`, `tenant_id` and `oidc_token_file_path` will be detected from the environment and do not need to be specified.
176
+ *
177
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs#use_aks_workload_identity AzapiProvider#use_aks_workload_identity}
178
+ */
179
+ readonly useAksWorkloadIdentity?: boolean | cdktf.IResolvable;
180
+ /**
181
+ * Should Azure CLI be used for authentication? This can also be sourced from the `ARM_USE_CLI` environment variable. Defaults to `true`.
182
+ *
183
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs#use_cli AzapiProvider#use_cli}
184
+ */
185
+ readonly useCli?: boolean | cdktf.IResolvable;
186
+ /**
187
+ * Should Managed Identity be used for Authentication? This can also be sourced from the `ARM_USE_MSI` Environment Variable. Defaults to `false`.
188
+ *
189
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs#use_msi AzapiProvider#use_msi}
190
+ */
191
+ readonly useMsi?: boolean | cdktf.IResolvable;
192
+ /**
193
+ * Should OIDC be used for Authentication? This can also be sourced from the `ARM_USE_OIDC` Environment Variable. Defaults to `false`.
194
+ *
195
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs#use_oidc AzapiProvider#use_oidc}
196
+ */
197
+ readonly useOidc?: boolean | cdktf.IResolvable;
198
+ /**
199
+ * Alias name
200
+ *
201
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs#alias AzapiProvider#alias}
202
+ */
203
+ readonly alias?: string;
204
+ }
205
+ export interface AzapiProviderEndpoint {
206
+ /**
207
+ * The Azure Resource Manager endpoint to use. This can also be sourced from the `ARM_RESOURCE_MANAGER_ENDPOINT` Environment Variable. Defaults to `https://management.azure.com/` for public cloud.
208
+ *
209
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs#active_directory_authority_host AzapiProvider#active_directory_authority_host}
210
+ */
211
+ readonly activeDirectoryAuthorityHost?: string;
212
+ /**
213
+ * The Azure Active Directory login endpoint to use. This can also be sourced from the `ARM_ACTIVE_DIRECTORY_AUTHORITY_HOST` Environment Variable. Defaults to `https://login.microsoftonline.com/` for public cloud.
214
+ *
215
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs#resource_manager_audience AzapiProvider#resource_manager_audience}
216
+ */
217
+ readonly resourceManagerAudience?: string;
218
+ /**
219
+ * The resource ID to obtain AD tokens for. This can also be sourced from the `ARM_RESOURCE_MANAGER_AUDIENCE` Environment Variable. Defaults to `https://management.core.windows.net/` for public cloud.
220
+ *
221
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs#resource_manager_endpoint AzapiProvider#resource_manager_endpoint}
222
+ */
223
+ readonly resourceManagerEndpoint?: string;
224
+ }
225
+ export declare function azapiProviderEndpointToTerraform(struct?: AzapiProviderEndpoint | cdktf.IResolvable): any;
226
+ export declare function azapiProviderEndpointToHclTerraform(struct?: AzapiProviderEndpoint | cdktf.IResolvable): any;
227
+ /**
228
+ * Represents a {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs azapi}
229
+ */
230
+ export declare class AzapiProvider extends cdktf.TerraformProvider {
231
+ static readonly tfResourceType = "azapi";
232
+ /**
233
+ * Generates CDKTF code for importing a AzapiProvider resource upon running "cdktf plan <stack-name>"
234
+ * @param scope The scope in which to define this construct
235
+ * @param importToId The construct id used in the generated config for the AzapiProvider to import
236
+ * @param importFromId The id of the existing AzapiProvider that should be imported. Refer to the {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs#import import section} in the documentation of this resource for the id to use
237
+ * @param provider? Optional instance of the provider where the AzapiProvider to import is found
238
+ */
239
+ static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): cdktf.ImportableResource;
240
+ /**
241
+ * Create a new {@link https://registry.terraform.io/providers/azure/azapi/2.3.0/docs azapi} Resource
242
+ *
243
+ * @param scope The scope in which to define this construct
244
+ * @param id The scoped construct ID. Must be unique amongst siblings in the same scope
245
+ * @param options AzapiProviderConfig = {}
246
+ */
247
+ constructor(scope: Construct, id: string, config?: AzapiProviderConfig);
248
+ private _auxiliaryTenantIds?;
249
+ get auxiliaryTenantIds(): string[] | undefined;
250
+ set auxiliaryTenantIds(value: string[] | undefined);
251
+ resetAuxiliaryTenantIds(): void;
252
+ get auxiliaryTenantIdsInput(): string[] | undefined;
253
+ private _clientCertificate?;
254
+ get clientCertificate(): string | undefined;
255
+ set clientCertificate(value: string | undefined);
256
+ resetClientCertificate(): void;
257
+ get clientCertificateInput(): string | undefined;
258
+ private _clientCertificatePassword?;
259
+ get clientCertificatePassword(): string | undefined;
260
+ set clientCertificatePassword(value: string | undefined);
261
+ resetClientCertificatePassword(): void;
262
+ get clientCertificatePasswordInput(): string | undefined;
263
+ private _clientCertificatePath?;
264
+ get clientCertificatePath(): string | undefined;
265
+ set clientCertificatePath(value: string | undefined);
266
+ resetClientCertificatePath(): void;
267
+ get clientCertificatePathInput(): string | undefined;
268
+ private _clientId?;
269
+ get clientId(): string | undefined;
270
+ set clientId(value: string | undefined);
271
+ resetClientId(): void;
272
+ get clientIdInput(): string | undefined;
273
+ private _clientIdFilePath?;
274
+ get clientIdFilePath(): string | undefined;
275
+ set clientIdFilePath(value: string | undefined);
276
+ resetClientIdFilePath(): void;
277
+ get clientIdFilePathInput(): string | undefined;
278
+ private _clientSecret?;
279
+ get clientSecret(): string | undefined;
280
+ set clientSecret(value: string | undefined);
281
+ resetClientSecret(): void;
282
+ get clientSecretInput(): string | undefined;
283
+ private _clientSecretFilePath?;
284
+ get clientSecretFilePath(): string | undefined;
285
+ set clientSecretFilePath(value: string | undefined);
286
+ resetClientSecretFilePath(): void;
287
+ get clientSecretFilePathInput(): string | undefined;
288
+ private _customCorrelationRequestId?;
289
+ get customCorrelationRequestId(): string | undefined;
290
+ set customCorrelationRequestId(value: string | undefined);
291
+ resetCustomCorrelationRequestId(): void;
292
+ get customCorrelationRequestIdInput(): string | undefined;
293
+ private _defaultLocation?;
294
+ get defaultLocation(): string | undefined;
295
+ set defaultLocation(value: string | undefined);
296
+ resetDefaultLocation(): void;
297
+ get defaultLocationInput(): string | undefined;
298
+ private _defaultName?;
299
+ get defaultName(): string | undefined;
300
+ set defaultName(value: string | undefined);
301
+ resetDefaultName(): void;
302
+ get defaultNameInput(): string | undefined;
303
+ private _defaultTags?;
304
+ get defaultTags(): {
305
+ [key: string]: string;
306
+ } | undefined;
307
+ set defaultTags(value: {
308
+ [key: string]: string;
309
+ } | undefined);
310
+ resetDefaultTags(): void;
311
+ get defaultTagsInput(): {
312
+ [key: string]: string;
313
+ } | undefined;
314
+ private _disableCorrelationRequestId?;
315
+ get disableCorrelationRequestId(): boolean | cdktf.IResolvable | undefined;
316
+ set disableCorrelationRequestId(value: boolean | cdktf.IResolvable | undefined);
317
+ resetDisableCorrelationRequestId(): void;
318
+ get disableCorrelationRequestIdInput(): boolean | cdktf.IResolvable | undefined;
319
+ private _disableDefaultOutput?;
320
+ get disableDefaultOutput(): boolean | cdktf.IResolvable | undefined;
321
+ set disableDefaultOutput(value: boolean | cdktf.IResolvable | undefined);
322
+ resetDisableDefaultOutput(): void;
323
+ get disableDefaultOutputInput(): boolean | cdktf.IResolvable | undefined;
324
+ private _disableTerraformPartnerId?;
325
+ get disableTerraformPartnerId(): boolean | cdktf.IResolvable | undefined;
326
+ set disableTerraformPartnerId(value: boolean | cdktf.IResolvable | undefined);
327
+ resetDisableTerraformPartnerId(): void;
328
+ get disableTerraformPartnerIdInput(): boolean | cdktf.IResolvable | undefined;
329
+ private _enablePreflight?;
330
+ get enablePreflight(): boolean | cdktf.IResolvable | undefined;
331
+ set enablePreflight(value: boolean | cdktf.IResolvable | undefined);
332
+ resetEnablePreflight(): void;
333
+ get enablePreflightInput(): boolean | cdktf.IResolvable | undefined;
334
+ private _endpoint?;
335
+ get endpoint(): AzapiProviderEndpoint[] | cdktf.IResolvable | undefined;
336
+ set endpoint(value: AzapiProviderEndpoint[] | cdktf.IResolvable | undefined);
337
+ resetEndpoint(): void;
338
+ get endpointInput(): cdktf.IResolvable | AzapiProviderEndpoint[] | undefined;
339
+ private _environment?;
340
+ get environment(): string | undefined;
341
+ set environment(value: string | undefined);
342
+ resetEnvironment(): void;
343
+ get environmentInput(): string | undefined;
344
+ private _maximumBusyRetryAttempts?;
345
+ get maximumBusyRetryAttempts(): number | undefined;
346
+ set maximumBusyRetryAttempts(value: number | undefined);
347
+ resetMaximumBusyRetryAttempts(): void;
348
+ get maximumBusyRetryAttemptsInput(): number | undefined;
349
+ private _oidcAzureServiceConnectionId?;
350
+ get oidcAzureServiceConnectionId(): string | undefined;
351
+ set oidcAzureServiceConnectionId(value: string | undefined);
352
+ resetOidcAzureServiceConnectionId(): void;
353
+ get oidcAzureServiceConnectionIdInput(): string | undefined;
354
+ private _oidcRequestToken?;
355
+ get oidcRequestToken(): string | undefined;
356
+ set oidcRequestToken(value: string | undefined);
357
+ resetOidcRequestToken(): void;
358
+ get oidcRequestTokenInput(): string | undefined;
359
+ private _oidcRequestUrl?;
360
+ get oidcRequestUrl(): string | undefined;
361
+ set oidcRequestUrl(value: string | undefined);
362
+ resetOidcRequestUrl(): void;
363
+ get oidcRequestUrlInput(): string | undefined;
364
+ private _oidcToken?;
365
+ get oidcToken(): string | undefined;
366
+ set oidcToken(value: string | undefined);
367
+ resetOidcToken(): void;
368
+ get oidcTokenInput(): string | undefined;
369
+ private _oidcTokenFilePath?;
370
+ get oidcTokenFilePath(): string | undefined;
371
+ set oidcTokenFilePath(value: string | undefined);
372
+ resetOidcTokenFilePath(): void;
373
+ get oidcTokenFilePathInput(): string | undefined;
374
+ private _partnerId?;
375
+ get partnerId(): string | undefined;
376
+ set partnerId(value: string | undefined);
377
+ resetPartnerId(): void;
378
+ get partnerIdInput(): string | undefined;
379
+ private _skipProviderRegistration?;
380
+ get skipProviderRegistration(): boolean | cdktf.IResolvable | undefined;
381
+ set skipProviderRegistration(value: boolean | cdktf.IResolvable | undefined);
382
+ resetSkipProviderRegistration(): void;
383
+ get skipProviderRegistrationInput(): boolean | cdktf.IResolvable | undefined;
384
+ private _subscriptionId?;
385
+ get subscriptionId(): string | undefined;
386
+ set subscriptionId(value: string | undefined);
387
+ resetSubscriptionId(): void;
388
+ get subscriptionIdInput(): string | undefined;
389
+ private _tenantId?;
390
+ get tenantId(): string | undefined;
391
+ set tenantId(value: string | undefined);
392
+ resetTenantId(): void;
393
+ get tenantIdInput(): string | undefined;
394
+ private _useAksWorkloadIdentity?;
395
+ get useAksWorkloadIdentity(): boolean | cdktf.IResolvable | undefined;
396
+ set useAksWorkloadIdentity(value: boolean | cdktf.IResolvable | undefined);
397
+ resetUseAksWorkloadIdentity(): void;
398
+ get useAksWorkloadIdentityInput(): boolean | cdktf.IResolvable | undefined;
399
+ private _useCli?;
400
+ get useCli(): boolean | cdktf.IResolvable | undefined;
401
+ set useCli(value: boolean | cdktf.IResolvable | undefined);
402
+ resetUseCli(): void;
403
+ get useCliInput(): boolean | cdktf.IResolvable | undefined;
404
+ private _useMsi?;
405
+ get useMsi(): boolean | cdktf.IResolvable | undefined;
406
+ set useMsi(value: boolean | cdktf.IResolvable | undefined);
407
+ resetUseMsi(): void;
408
+ get useMsiInput(): boolean | cdktf.IResolvable | undefined;
409
+ private _useOidc?;
410
+ get useOidc(): boolean | cdktf.IResolvable | undefined;
411
+ set useOidc(value: boolean | cdktf.IResolvable | undefined);
412
+ resetUseOidc(): void;
413
+ get useOidcInput(): boolean | cdktf.IResolvable | undefined;
414
+ private _alias?;
415
+ get alias(): string | undefined;
416
+ set alias(value: string | undefined);
417
+ resetAlias(): void;
418
+ get aliasInput(): string | undefined;
419
+ protected synthesizeAttributes(): {
420
+ [name: string]: any;
421
+ };
422
+ protected synthesizeHclAttributes(): {
423
+ [name: string]: any;
424
+ };
425
+ }