rhizo-co-terraform-provider-oci
Version:
Prebuilt oci Provider for Terraform CDK (cdktf)
56 lines (55 loc) • 3.02 kB
TypeScript
import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DataOciDataSafeAlertPolicyRuleConfig extends cdktf.TerraformMetaArguments {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/data_safe_alert_policy_rule#alert_policy_id DataOciDataSafeAlertPolicyRule#alert_policy_id}
*/
readonly alertPolicyId: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/data_safe_alert_policy_rule#rule_key DataOciDataSafeAlertPolicyRule#rule_key}
*/
readonly ruleKey: string;
}
/**
* Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/data_safe_alert_policy_rule oci_data_safe_alert_policy_rule}
*/
export declare class DataOciDataSafeAlertPolicyRule extends cdktf.TerraformDataSource {
static readonly tfResourceType = "oci_data_safe_alert_policy_rule";
/**
* Generates CDKTF code for importing a DataOciDataSafeAlertPolicyRule 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 DataOciDataSafeAlertPolicyRule to import
* @param importFromId The id of the existing DataOciDataSafeAlertPolicyRule that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/data_safe_alert_policy_rule#import import section} in the documentation of this resource for the id to use
* @param provider? Optional instance of the provider where the DataOciDataSafeAlertPolicyRule 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/oracle/oci/6.18.0/docs/data-sources/data_safe_alert_policy_rule oci_data_safe_alert_policy_rule} Data Source
*
* @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 DataOciDataSafeAlertPolicyRuleConfig
*/
constructor(scope: Construct, id: string, config: DataOciDataSafeAlertPolicyRuleConfig);
private _alertPolicyId?;
get alertPolicyId(): string;
set alertPolicyId(value: string);
get alertPolicyIdInput(): string | undefined;
get description(): string;
get displayName(): string;
get expression(): string;
get id(): string;
get key(): string;
private _ruleKey?;
get ruleKey(): string;
set ruleKey(value: string);
get ruleKeyInput(): string | undefined;
get state(): string;
get timeCreated(): string;
protected synthesizeAttributes(): {
[name: string]: any;
};
protected synthesizeHclAttributes(): {
[name: string]: any;
};
}