UNPKG

@cdktf/provider-azurerm

Version:

Prebuilt azurerm Provider for Terraform CDK (cdktf)

161 lines (160 loc) 8.49 kB
/** * Copyright (c) HashiCorp, Inc. * SPDX-License-Identifier: MPL-2.0 */ import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface LogAnalyticsDataExportRuleConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/log_analytics_data_export_rule#destination_resource_id LogAnalyticsDataExportRule#destination_resource_id} */ readonly destinationResourceId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/log_analytics_data_export_rule#enabled LogAnalyticsDataExportRule#enabled} */ readonly enabled?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/log_analytics_data_export_rule#id LogAnalyticsDataExportRule#id} * * Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. * 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. */ readonly id?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/log_analytics_data_export_rule#name LogAnalyticsDataExportRule#name} */ readonly name: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/log_analytics_data_export_rule#resource_group_name LogAnalyticsDataExportRule#resource_group_name} */ readonly resourceGroupName: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/log_analytics_data_export_rule#table_names LogAnalyticsDataExportRule#table_names} */ readonly tableNames: string[]; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/log_analytics_data_export_rule#workspace_resource_id LogAnalyticsDataExportRule#workspace_resource_id} */ readonly workspaceResourceId: string; /** * timeouts block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/log_analytics_data_export_rule#timeouts LogAnalyticsDataExportRule#timeouts} */ readonly timeouts?: LogAnalyticsDataExportRuleTimeouts; } export interface LogAnalyticsDataExportRuleTimeouts { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/log_analytics_data_export_rule#create LogAnalyticsDataExportRule#create} */ readonly create?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/log_analytics_data_export_rule#delete LogAnalyticsDataExportRule#delete} */ readonly delete?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/log_analytics_data_export_rule#read LogAnalyticsDataExportRule#read} */ readonly read?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/log_analytics_data_export_rule#update LogAnalyticsDataExportRule#update} */ readonly update?: string; } export declare function logAnalyticsDataExportRuleTimeoutsToTerraform(struct?: LogAnalyticsDataExportRuleTimeouts | cdktf.IResolvable): any; export declare function logAnalyticsDataExportRuleTimeoutsToHclTerraform(struct?: LogAnalyticsDataExportRuleTimeouts | cdktf.IResolvable): any; export declare class LogAnalyticsDataExportRuleTimeoutsOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string); get internalValue(): LogAnalyticsDataExportRuleTimeouts | cdktf.IResolvable | undefined; set internalValue(value: LogAnalyticsDataExportRuleTimeouts | cdktf.IResolvable | undefined); private _create?; get create(): string; set create(value: string); resetCreate(): void; get createInput(): string | undefined; private _delete?; get delete(): string; set delete(value: string); resetDelete(): void; get deleteInput(): string | undefined; private _read?; get read(): string; set read(value: string); resetRead(): void; get readInput(): string | undefined; private _update?; get update(): string; set update(value: string); resetUpdate(): void; get updateInput(): string | undefined; } /** * Represents a {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/log_analytics_data_export_rule azurerm_log_analytics_data_export_rule} */ export declare class LogAnalyticsDataExportRule extends cdktf.TerraformResource { static readonly tfResourceType = "azurerm_log_analytics_data_export_rule"; /** * Generates CDKTF code for importing a LogAnalyticsDataExportRule resource upon running "cdktf plan <stack-name>" * @param scope The scope in which to define this construct * @param importToId The construct id used in the generated config for the LogAnalyticsDataExportRule to import * @param importFromId The id of the existing LogAnalyticsDataExportRule that should be imported. Refer to the {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/log_analytics_data_export_rule#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the LogAnalyticsDataExportRule to import is found */ static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): cdktf.ImportableResource; /** * Create a new {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/log_analytics_data_export_rule azurerm_log_analytics_data_export_rule} Resource * * @param scope The scope in which to define this construct * @param id The scoped construct ID. Must be unique amongst siblings in the same scope * @param options LogAnalyticsDataExportRuleConfig */ constructor(scope: Construct, id: string, config: LogAnalyticsDataExportRuleConfig); private _destinationResourceId?; get destinationResourceId(): string; set destinationResourceId(value: string); get destinationResourceIdInput(): string | undefined; private _enabled?; get enabled(): boolean | cdktf.IResolvable; set enabled(value: boolean | cdktf.IResolvable); resetEnabled(): void; get enabledInput(): boolean | cdktf.IResolvable | undefined; get exportRuleId(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string | undefined; private _name?; get name(): string; set name(value: string); get nameInput(): string | undefined; private _resourceGroupName?; get resourceGroupName(): string; set resourceGroupName(value: string); get resourceGroupNameInput(): string | undefined; private _tableNames?; get tableNames(): string[]; set tableNames(value: string[]); get tableNamesInput(): string[] | undefined; private _workspaceResourceId?; get workspaceResourceId(): string; set workspaceResourceId(value: string); get workspaceResourceIdInput(): string | undefined; private _timeouts; get timeouts(): LogAnalyticsDataExportRuleTimeoutsOutputReference; putTimeouts(value: LogAnalyticsDataExportRuleTimeouts): void; resetTimeouts(): void; get timeoutsInput(): cdktf.IResolvable | LogAnalyticsDataExportRuleTimeouts | undefined; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }