rhizo-co-terraform-provider-oci
Version:
Prebuilt oci Provider for Terraform CDK (cdktf)
118 lines (117 loc) • 7.04 kB
TypeScript
import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DataOciMonitoringAlarmHistoryCollectionConfig extends cdktf.TerraformMetaArguments {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/monitoring_alarm_history_collection#alarm_historytype DataOciMonitoringAlarmHistoryCollection#alarm_historytype}
*/
readonly alarmHistorytype?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/monitoring_alarm_history_collection#alarm_id DataOciMonitoringAlarmHistoryCollection#alarm_id}
*/
readonly alarmId: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/monitoring_alarm_history_collection#id DataOciMonitoringAlarmHistoryCollection#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/oracle/oci/6.18.0/docs/data-sources/monitoring_alarm_history_collection#timestamp_greater_than_or_equal_to DataOciMonitoringAlarmHistoryCollection#timestamp_greater_than_or_equal_to}
*/
readonly timestampGreaterThanOrEqualTo?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/monitoring_alarm_history_collection#timestamp_less_than DataOciMonitoringAlarmHistoryCollection#timestamp_less_than}
*/
readonly timestampLessThan?: string;
}
export interface DataOciMonitoringAlarmHistoryCollectionEntries {
}
export declare function dataOciMonitoringAlarmHistoryCollectionEntriesToTerraform(struct?: DataOciMonitoringAlarmHistoryCollectionEntries): any;
export declare function dataOciMonitoringAlarmHistoryCollectionEntriesToHclTerraform(struct?: DataOciMonitoringAlarmHistoryCollectionEntries): any;
export declare class DataOciMonitoringAlarmHistoryCollectionEntriesOutputReference extends cdktf.ComplexObject {
private isEmptyObject;
/**
* @param terraformResource The parent resource
* @param terraformAttribute The attribute on the parent resource this class is referencing
* @param complexObjectIndex the index of this item in the list
* @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
*/
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
get internalValue(): DataOciMonitoringAlarmHistoryCollectionEntries | undefined;
set internalValue(value: DataOciMonitoringAlarmHistoryCollectionEntries | undefined);
get alarmSummary(): string;
get summary(): string;
get timestamp(): string;
get timestampTriggered(): string;
}
export declare class DataOciMonitoringAlarmHistoryCollectionEntriesList extends cdktf.ComplexList {
protected terraformResource: cdktf.IInterpolatingParent;
protected terraformAttribute: string;
protected wrapsSet: boolean;
/**
* @param terraformResource The parent resource
* @param terraformAttribute The attribute on the parent resource this class is referencing
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
*/
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
/**
* @param index the index of the item to return
*/
get(index: number): DataOciMonitoringAlarmHistoryCollectionEntriesOutputReference;
}
/**
* Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/monitoring_alarm_history_collection oci_monitoring_alarm_history_collection}
*/
export declare class DataOciMonitoringAlarmHistoryCollection extends cdktf.TerraformDataSource {
static readonly tfResourceType = "oci_monitoring_alarm_history_collection";
/**
* Generates CDKTF code for importing a DataOciMonitoringAlarmHistoryCollection 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 DataOciMonitoringAlarmHistoryCollection to import
* @param importFromId The id of the existing DataOciMonitoringAlarmHistoryCollection that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/monitoring_alarm_history_collection#import import section} in the documentation of this resource for the id to use
* @param provider? Optional instance of the provider where the DataOciMonitoringAlarmHistoryCollection 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/monitoring_alarm_history_collection oci_monitoring_alarm_history_collection} 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 DataOciMonitoringAlarmHistoryCollectionConfig
*/
constructor(scope: Construct, id: string, config: DataOciMonitoringAlarmHistoryCollectionConfig);
private _alarmHistorytype?;
get alarmHistorytype(): string;
set alarmHistorytype(value: string);
resetAlarmHistorytype(): void;
get alarmHistorytypeInput(): string | undefined;
private _alarmId?;
get alarmId(): string;
set alarmId(value: string);
get alarmIdInput(): string | undefined;
private _entries;
get entries(): DataOciMonitoringAlarmHistoryCollectionEntriesList;
private _id?;
get id(): string;
set id(value: string);
resetId(): void;
get idInput(): string | undefined;
get isEnabled(): cdktf.IResolvable;
private _timestampGreaterThanOrEqualTo?;
get timestampGreaterThanOrEqualTo(): string;
set timestampGreaterThanOrEqualTo(value: string);
resetTimestampGreaterThanOrEqualTo(): void;
get timestampGreaterThanOrEqualToInput(): string | undefined;
private _timestampLessThan?;
get timestampLessThan(): string;
set timestampLessThan(value: string);
resetTimestampLessThan(): void;
get timestampLessThanInput(): string | undefined;
protected synthesizeAttributes(): {
[name: string]: any;
};
protected synthesizeHclAttributes(): {
[name: string]: any;
};
}